summaryrefslogtreecommitdiff
path: root/lib/ansible/module_utils/urls.py
Commit message (Expand)AuthorAgeFilesLines
* A few fixes for python3py3-bytes-urls-fixToshio Kuratomi2016-10-241-7/+10
* Fix #10865Foxlik2016-10-241-1/+6
* Improved caching for urlsMichael Riss2016-10-241-5/+6
* Fix url lookup for python 3 (#17295)Michael Scherer2016-08-311-4/+6
* 16888: comment module_utils/urls.py (#16987)Victor Volle2016-08-101-15/+56
* Port urls.py to python3 and other byte vs text fixes (#16124)Toshio Kuratomi2016-06-041-45/+62
* Use .code instead of .getcode() as py24 does not have .getcode(). Fixes https...Matt Martz2016-05-131-1/+1
* Some beginning python3 porting for urls.pyToshio Kuratomi2016-04-271-9/+21
* Fix traceback in fetch_urls when status code is in info as well as the error.Toshio Kuratomi2016-04-271-1/+2
* HTTPError can also function as a non-exceptional file-like return value (#14915)Olivier GROSJEANNE2016-04-251-1/+5
* Don't override the http status code when successful in urls.pyJames Cammarata2016-04-181-2/+1
* Don't pass context to urlopen, instead add it to the handlers. Fixes https://...Matt Martz2016-04-151-9/+9
* More intelligent building of the SSLValidationError message based on capabili...Matt Martz2016-04-061-24/+29
* Utilize urllib3.contrib.pyopenssl functionality for SNI capability in python ...Matt Martz2016-04-061-2/+31
* ZiploaderToshio Kuratomi2016-04-051-13/+12
* Merge pull request #14735 from jsok/open_url-netrcBrian Coca2016-03-301-3/+19
|\
| * Lookup netrc for credentials in open_urlJonathan Sokolowski2016-03-071-3/+19
* | Check return value of get_distribution()Daniel Kempkens2016-03-161-1/+1
* | Fix redirects for get_urlMatt Martz2016-03-071-5/+3
|/
* Support SSL validation with redirect control for python versions without ssl ...Matt Martz2016-03-021-21/+29
* Add RedirectHandler class and factory function for controlling redirects in u...Matt Martz2016-02-051-7/+63
* Conditionally create the CustomHTTPSConnection class only if we have the requ...Toshio Kuratomi2015-12-161-35/+39
* Fixes for proxy on RHEL5Toshio Kuratomi2015-12-161-3/+11
* First attempt to fix https certificate errors through a proxy with python-2.7.9+Toshio Kuratomi2015-12-161-2/+6
* Allow PATCH to list of valid HTTP methodsEric Johnson2015-11-031-1/+1
* Remove mutable default arguments.gduke2015-10-201-1/+3
* properly fail_json when we don't have ssl on a non-redhat distroToshio Kuratomi2015-10-161-0/+2
* Python2.4 compat fixToshio Kuratomi2015-07-271-1/+1
* Guard the PROTOCOL setting so that we work on older pythonsToshio Kuratomi2015-07-241-2/+3
* Have openssl autonegotiate tls protocol on python < 2.7.9get_url-tls-compatToshio Kuratomi2015-07-151-3/+30
* Add support for SNI and TLS-1.1 and TLS-1.2 to the fetch_url() helperget_url-sni-tls-fixToshio Kuratomi2015-07-141-17/+60
* Merge upstream changesIiro Uusitalo2015-07-101-10/+10
* Enables 'basic auth force' -feature globallyIiro Uusitalo2015-07-091-1/+10
* Vendorize match_hostname code so that ansible can push it out to clients alon...Toshio Kuratomi2015-06-251-0/+169
* Fix forwarding the user-given params from fetch_url() to open_url()Toshio Kuratomi2015-06-231-2/+2
* Split the fetch_url() function into fetch_url and open_url().Toshio Kuratomi2015-06-121-76/+110
* Make fetch_url check the server's certificate on https connectionsToshio Kuratomi2015-05-281-18/+33
* Allow the use of HTTP on custom ports in the fetch_url functionSimon Dick2015-05-011-0/+1
* Revert "Fix: Add support for SSL protocol version configuration option"revert-9808-sslconfigBrian Coca2015-01-191-4/+4
* Merge pull request #9808 from swimlappy/sslconfigBrian Coca2015-01-161-4/+4
|\
| * Add support for SSL protocol version configuration option. Also fix 2 places...Jason Holland2014-12-131-4/+4
* | Allow Ansible to honor the "no_proxy" environment varaible.Jason Holland2014-12-131-0/+24
|/
* Add the default Homebrew path for OpenSSL certs on OS XJure Triglav2014-10-291-0/+2
* Catch additional errors in fetch_urlJames Cammarata2014-09-111-0/+4
* Disable custom https handler for fetch_url on older pythonsJames Cammarata2014-09-051-1/+4
* Fix py26 difference in ssl socket connect call from 99ba9d6James Cammarata2014-09-031-1/+4
* Supporting SSL cert location on SunOS (SmartOS, really)Dan Buch2014-08-291-0/+2
* Default fetch_url to use TLSv1 instead of SSLv2/3James Cammarata2014-08-281-0/+20
* Default use_proxy to True for fetch_url()James Cammarata2014-05-191-1/+1
* Adding the capability to proxy the ssl cert checkJames Cammarata2014-05-191-3/+89