summaryrefslogtreecommitdiffstats
path: root/pym/portage/util/_urlopen.py
Commit message (Collapse)AuthorAgeFilesLines
* _urlopen: fix python2 http password breakageZac Medico2012-08-011-29/+11
| | | | | | | | This broke in commit e06cb6d66db37ac7ab77acf65038b1f770c13c96 since CompressedResponseProcessor did not include password auth support. BUG: The if_modified_since parameter appears to be ignored when using http password authentication.
* Add support for HTTP compression (bzip2, gzip and deflate).W-Mark Kubacki2012-08-011-1/+31
|
* Use If-Modified-Since HTTP-header and avoid downloading a remote index if ↵W-Mark Kubacki2012-08-011-4/+41
| | | | the local copy is recent enough.
* binhost: http auth for python3 (bug #413983)Zac Medico2012-05-131-0/+42
This uses the code from commit 58a8cd1bb943522bc53d02c008ee8eff798bfaaa as a fallback for python3 when the default urlopen function fails. This has been tested and is known to work with thttpd password authentication (it works unencrypted and also when encrypted with stunnel).