summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Added wheel supportrelease-0.11Marcel Hellkamp2022-09-052-1/+7
|
* Added 3.4 test environment to travis configMarcel Hellkamp2014-04-291-0/+1
|
* Release of 0.11.7 (Security fix)0.11.7Marcel Hellkamp2014-04-251-1/+1
| | | | https://github.com/defnull/bottle/issues/616
* fix #616: Json content-type not restrictive enoughMarcel Hellkamp2014-04-252-1/+11
| | | | Possible security issue. See https://github.com/defnull/bottle/issues/616 for details.
* Added travis configurationMarcel Hellkamp2014-02-072-0/+35
|
* Fixed changelogMarcel Hellkamp2013-12-031-2/+0
|
* Backported test case to make sure this release does not need the fix.Marcel Hellkamp2013-07-041-0/+3
|
* Fix: run() disabling debug mode.Marcel Hellkamp2013-07-041-2/+2
| | | | Changed run(debug=*) default from False to None. None does not change the current mode.
* Release of 0.11.6 (bugfix)0.11.6Marcel Hellkamp2013-02-011-1/+1
| | | | Fix #446 (also #438): Wrong subapp response body handling and lost Content-Type header on mounted apps.
* Fix #446 (also #438): Wrong subapp response body handling and lost ↵Marcel Hellkamp2013-02-012-3/+21
| | | | Content-Type header on mounted apps.
* Release of 0.11.50.11.5Marcel Hellkamp2013-01-211-1/+1
| | | | Bugfix release (#438, #417)
* Fixed testcase for 3.3Marcel Hellkamp2013-01-211-1/+2
|
* fix #438: "Some cookies are lost when using mount()"Marcel Hellkamp2013-01-212-7/+14
| | | | Added support for multiple headers with the same name (e.g. Set-Cookie) for mounted apps.
* Merge pull request #417 from iurisilvio/release-0.11Marcel Hellkamp2012-12-061-1/+1
|\ | | | | Update HTTPResponse call when mounting apps
| * Update HTTPResponse call when mounting appsIuri de Silvio2012-12-051-1/+1
|/
* Release of 0.11.40.11.4Marcel Hellkamp2012-11-211-1/+1
| | | | Bugfix that improves performance (a lot).
* Fix #405: Templates are not cached properly.Marcel Hellkamp2012-11-211-1/+1
|
* Merge branch 'release-0.11' of github.com:defnull/bottle into release-0.11Marcel Hellkamp2012-11-2114-182/+198
|\
| * Fixed release rule in Makefile and added test_33Marcel Hellkamp2012-10-171-3/+6
| |
| * Release of 0.11.30.11.3Marcel Hellkamp2012-10-171-1/+1
| | | | | | | | | | | | | | fix #386: Response cookies cleared after redirect() fix #389: Bottle still raises DeprecationWarning in bottle.redirect() and Router.match() Fix #387: Template lookup found files in workdir, even if TEMPLATE_PATH did not contain '.'. fix #382: "dictionary changed size during iteration" bug in test case.
| * fix #386: Response cookies cleared after redirect()Marcel Hellkamp2012-10-171-1/+4
| | | | | | | | | | | | redirect() creates a new HTTPResponse and that replaces headers or cookies defined on the global response object. This is the correct behavior. The old behavior was a bug, actually. This patch restores the old (buggy) behavior for 0.11 to maintain backwards compatibility.
| * fix #389: Bottle still raises DeprecationWarning in bottle.redirect() and ↵Marcel Hellkamp2012-10-171-3/+2
| | | | | | | | Router.match()
| * Fix #387: Template lookup found files in workdir, even if TEMPLATE_PATH did ↵Marcel Hellkamp2012-10-171-4/+12
| | | | | | | | | | | | | | | | | | not contain '.'. The template path list is now obeyed (with an exception for templates with an explicit absolute path). The next release will tighten the rules a bit further: TEMPLATE_PATH must not be empty, and absolute paths are considered relative, too. This ensures that only templates from within TEMPLATE_PATH directries are loaded.
| * Makefile: A release always pushes to public repository now.Marcel Hellkamp2012-10-111-1/+5
| |
| * fix #382: "dictionary changed size during iteration" bug in test case.Marcel Hellkamp2012-10-111-1/+1
| |
| * Release of 0.11.2 (bugfix)0.11.2Marcel Hellkamp2012-10-101-1/+1
| |
| * fix #383: Bottle raises DeprecationWarning - internalMarcel Hellkamp2012-10-101-15/+15
| |
| * Release of 0.11.10.11.1Marcel Hellkamp2012-10-091-1/+1
| |
| * Mostly typos in docsMarcel Hellkamp2012-10-094-7/+12
| |
| * Merge pull request #381 from fredj/plugin-apply-argsMarcel Hellkamp2012-10-041-2/+2
| |\ | | | | | | plugin.apply: rename context to route
| | * plugin.apply: rename context to routeFrederic Junod2012-09-241-2/+2
| | |
| * | Fix #382 "Test failures with Python 3"Marcel Hellkamp2012-10-041-3/+4
| |/
| * Merge pull request #380 from projectgus/masterMarcel Hellkamp2012-09-201-1/+1
| |\ | | | | | | Fix regression in pull request 378 (issue #334)
| | * Fix bottle.ext namespacing when importing as bottle (regression in fix for #334)Angus Gratton2012-09-201-1/+1
| |/
| * Merge pull request #378 from iurisilvio/patch-3Marcel Hellkamp2012-09-191-1/+1
| |\ | | | | | | Avoid __main__.ext namespace
| | * Avoid __main__.ext namespaceIuri de Silvio2012-09-191-1/+1
| |/ | | | | Fix #334.
| * Merge pull request #376 from graingert/patch-2Marcel Hellkamp2012-09-161-2/+2
| |\ | | | | | | use template in tutorial to match index
| | * use template in tutorial to match indexThomas Grainger2012-09-171-2/+2
| |/
| * Fix XSS vulnerability in hello world exampleThomas Grainger2012-09-161-2/+2
| |
| * Merge pull request #375 from nstawski/masterMarcel Hellkamp2012-09-161-11/+11
| |\ | | | | | | Fixed code indent in one of the examples
| | * Fixed code indent for one of the examplesNina Stawski2012-09-111-11/+11
| |/
| * Removed unused parameter docs from GeventServerbaserock/morphMarcel Hellkamp2012-08-301-1/+0
| |
| * Raise RuntimeError when using gevent without monkey-patches.Marcel Hellkamp2012-08-301-4/+5
| |
| * Some micro-optimisations.Marcel Hellkamp2012-08-302-27/+23
| |
| * Fix: Bottle no longer changes the Content-Length response header if it was ↵Marcel Hellkamp2012-08-301-4/+4
| | | | | | | | set by the application. (fix #311)
| * Replaced HTTPResponse and HTTPError with subclasses of BaseResponse.Marcel Hellkamp2012-08-306-91/+88
| |
| * Whitespace and typosMarcel Hellkamp2012-08-303-10/+9
| | | | | | | | Fixed copyright date
| * Merge pull request #369 from iurisilvio/patch-1Marcel Hellkamp2012-08-291-1/+1
| |\ | | | | | | Plugin Development tutorial code error
| | * Plugin Development tutorial code errorIuri de Silvio2012-08-241-1/+1
| |/ | | | | Just a small error reported in maillist.
| * Merge pull request #360 from gma/patch-1Marcel Hellkamp2012-08-051-1/+1
| |\ | | | | | | Fixed spelling mistake/typo.