summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Preparing release 2.0.252.0.25Gael Pasgrimaud2017-02-052-2/+2
|
* Merge pull request #174 from icemac/fix-empty-file-uploadGael Pasgrimaud2017-02-053-4/+13
|\ | | | | Do not omit file uploads without a file from post.
| * Fix #173: Do not omit file uploads without a file from post.Michael Howitz2017-02-053-4/+13
|/
* Merge pull request #172 from coreywright/remove_ordereddict_referencesGael Pasgrimaud2017-02-024-10/+2
|\ | | | | Remove remaining references to ordereddict package
| * Remove remaining references to ordereddict packageCorey Wright2017-02-014-10/+2
|/ | | | | | Now that Python 2.6 is unsupported, references to the ordereddict package can be removed in preference of using OrderedDict from the Python standard library's collections module.
* Merge pull request #170 from inglesp/patch-1Steve Piercy2017-01-121-1/+1
|\ | | | | Fix typo in comment
| * Fix typo in commentPeter Inglesby2017-01-121-1/+1
|/
* Merge pull request #169 from PavloKapyshin/masterGael Pasgrimaud2017-01-011-1/+1
|\ | | | | Fix typo
| * Fix typoPavlo Kapyshin2016-12-311-1/+1
|/
* Back to development: 2.0.25Gael Pasgrimaud2016-12-162-1/+7
|
* Preparing release 2.0.242.0.24Gael Pasgrimaud2016-12-162-2/+2
|
* changesGael Pasgrimaud2016-12-161-0/+6
|
* Merge pull request #166 from Pylons/form_charsetGael Pasgrimaud2016-12-162-11/+3
|\ | | | | try to get a better fix to handle form's charset. see #164
| * Merge branch 'master' into form_charsetform_charsetGael Pasgrimaud2016-09-152-2/+1
| |\
| * \ Merge branch 'master' into form_charsetGael Pasgrimaud2016-09-152-3/+2
| |\ \
| * | | use text_type() instead of str(). see #164Gael Pasgrimaud2016-09-152-11/+3
| | | |
* | | | fix fixtures; webob1.7rc require bytesGael Pasgrimaud2016-12-162-3/+3
| | | |
* | | | Merge branch 'fix-docs-errors' of github.com:hirokiky/webtestGael Pasgrimaud2016-12-164-15/+15
|\ \ \ \
| * | | | Fixed not to specify _static dir on conf.pyHiroki KIYOHARA2016-12-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This document does not include any static files, so this setting is not necessary. And it will raise error without actual _static directory in docs root.
| * | | | Removed a link for deleted documentHiroki KIYOHARA2016-12-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This document is deleted and now it's contents is included in testapp doc http://docs.pylonsproject.org/projects/webtest/en/latest/testapp.html#making-json-requests. Original deleted document is here https://github.com/Pylons/webtest/blob/52f8ebde1ee30e7c7b3680f5e98c558c227c05bf/docs/json.txt It's not so interesting doc and hard to link for hash, so I deleted this link.
| * | | | Fixed wrong links for module indexHiroki KIYOHARA2016-12-123-13/+13
| | |_|/ | |/| |
* | | | fix tests (ignore contributing.rst)Gael Pasgrimaud2016-12-164-14/+3
|/ / /
* | | drop py2.6 support everywhere; changesGael Pasgrimaud2016-09-152-2/+1
| |/ |/|
* | drop py2.6 supportGael Pasgrimaud2016-09-152-3/+2
|/
* Back to development: 2.0.24Gael Pasgrimaud2016-07-212-1/+7
|
* Preparing release 2.0.232.0.23Gael Pasgrimaud2016-07-212-2/+2
|
* Merge pull request #161 from wichert/universalGael Pasgrimaud2016-07-212-1/+3
|\ | | | | Create universal wheels
| * Create universal wheelsWichert Akkerman2016-07-212-1/+3
| |
| * The changelog should not be executableWichert Akkerman2016-07-211-0/+0
| |
* | Back to development: 2.0.23Gael Pasgrimaud2016-07-212-1/+7
| |
* | Preparing release 2.0.222.0.22Gael Pasgrimaud2016-07-212-2/+2
| |
* | changesGael Pasgrimaud2016-07-211-2/+1
|/
* do not guess encoding if response's charset is set. See #160Gael Pasgrimaud2016-07-212-4/+12
|
* Merge pull request #155 from adamchainz/readthedocs.ioGael Pasgrimaud2016-06-062-3/+3
|\ | | | | Convert readthedocs links for their .org -> .io migration for hosted projects
| * Convert readthedocs links for their .org -> .io migration for hosted projectsAdam Chainz2016-06-052-3/+3
|/ | | | | | | | As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/) ‘Securing subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified.
* Back to development: 2.0.22Gael Pasgrimaud2016-04-122-1/+7
|
* Preparing release 2.0.212.0.21Gael Pasgrimaud2016-04-122-2/+2
|
* changesGael Pasgrimaud2016-04-121-1/+5
|
* Merge pull request #154 from coolnay309/feature/allow-bearer-authGael Pasgrimaud2016-04-122-1/+23
|\ | | | | support bearer auth
| * make sure str and text_type are checkedPranay Suresh2016-04-101-1/+1
| |
| * reduce complexity use text_typePranay Suresh2016-04-101-11/+3
| |
| * add test case for bearer auth and append to invalid auth test casePranay Suresh2016-04-101-0/+18
| |
| * support python2 and python3Pranay Suresh2016-04-101-3/+13
| |
| * support bearer authPranay Suresh2016-04-071-0/+2
|/
* Merge pull request #148 from bdauvergne/refererGael Pasgrimaud2016-03-313-1/+20
|\ | | | | Add referer header to request made using response.click(), response.clickbutton() and form.submit()
| * Set Referer on form.submit() (#147)Benjamin Dauvergne2016-03-312-0/+6
| | | | | | | | It complies with usual behaviour of current browsers.
| * Set Referer header on .click() and .clickbutton() (#147)Benjamin Dauvergne2016-03-312-1/+14
|/ | | | It complies with usual behavior of current browsers.
* py27 is not py3Gael Pasgrimaud2016-01-071-0/+2
|
* simple tox config; remove pypy from travis - lxml install failGael Pasgrimaud2016-01-073-55/+7
|
* Merge pull request #144 from sloria/py35-testingGael Pasgrimaud2016-01-073-1/+9
|\ | | | | Test against python 3.5