summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 0.9.1 Release changes.v0.9.10.9.1Joe Gregorio2015-04-115-6/+20
|
* Update CHANGELOG for 0.9.1 releaseJoe Gregorio2015-04-091-0/+5
|
* Merge pull request #296 from cganterh/masterJoe Gregorio2015-03-032-1/+12
|\ | | | | There was a problem with headers when a binary string is passed (like b'Authorization').
| * Added unit test for _convert_byte_str in python3/httplib2test.py.Cristobal2015-03-021-0/+6
| |
| * Update __init__.pyi026e2014-12-171-1/+6
|/ | | | | There is a problem with headers when a binary string is passed (like b'Authorization') I've added a function to decode such strings. It is not an elegant solution, but it works for me
* Merge pull request #276 from micolous/masterJoe Gregorio2014-07-142-15/+46
|\ | | | | Default to doing DNS resolution through a proxy server if present.
| * Default to doing DNS resolution through a proxy server if present.Michael Farrell2014-07-142-15/+46
|/ | | | | | | | | | | | | | - Resolve an issue where proxy information by default was not resolving DNS through a proxy server (unlike the `socks` library), so users getting proxy information from an environment variable (HTTP_PROXY/HTTPS_PROXY) with no external DNS could not connect to hosts with DNS names. - Resolve a potential issue where if the proxy server was a different address family to the destination host and there was functional DNS, may not work. For example, using a IPv4-only proxy server to connect to an IPv6-only host via an IPv4-only internal network. - Improved documentation of the ProxyInfo class.
* Create LICENSEJoe Gregorio2014-05-031-0/+23
|
* Merge pull request #267 from jone/masterv0.9Joe Gregorio2014-04-151-2/+1
|\ | | | | setup.py: remove download URL, update project URL
| * setup.py: remove download URL, update project URLJonas Baumann2014-04-151-2/+1
|/ | | | The project was moved from googlecode to github. Because of the move the downloads are now longer available, thus the download_url is invalid.
* Fix Makefile for rename of README to README.mdJoe Gregorio2014-04-141-1/+1
|
* Release 0.9. The heartbleed release.Joe Gregorio2014-04-143-3/+3
|
* Add an updated cacerts.txt file and fix some tests.0.9Joe Gregorio2014-03-065-955/+3845
| | | | Turns out nginx doesn't support etags on gzip'd content.
* Merge pull request #259 from snarfed/masterJoe Gregorio2014-02-141-1/+3
|\ | | | | Use socket.getdefaulttimeout() on App Engine as well as off, take 2: set the timeout for clients that passed deadline=None explicitly.
| * use socket.getdefaulttimeout() on App Engine as well as off, take 2Ryan Barrett2014-02-121-1/+3
| | | | | | | | the first attempt (3118243f371f56ba5b6cf9d7dfcea09c98daa573) wouldn't set the timeout for clients that passed deadline=None explicitly, which App Engine's httplib often does. this fixes that.
* | Merge pull request #258 from snarfed/masterJoe Gregorio2014-02-121-1/+1
|\ \ | |/ | | Use socket.getdefaulttimeout() on App Engine also.
| * use socket.getdefaulttimeout() on App Engine as well as offRyan Barrett2014-02-121-1/+1
|/
* Update README.mdJoe Gregorio2014-02-061-0/+4
|
* whitespace fixJoe Gregorio2014-02-061-1/+0
|
* Remove redundant READMEJoe Gregorio2014-02-061-122/+0
|
* Remove unused files.Joe Gregorio2014-02-062-2401/+0
|
* Update README.mdJoe Gregorio2014-02-061-4/+1
|
* Merge ../httplib2.currentJoe Gregorio2014-02-058-22/+170
|\ | | | | | | Merge to HEAD of the mercurial tree hopefully for the last time.
| * Pass method by name, not positionally.Joe Gregorio2013-03-262-4/+13
| | | | | | | | | | Fixes issue #252. Reviewed in https://codereview.appspot.com/7987046/.
| * Fix handling of BadStatusLine.Joe Gregorio2013-03-084-3/+120
| | | | | | | | | | Fixes issue #250. Review in https://codereview.appspot.com/7529045/.
| * Clean up tagsJoe Gregorio2013-03-060-0/+0
| |
| * Added tag 0.8 for changeset 427a4ff7b7e4Joe Gregorio2013-03-060-0/+0
| |
| * 0.8 releaseJoe Gregorio2013-03-064-3/+13
| |
| * Added tag 0.8 for changeset a645d22abfd0Joe Gregorio2013-03-060-0/+0
| |
| * Catch an edge case in imports.Joe Gregorio2013-03-032-10/+23
| | | | | | | | Reviewed in https://codereview.appspot.com/7454047/.
| * Fix App Engine headers.Joe Gregorio2013-02-271-1/+1
| | | | | | | | Reviewed in https://codereview.appspot.com/7402063/.
| * Make code slightly more portable.Joe Gregorio2013-02-252-10/+2422
| | | | | | | | Revewed in https://codereview.appspot.com/7406049/.
| * Make indents consistent with PEP8.Joe Gregorio2013-02-255-347/+351
| | | | | | | | Reviewed in https://codereview.appspot.com/7314118/.
| * Add missing conn.close().Joe Gregorio2013-02-251-0/+1
| | | | | | | | Reviewed in https://codereview.appspot.com/7384055/.
| * Fix all whitespace issues. Patch from dhermes@google.com.Joe Gregorio2013-02-1924-269/+269
| |
| * Change the App Engine specific connection objects to be subclassesJoe Gregorio2012-12-262-78/+46
| | | | | | | | of the httplib ones, which gives better behavior on App Engine.
| * Update for 0.7.7 release.Joe Gregorio2012-11-122-4/+12
| |
| * Added tag 0.7.7 for changeset e78fbc336997Joe Gregorio2012-11-120-0/+0
| |
| * Stop swallowing App Engine specific errors.Joe Gregorio2012-11-121-2/+0
| | | | | | | | Fixes issue 230. Fixes issue 231.
| * Fix Python3 dup header handling.Joe Gregorio2012-11-124-6/+10
| | | | | | | | Fixes isse #229.
| * Adding proxy_info_from_* methods to Python3.Joe Gregorio2012-10-252-4/+97
| | | | | | | | Reviewed in https://codereview.appspot.com/6588078/.
| * Added GeoTrust certJoe Gregorio2012-10-242-0/+50
| |
| * Make httplib2.Http() instances pickleable.Joe Gregorio2012-10-034-99/+202
| | | | | | | | Reviewed in https://codereview.appspot.com/6506074/
| * Added tag 0.7.6 for changeset 28bf49dc86c3Joe Gregorio2012-09-110-0/+0
| |
| * Version 0.7.6Joe Gregorio2012-09-114-3/+6
| |
| * On Python App Engine 2.7 a body can be passed in that is actually a stream. DoJoe Gregorio2012-09-111-0/+4
| | | | | | | | a full read of the contents of that stream before proceeding.
| * Fix app engineJoe Gregorio2012-08-281-2/+2
| |
| * Added tag 0.7.5 for changeset 403deb2f51e7Joe Gregorio2012-08-280-0/+0
| |
| * Fix some tests.Joe Gregorio2012-08-282-1/+14
| |
| * Updating testsjcgregorio2011-05-243-1/+1
| |