summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixed parsing of URL paths starting with multiple slashes.double_slash_at_start_of_path_fixRichard Mitchell2012-08-022-1/+4
|
* New branch for double-slash fix.Richard Mitchell2012-08-020-0/+0
|
* add news for last commitIan Bicking2011-08-171-0/+7
|
* Automated merge with ssh://bitbucket.org/ianb/pasteIan Bicking2011-08-171-2/+1
|\
| * update link to official dev repoJoshua Bronson2011-07-191-2/+1
| |
* | Always wrap wsgi.input with LimitedLengthFile, even when using the ↵Ian Bicking2011-08-171-9/+8
|/ | | | ContinueHook. Also always use ContinueHook when there is Expect: 100-Continue, even if the server is supposed to be HTTP/1.0 (because the client wouldn't know the server version when it sends the request; curl notable stalls waiting for a continue)
* Automated merge with https://bitbucket.org/milinnovations_andreas/paste/Ian Bicking2010-11-291-2/+2
|\
| * Add fix to make digest auth with internet explorer 8 (and possibly other ↵milinnovations_andreas2010-09-291-2/+2
| | | | | | | | versions)
* | remove old setup.cfg stuffIan Bicking2010-10-281-8/+0
|/
* Fix #444, egg:Paste#cgi should work nowIan Bicking2010-09-282-0/+6
|
* Added tag 1.7.5.1 for changeset 53a9cdc44dc0Ian Bicking2010-09-200-0/+0
|
* update versions for release1.7.5.1Ian Bicking2010-09-203-4/+4
|
* Fix #443: url_unquote undefinedIan Bicking2010-09-162-1/+19
|
* Added tag 1.7.5 for changeset 3b337deabee1Ian Bicking2010-09-140-0/+0
|
* versions for release1.7.5Ian Bicking2010-09-143-4/+4
|
* Automated merge with ssh://bitbucket.org/ianb/pasteIan Bicking2010-09-148-18/+37
|\
| * Just a bit more paranoia in quoting comments, though I wasn't able to ↵Ian Bicking2010-09-144-3/+13
| | | | | | | | reproduce any actual issue
| * Allow server_address tuples that are longer (specifically for IPv6 support: ↵Ian Bicking2010-09-021-5/+4
| | | | | | | | http://trac.pythonpaste.org/pythonpaste/ticket/275)
| * Catch cookie errors when parsing cookies ↵Ian Bicking2010-09-022-3/+11
| | | | | | | | (http://trac.pythonpaste.org/pythonpaste/ticket/189)
| * note return value of form.submitIan Bicking2010-09-021-7/+9
| |
* | Fix test broken by 27a36b3e1843 (for ↵Taavi Burns2010-09-091-1/+1
|/ | | | http://trac.pythonpaste.org/pythonpaste/ticket/328)
* avoid deprecation warnings when using wdg_validateIan Bicking2010-09-021-6/+6
|
* fixes for cgiapp on Windows (http://trac.pythonpaste.org/pythonpaste/ticket/382)Ian Bicking2010-09-021-2/+3
|
* Coerce thread id to a long, might fix problems in Ubuntu: ↵Ian Bicking2010-09-021-3/+3
| | | | http://trac.pythonpaste.org/pythonpaste/ticket/416
* Do not set Content-Encoding to 'None' ↵Ian Bicking2010-09-021-2/+7
| | | | (http://trac.pythonpaste.org/pythonpaste/ticket/427)
* A probably incomplete fix for ↵Ian Bicking2010-09-021-2/+3
| | | | http://trac.pythonpaste.org/pythonpaste/ticket/328 -- quote the path before checking the digest. May not recreate the original quoting, but at least it is more correct than simply appending SCRIPT_NAME and PATH_INFO, which are definitely not quoted.
* Always return something from start_response, even if we don't plan to ↵Ian Bicking2010-09-021-3/+7
| | | | actually use the written response (because it will be forwarded). Might fix: http://trac.pythonpaste.org/pythonpaste/ticket/166
* Get rid of misused .remote() method (should have been .delete()): ↵Ian Bicking2010-09-021-2/+2
| | | | http://trac.pythonpaste.org/pythonpaste/ticket/310
* Improve errors when fetching an error page: ↵Ian Bicking2010-09-024-48/+71
| | | | http://trac.pythonpaste.org/pythonpaste/ticket/123
* Add default argument to paste.response.HeaderDict.pop (to make it more like ↵Ian Bicking2010-09-011-6/+6
| | | | a normal dict): http://trac.pythonpaste.org/pythonpaste/ticket/279
* Catch a case where .objects doesn't exist ↵Ian Bicking2010-09-011-57/+61
| | | | (http://trac.pythonpaste.org/pythonpaste/ticket/408)
* Quote usernames in auth_tkt tickets ↵Ian Bicking2010-09-012-16/+22
| | | | (http://trac.pythonpaste.org/pythonpaste/ticket/380)
* Use X-Forwarded-For in translogger: ↵Ian Bicking2010-09-012-1/+13
| | | | http://trac.pythonpaste.org/pythonpaste/ticket/412 -- also news for last commits
* Fix http://trac.pythonpaste.org/pythonpaste/ticket/318 -- handle zero-length ↵Ian Bicking2010-09-011-1/+1
| | | | responses in gzip middleware
* Avoid installing the testsIan Bicking2010-09-011-1/+2
|
* Fix http://trac.pythonpaste.org/pythonpaste/ticket/398 -- properly reject ↵Ian Bicking2010-09-012-1/+11
| | | | dates that have out-of-range values
* news for last couple commitsIan Bicking2010-08-201-0/+7
|
* Automated merge with ssh://bitbucket.org/ianb/pasteIan Bicking2010-08-201-6/+10
|\
| * Fix problem with CGI apps that don't give a status message, and which mix \n ↵Ian Bicking2010-08-201-6/+10
| | | | | | | | and \r\n in their headers
* | TypoChristoph Zwerschke2010-08-191-1/+1
| |
* | Added some more test cases to test_mimeparse that I have found here:Christoph Zwerschke2010-08-192-8/+66
| | | | | | | | | | http://code.google.com/p/mimeparse/source/browse/trunk/testdata.json Also added a link to the project upstream.
* | Minor simplification.Christoph Zwerschke2010-08-191-8/+4
| |
* | Added unittests for util.mimeparse and made the module more robust and ↵Christoph Zwerschke2010-08-193-51/+256
| | | | | | | | | | | | somewhat faster. This also closes tickets #290, #330, #370 and #381.
* | The reporter test never created the necessary output directory.Christoph Zwerschke2010-08-191-5/+9
|/
* Added tag 1.7.4 for changeset ddfbf09c41cbIan Bicking2010-06-230-0/+0
|
* update news for last commit1.7.4Ian Bicking2010-06-231-0/+2
|
* add a missing desired_matches function to mimeparse (was removed upstream, ↵Ian Bicking2010-06-231-11/+34
| | | | but still used in paste)
* forgot to fix up testIan Bicking2010-06-151-2/+1
|
* Added tag 1.7.4 for changeset d2aa3ed13d8cIan Bicking2010-06-150-0/+0
|
* update versionsIan Bicking2010-06-152-2/+2
|