summaryrefslogtreecommitdiff
path: root/test
Commit message (Expand)AuthorAgeFilesLines
* Some micro-optimisations.Marcel Hellkamp2012-08-301-1/+1
* Replaced HTTPResponse and HTTPError with subclasses of BaseResponse.Marcel Hellkamp2012-08-304-39/+39
* Fix: cgi.FieldStorage had a misleading implementation of __nonzero__ and retu...Marcel Hellkamp2012-07-201-0/+2
* fix: The ResourceManager now behaves as documented.Marcel Hellkamp2012-07-021-0/+12
* fix: Fixes unicode problems with request.query and request.forms (fix #342 fi...Marcel Hellkamp2012-06-261-2/+2
* fix: Unicode errors with Python 3.2+ POST parameters. (fix #344, fix #349)Marcel Hellkamp2012-06-252-12/+15
* api: Bottle.mount() not adds 'mountpoint' meta-data to the created routes to ...Marcel Hellkamp2012-05-291-0/+9
* Fix a typo in test/test_server.pyFrédéric Junod2012-05-021-1/+1
* Changed the __setattr__ and __getattr__ behavior of Request instances.Marcel Hellkamp2012-04-041-10/+14
* Added a way to extend BaseRequest on a per-request basis via the bottle.reque...Marcel Hellkamp2012-04-041-5/+18
* Merge branch 'master' into resource-managementMarcel Hellkamp2012-03-262-0/+14
|\
| * Stressing encoding definition. I swear I found these bugs by accident.Iuri de Silvio2012-02-161-0/+5
| * fix: py3k bug in test case.Marcel Hellkamp2012-02-111-2/+2
| * fix #297: Added FormsDict.decode() to better support WTForms.Marcel Hellkamp2012-02-091-0/+9
* | Renamed some methods on ResourceManager and cleaned up documentation.Marcel Hellkamp2012-03-261-3/+3
* | Moved the resource stuff into a separate class.Marcel Hellkamp2012-03-151-54/+53
* | Added missing importMarcel Hellkamp2012-02-081-0/+1
* | Added missing __main__ handler in test_resources.pyMarcel Hellkamp2012-02-081-0/+4
* | Fixed relative path handling in Bottle.add_resource_path() and added tests.Marcel Hellkamp2012-02-081-0/+66
|/
* Fixed most of the warnings in tests.Marcel Hellkamp2012-01-137-24/+11
* Added BaseRequest.app property.Marcel Hellkamp2011-12-301-0/+8
* fix: Workaround for a hash collision DoS vulnerability in CPython dicts.Marcel Hellkamp2011-12-281-0/+17
* Added a Bottle.merge() method.Marcel Hellkamp2011-12-281-0/+18
* Fixed a bug in HTTPError.__repr__. The repr() builtin breaks for non-asciiMarcel Hellkamp2011-12-221-0/+5
* Merge pull request #264 from iurisilvio/masterMarcel Hellkamp2011-12-111-0/+4
|\
| * Tests to path_filter.Iuri de Silvio2011-12-101-0/+4
* | Merge pull request #261 from iurisilvio/masterMarcel Hellkamp2011-12-091-0/+9
|\ \ | |/
| * Solving float_filter bug and testing it.Iuri de Silvio2011-12-091-0/+9
* | fix #91: Support for partial downloads (Range header) in static_file().Marcel Hellkamp2011-12-041-1/+18
* | Merge pull request #257 from schmir/toxifyMarcel Hellkamp2011-12-031-1/+1
|\ \ | |/ |/|
| * add tox.ini in order to easily test with multiple python versionsRalf Schmitt2011-12-021-1/+1
* | Removing some useless imports.Iuri de Silvio2011-12-036-6/+7
* | Importing `bottle.touni` to Mako and Jinja2 tests. They're broken!Iuri de Silvio2011-12-032-2/+2
|/
* fix: All test-cases now support 2.x and 3.x from the same source.Marcel Hellkamp2011-12-0214-185/+161
* Removed 2to3 code and documentation.Marcel Hellkamp2011-11-253-49/+29
* fix: Workaround for bug in functools.update_wrapper() (fixes #223 #224)Marcel Hellkamp2011-11-221-0/+9
* api: Changed BaseResponse.status to return a string.Marcel Hellkamp2011-11-161-12/+12
* fix #250: The command-line interface now calls gevent.monkey.patch_all() if t...Marcel Hellkamp2011-11-152-20/+23
* Code cleanup and some tests.Marcel Hellkamp2011-11-111-11/+35
* New route syntax /object/<id:int> and support for route wildcard filters.Marcel Hellkamp2011-11-081-3/+21
* Fix: Request.set_cookie() now accepts expire=datetime/int and max_age=timedel...Marcel Hellkamp2011-10-271-6/+26
* Added three new functions to the SimpleTemplate default namespace:Marcel Hellkamp2011-10-111-0/+15
* Improved Bottle.mount()Marcel Hellkamp2011-10-012-50/+64
* FormsDict now de- or recodes values on attribute access and returns unicode.Marcel Hellkamp2011-09-301-0/+31
* fix: Request.json too restrictive. (fix #226)Marcel Hellkamp2011-09-251-1/+1
* Improved ConfigDict:Marcel Hellkamp2011-09-251-11/+21
* Fix: ConfigDict now raises AttributeError if you try to overwrite a dict method.Marcel Hellkamp2011-09-191-0/+59
* Add **kwargs to SimpleTemplate.prepare to fix upstream #203.Iuri de Silvio2011-09-021-0/+4
* Fix: #201 "Max recursion depth exceeded" on len(WSGIHeaderDict({}))Marcel Hellkamp2011-09-021-0/+3
* Add tests for HTTP/1.0 redirect default code and custom codeSean M. Collins2011-09-011-0/+7