summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix fapws3 linkrelease-0.9Marcel Hellkamp2022-09-052-2/+2
|
* Added travis configurationMarcel Hellkamp2014-02-072-0/+35
|
* Fixing release target in Makefile.Marcel Hellkamp2011-12-231-4/+5
|
* Actually bumping version number...Marcel Hellkamp2011-12-231-1/+1
|
* Fixed a bug in HTTPError.__repr__. The repr() builtin breaks for non-ascii0.9.8Marcel Hellkamp2011-12-222-1/+6
| | | | unicode strings.
* fix #267: Possible XSS vulnerability on internal server errors.Marcel Hellkamp2011-12-221-5/+7
|
* docs: New stable release.Marcel Hellkamp2011-11-261-2/+2
|
* docs: Merging 0.11 docs layout changes.Marcel Hellkamp2011-11-246-17/+77
|
* fix: Python 3.x only bug in SimpleTemplate. Templates with an encoding other ↵0.9.7Marcel Hellkamp2011-11-151-2/+2
| | | | than the system default raised UnicodeError.
* Fixed "release" makefile target.Marcel Hellkamp2011-11-151-0/+1
|
* fix: Workaround for a bug in some versions of lib2to3 (fix #175)Marcel Hellkamp2011-07-271-1/+6
|
* Version bump (bugfix).0.9.6Marcel Hellkamp2011-07-192-3/+3
| | | | | Fix: Windows GAE crashes Fix: 'make release'
* fix: GAE dev server crash on windows. (fix #183)Marcel Hellkamp2011-07-192-2/+9
| | | | Thanks apexi200sx and Marcos Neves
* Version bump (bugfix release).0.9.5Marcel Hellkamp2011-06-271-1/+1
|
* Added "make release" because I am lazy ;)Marcel Hellkamp2011-06-271-12/+6
|
* fix: Added a workaround for missing PATH_INFO in CGI environments. This ↵Marcel Hellkamp2011-06-271-1/+4
| | | | | | fixes #177 Thanks to Michael Soulier
* Fix: "DeprecationWarning when using mount.". This fixes #173Marcel Hellkamp2011-06-211-2/+2
|
* Version bumb (bugfix)0.9.4Marcel Hellkamp2011-06-161-1/+1
|
* Fix for cherrypy hanging on shutdown. This should fix #14 and #171.Marcel Hellkamp2011-06-161-2/+4
| | | | Thanks to Joshua Roesslein and "zombat"
* Version bumb (bugfix)0.9.3Marcel Hellkamp2011-06-051-1/+1
|
* Fix: AttributeError in is_ajax (fix #162)akolechkin2011-06-052-1/+11
|
* Removed debug print statement. (No effect under normal circumstances)Marcel Hellkamp2011-05-141-2/+0
|
* Version bump (bugfix)0.9.2Marcel Hellkamp2011-05-131-1/+1
|
* fix: "SERVER_NAME is substituted for '127.0.0.1' for relative redirects" ↵Marcel Hellkamp2011-05-132-12/+12
| | | | | | issue #159 SERVER_NAME is only required for HTTP/1.0 clients that do not define a HTTP_HOST header. The HOST header, if present, should be correct.
* Made sure the READMEs are included in the source packages.Marcel Hellkamp2011-05-125-2/+3
|
* Version bump to 0.90.9.1Marcel Hellkamp2011-05-121-1/+1
|
* Speed up servertest for unresponsive servers.Marcel Hellkamp2011-05-121-7/+7
|
* Sync with master (mostly docs and plugins).Marcel Hellkamp2011-05-1213-52/+254
|
* Added sqlite plugin (experimental).Marcel Hellkamp2011-05-023-0/+176
|
* The bottle_werkzeug setup.py learned some new tricks.Marcel Hellkamp2011-05-022-35/+12
|
* fix: Apply plugins immediately in debug mode. This helps a lot during plugin ↵Marcel Hellkamp2011-05-022-6/+10
| | | | development.
* Added a TemplatePlugin to replace the old route(template='...') behavior.Marcel Hellkamp2011-05-021-19/+48
| | | | Added a lot of DeprecationWarnings for APIs that may change in 0.10.
* Added basic tests for the werkzeug plugin.Marcel Hellkamp2011-05-022-2/+25
|
* docs: licence -> license and 2009/2010 -> 2011Marcel Hellkamp2011-05-026-110/+11
| | | | (cherry picked from commit 6c151597e22b763af2174c257e6e4af47a0839f8)
* docs: Correct download links.Marcel Hellkamp2011-04-292-2/+2
|
* docs: Added Link to 0.9 docs.Marcel Hellkamp2011-04-291-2/+3
|
* Added werkzeug plugin (untested).Marcel Hellkamp2011-04-282-0/+147
| | | | (cherry picked from commit 4ffe685c22d89ecf909db370966443befbb4802e)
* tests: Speed up server tests.Marcel Hellkamp2011-04-284-32/+52
| | | | (cherry picked from commit f6fe0e6d43e211251e3b086a8e291a2fda35cb0b)
* Version bumb to 0.9rc10.9rc1Marcel Hellkamp2011-04-281-1/+1
|
* Whitespace...Marcel Hellkamp2011-04-281-3/+2
|
* Added tests for bottle.ext import hooks.Marcel Hellkamp2011-04-281-0/+38
|
* Added a virtual package 'bottle.ext' that redirects imports to 'bottle_%s'.Marcel Hellkamp2011-04-281-1/+36
| | | | | | | | | | | | | | Example:: import bottle.ext.sqlite # actually imports bottle_sqlite This gives us nice import statements and a common namespace for all plugins and might become an official plugin naming convention. It's not just a cool hack, but a real alternative to setuptools "namespace packages": + No setuptools dependency. + No overlapping __init__.py files. + Support for single-files (module) extensions. + Python standard since 2.3 (PEP 302).
* Merged pull request #150 from sc68cal/docs.Marcel Hellkamp2011-04-251-9/+9
|\ | | | | Copy editing.
| * Copy editing.Sean M. Collins2011-04-251-9/+9
|/
* docs: Plugins and Sub-Applications.Marcel Hellkamp2011-04-251-1/+22
|
* fix: Plugins are now disabled for sub application. See #149Marcel Hellkamp2011-04-232-0/+29
|
* fix: 'make clean' should not prompt.Marcel Hellkamp2011-04-231-1/+1
|
* docs: Docstring typo.Marcel Hellkamp2011-04-201-1/+1
|
* docs: Always load disqus comments.Marcel Hellkamp2011-04-201-7/+3
|
* Added Request.urlparts property and lots of redirect() tests.Marcel Hellkamp2011-04-204-34/+124
| | | | | | | | | This reverts 5cf06439. The result of Request.url is now quoted properly. If you really need the URL with an unquoted path, get Request.urlparts, urllib.unquote() the path and urlparse.urlunsplit() it again. I do not quite remember why I changed the Request.url behavior in the first place. An URL with special characters in the path is useless.