summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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.
| * Fixed spelling mistake/typo.Graham Ashton2012-08-051-1/+1
|/ | | Changed "refecence" to "reference".
* Merge pull request #354 from waawal/patch-1Marcel Hellkamp2012-07-261-1/+1
|\ | | | | Updated url of logo
| * Updated url of logoDaniel Waardal2012-07-261-1/+1
|/
* Fix: Template cache now depends on the ID of the lookup path list.Marcel Hellkamp2012-07-201-9/+10
| | | | Templates got mixed up in multi-app setups.
* Fix: cgi.FieldStorage had a misleading implementation of __nonzero__ and ↵Marcel Hellkamp2012-07-202-1/+8
| | | | | | returned False for bool(request.files.name). This now returns True for existing files. Thanks to Pascal Rosin via Twitter
* Merge pull request #351 from fredj/docsMarcel Hellkamp2012-07-171-1/+2
|\ | | | | tutorial: add missing form action and submit input (closes #335)
| * tutorial: add missing form action and submit input (closes #335)Frederic Junod2012-07-171-1/+2
|/
* Merge pull request #350 from fredj/docsMarcel Hellkamp2012-07-161-2/+2
|\ | | | | Parameter order of Bottle.mount() changed in 8b023afd; update tutorial
| * Parameter order of Bottle.mount() changed in 8b023afd; update tutorialFrederic Junod2012-07-161-2/+2
|/
* Respect HTTP_X_FORWARDED_PROTO (if present) so we don't break HTTPS when ↵Sam Kline2012-07-081-1/+1
| | | | redirecting
* Merge pull request #349 from pgoetz/masterMarcel Hellkamp2012-07-072-3/+3
|\ | | | | A couple of minor documentation fixes
| * A couple of minor documentation fixesPatrick Goetz2012-07-062-3/+3
|/
* docs: Updated changelogMarcel Hellkamp2012-07-021-6/+10
|
* fix: The ResourceManager now behaves as documented.Marcel Hellkamp2012-07-022-11/+24
|
* Docs: Updated development guide.Marcel Hellkamp2012-07-021-37/+76
|
* Merge pull request #348 from fredj/patch-2Marcel Hellkamp2012-06-271-1/+1
|\ | | | | LICENSE.txt renamed to LICENSE in ddb7e5acd
| * LICENSE.txt renamed to LICENSE in ddb7e5acd5976a1296517a5ca59671203b08edfcFrédéric Junod2012-06-271-1/+1
|/
* docs: Reverse proxy fixing middlewareMarcel Hellkamp2012-06-261-0/+20
|
* Merge pull request #346 from fredj/patch-1Marcel Hellkamp2012-06-261-1/+1
|\ | | | | Fix typo in Plugin Development Guide (stopwatch example)
| * Fix typo in Plugin Development Guide (stopwatch example)Frédéric Junod2012-06-261-1/+1
| |
* | fix: Fixes unicode problems with request.query and request.forms (fix #342 ↵Marcel Hellkamp2012-06-262-6/+30
|/ | | | fix #344 fix #339)
* docs: TypoMarcel Hellkamp2012-06-261-2/+2
|
* docs: Unicode issues with form values.Marcel Hellkamp2012-06-262-6/+25
|
* fix: Unicode errors with Python 3.2+ POST parameters. (fix #344, fix #349)Marcel Hellkamp2012-06-253-16/+22
|
* Merge pull request #343 from wentura77/patch-1Marcel Hellkamp2012-06-251-1/+1
|\ | | | | Undefined variable os.mkdirs()
| * Update masterВиталий2012-06-241-1/+1
|/
* Merge pull request #336 from msabramo/tox-py33Marcel Hellkamp2012-06-171-1/+1
|\ | | | | Add py33 to tox.ini
| * Add py33 to tox.iniMarc Abramowitz2012-06-161-1/+1
|/
* fix: Accessing the uninitialized request/response objects now yields a ↵Marcel Hellkamp2012-06-041-4/+10
| | | | useful error message.
* Merge pull request #327 from idkfa/patch-1Marcel Hellkamp2012-05-311-1/+19
|\ | | | | Update docs/routing.rst
| * Update docs/routing.rst Alexander Vladimirov2012-05-311-1/+19
|/
* fix: Removed limit from all traceback.format_exc() calls to display full ↵Marcel Hellkamp2012-05-301-3/+3
| | | | | | traceback. Thanks e1ch1 (IRC)
* api: Bottle.mount() not adds 'mountpoint' meta-data to the created routes to ↵Marcel Hellkamp2012-05-292-10/+23
| | | | | | allow introspection of the wrapped sub-application. Thanks to David Buxton for the feature request and patch.
* docs: Changelog and cleanupMarcel Hellkamp2012-05-292-7/+16
|
* Merge pull request #324 from meawoppl/masterMarcel Hellkamp2012-05-141-1/+1
|\ | | | | Typo Fix
| * Update bottle.pyMatty G2012-05-141-1/+1
|/
* Fix: IOError with mod_wsgiMarcel Hellkamp2012-05-141-2/+7
| | | | mod_wsgi restricts sys.stdin attribute access.
* Merge pull request #321 from iwd32900/masterMarcel Hellkamp2012-05-141-0/+3
|\ | | | | Fix: Exception when pickling FormsDict
| * BUGFIX: avoid cryptic TypeError when pickling FormsDict objects.Ian Davis2012-05-101-0/+3
|/
* docs: Separate article on deployment.Marcel Hellkamp2012-05-052-152/+203
|
* Merge pull request #319 from fredj/patch-1Marcel Hellkamp2012-05-021-1/+1
|\ | | | | Fix a typo in test/test_server.py