Downloaders have clearer output to note what they're doing
This commit is contained in:
parent
6b74ad103d
commit
4cbce66ab1
|
@ -2,6 +2,7 @@
|
|||
|
||||
- Use numeric uid/gid in mounting shared folders to increase portability. [GH-252]
|
||||
- HTTP downloading follows redirects. [GH-163]
|
||||
- Downloaders have clearer output to note what they're doing.
|
||||
|
||||
## 0.7.0.beta (December 24, 2010)
|
||||
|
||||
|
|
|
@ -64,7 +64,6 @@ module Vagrant
|
|||
end
|
||||
|
||||
def download_to(f)
|
||||
@env.ui.info I18n.t("vagrant.actions.box.download.copying")
|
||||
@downloader.download!(@env["box"].uri, f)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -14,6 +14,7 @@ module Vagrant
|
|||
end
|
||||
|
||||
def download!(source_url, destination_file)
|
||||
env.ui.info I18n.t("vagrant.downloaders.file.download")
|
||||
FileUtils.cp(source_url, destination_file.path)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -25,11 +25,12 @@ module Vagrant
|
|||
end
|
||||
|
||||
http.start do |h|
|
||||
env.ui.info I18n.t("vagrant.downloaders.http.download", :url => source_url)
|
||||
|
||||
h.request_get(uri.request_uri) do |response|
|
||||
if response.is_a?(Net::HTTPRedirection)
|
||||
# Follow the HTTP redirect.
|
||||
# TODO: Error on some redirect limit
|
||||
env.ui.info I18n.t("vagrant.downloaders.http.follow_redirect", :url => response["Location"])
|
||||
download!(response["Location"], destination_file)
|
||||
return
|
||||
end
|
||||
|
|
|
@ -370,7 +370,6 @@ en:
|
|||
download:
|
||||
with: "Downloading with %{class}..."
|
||||
cleaning: "Cleaning up downloaded box..."
|
||||
copying: "Copying box to temporary location..."
|
||||
unknown_type: "Unknown or unsupported URI type given for box download."
|
||||
unpackage:
|
||||
extracting: "Extracting box..."
|
||||
|
@ -401,9 +400,10 @@ en:
|
|||
|
||||
downloaders:
|
||||
file:
|
||||
download: "Copying box to temporary location..."
|
||||
file_missing: "The specified path to a file doesn't exist."
|
||||
http:
|
||||
follow_redirect: "Download following redirect: %{url}"
|
||||
download: "Downloading box: %{url}"
|
||||
socket_error: |-
|
||||
An error occurred while trying to download the specified box. This most
|
||||
often happens if there is no internet connection or the address is
|
||||
|
|
Loading…
Reference in New Issue