summaryrefslogtreecommitdiffstats
path: root/urpm/download.pm
Commit message (Collapse)AuthorAgeFilesLines
* adjust tabbing to pixel's tastePer Øyvind Karlsen2008-07-101-39/+39
|
* clean up with help from pixel's suggestionsPer Øyvind Karlsen2008-07-091-28/+25
|
* add local metalink generationPer Øyvind Karlsen2008-07-091-4/+82
|
* - all toolsPascal Rigaux2008-07-091-3/+3
| | | | | o fix broken ssh:// (regression introduced in 6.0)
* urpmi: set connection timeout for rsync as wellAnssi Hannula2008-06-151-0/+2
|
* - urpmi.update, urpmi.addmedia:Pascal Rigaux2008-03-271-3/+8
| | | | | | o do not restrict read on /etc/urpmi/proxy.cfg if it doesn't contain passwords (#39434)
* simple cleanupPascal Rigaux2008-03-271-4/+4
| | | | | (would need some more)
* display an error message when failing to read proxy settingsPascal Rigaux2008-03-271-1/+9
|
* o handle displaying utf8 download progression in non-utf8 terminalPascal Rigaux2008-03-201-1/+8
| | | | | | (ie clean the full line when we can't be sure of the number of characters that will be displayed)
* fix download progression using wget:Pascal Rigaux2008-03-031-7/+9
| | | | | | | | | | | - the first line displays the date, not simply the time - the "==> RETR" is only for ftp, also parse "200 OK" - detecting size using /^Length/ is much simpler when wget output is not translated, so use LC_ALL=C - "ETA" is now "eta" in my tests - "eta" is not displayed at the beginning, do call propagate_sync_callback with precent and speed
* {removable} is no morePascal Rigaux2008-02-271-2/+2
|
* - urpmi:Pascal Rigaux2008-02-261-0/+1
| | | | | o fix using proxy with curl (#38143)
* download mirrorlist silentlyPascal Rigaux2008-02-251-1/+1
|
* create hide_password() (to be used in urpm::main_loop to remove duplication)Pascal Rigaux2008-02-241-2/+7
|
* get_content() as a wrapper around sync() to get file contentPascal Rigaux2008-02-221-0/+15
|
* do not use an undefined valuePascal Rigaux2008-02-211-7/+7
|
* ensure that aria2 doesn't connect multiple times to same host with different ↵Per Øyvind Karlsen2008-02-131-0/+1
| | | | protocols
* add support for aria2 (and thus support for metalink handling as well:)Per Øyvind Karlsen2007-12-111-4/+78
|
* - urpmi.addmedia:Pascal Rigaux2007-12-051-1/+1
| | | | | | o enhance parsing of urls with login:password for logins with "@" so that password doesn't end up in urpmi.cfg
* - urpmiPascal Rigaux2007-11-161-7/+7
| | | | | o fix --limit-rate (regression introduced in 4.9.12)
* - urpmi:Pascal Rigaux2007-11-141-1/+1
| | | | | | o with rsync, use --copy-links (to have the same behaviour as http/ftp, and so allow symlinks on the server)
* do not use netrc for protocol sshPascal Rigaux2007-09-101-1/+1
|
* more debug info (rsync cmd)Pascal Rigaux2007-09-101-2/+4
|
* - all toolsPascal Rigaux2007-06-181-1/+1
| | | | | | | | o 4.9.26 is broken when downloading with wget since it creates hdlist.cz.1 files. fixing using --force-clobber option (! need a patched wget !) (need wget 1.10.2-6mdv2008.0)
* help debugging curl/wget commandsPascal Rigaux2007-06-181-0/+3
|
* - all toolsPascal Rigaux2007-06-181-2/+6
| | | | | | o hide rsync errors by default to hide false positives, but allow getting them with --debug
* wait for total to be given before displaying progress (#31302)Pascal Rigaux2007-06-111-1/+2
|
* - all toolsPascal Rigaux2007-06-111-1/+0
| | | | | | | o don't use time-stamping when downloading with wget (useless and slow since it forces to download the whole directory listing) (as suggested by Andrey Borzenkov on cooker)
* - urpmiPascal Rigaux2007-05-181-1/+8
| | | | | | o fix "Argument list too long" when calling curl/wget/proz (things should work even in case of one big transaction) (#30848)
* nicer codePascal Rigaux2007-05-161-2/+3
|
* re-sync after the big svn lossPascal Rigaux2007-04-241-2/+18
|
* - add {debug} level messagesPascal Rigaux2006-11-281-1/+7
| | | | | | - add some debug message before downloading - always display the retrieved url (using {log})
* factorize code with new function _error(). make separate message for either ↵Pascal Rigaux2006-11-281-6/+13
| | | | bad exit status or signal caught
* move many functions from urpm.pm to urpm/media.pmPascal Rigaux2006-11-211-5/+100
|
* - correctly cook args to sync_file()Pascal Rigaux2006-11-131-3/+1
| | | | | - util::cfg is not needed in urpm::download
* sync_prozilla need exporting (used in urpm.pm)Pascal Rigaux2006-11-101-1/+1
|
* use standard ExporterPascal Rigaux2006-11-091-12/+8
|
* move basename() to urpm::utilPascal Rigaux2006-11-091-2/+0
|
* perl_checker compliance & simplificationsPascal Rigaux2006-11-091-8/+6
|
* factorize introducing proc_mounts() and cat_()Pascal Rigaux2006-11-091-4/+3
|
* perl_checker compliancePascal Rigaux2006-11-031-3/+3
|
* Add Prozilla supportRafael Garcia-Suarez2006-09-211-0/+24
|
* Patch by Nicolas Melay to include -q to the command-line options of curl, soRafael Garcia-Suarez2006-09-181-0/+2
| | | | | the ~/.curlrc file isn't read.
* Localize $_ before magical while(<$file>) loopsRafael Garcia-Suarez2006-08-111-0/+4
|
* For curl downloads, use the --anyauth options (solves an issueRafael Garcia-Suarez2006-08-021-0/+2
| | | | | when a site rejects basic auth)
* Use revision number as version numbers for internal modules.Rafael Garcia-Suarez2006-06-071-1/+3
| | | | | For gurpmi.pm, use the same version number as urpm.
* Patch by Vincent Panel from bug #22000: use global proxy settings whenRafael Garcia-Suarez2006-05-291-0/+4
| | | | | adding a media; load it if necessary to avoid overwriting it.
* Untaint current dir when temporarily chdir'ing to cacheRafael Garcia-Suarez2006-04-201-3/+3
|
* Patch by Michael Scherer to fix authentication with ssh download method.Rafael Garcia-Suarez2006-04-021-9/+11
| | | | | (bug #21800)
* If rsync-options are configured and contain what looks like a remote shellRafael Garcia-Suarez2006-03-201-15/+17
| | | | | setting, ignore ssh options