Downloaders have clearer output to note what they're doing

This commit is contained in:
Mitchell Hashimoto 2010-12-31 01:44:30 -06:00
parent 6b74ad103d
commit 4cbce66ab1
5 changed files with 6 additions and 4 deletions

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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