summaryrefslogtreecommitdiff
path: root/cherrypy/config.py
Commit message (Expand)AuthorAgeFilesLines
* More (final?) config overhaul work:Robert Brewer2006-08-251-328/+0
* Overhaul of config system:Robert Brewer2006-08-241-38/+122
* Fix for #551 (_cpwsgiserver should handle persistent connections). All of CP ...Robert Brewer2006-08-201-1/+1
* Lots of mixedCase to lower_with_underscores.Robert Brewer2006-08-121-2/+2
* Fixed missing access log for global configurationSylvain Hellegouarch2006-08-111-0/+1
* New server.socket_timeout config entry, thanks to Albert Visagie. See http://...Robert Brewer2006-08-071-2/+3
* Merged the reexec branch. Autoreload now uses exec instead of spawn, and ther...Robert Brewer2006-07-191-4/+5
* Various speedups, the only notable one being that environments are now always...Robert Brewer2006-07-111-9/+19
* Cleanup of cherrypy and cherrypy.config namespaces. Changed 'log_config_optio...Robert Brewer2006-07-021-49/+61
* Much Better Logging (see #256). Apps now have their own access and error logg...Robert Brewer2006-06-251-2/+48
* Made cherrypy.request and .response more sef-documenting by populating their ...Robert Brewer2006-06-191-0/+2
* Renamed httptools to "http" to reduce confusion with new cherrypy.tools. Move...Robert Brewer2006-06-121-2/+2
* Fix for #502 (log errors by default).Robert Brewer2006-06-051-1/+3
* Bah. I knew I had config.merge in there for a reason.Robert Brewer2006-05-101-0/+13
* Dispatch and config lookup now happens as early as possible, once per request...Robert Brewer2006-05-101-94/+0
* Moved log_access to a config entry.Robert Brewer2006-05-071-2/+1
* Root and config are now isolated per app:Robert Brewer2006-05-071-147/+98
* Moved the following config keys out of the "server." namespace (so that "serv...Robert Brewer2006-05-071-17/+17
* Fixed bug in request_config_section.Robert Brewer2006-05-021-1/+2
* Objects on the CP tree may now possess a _cp_config attribute, which replaces...Robert Brewer2006-05-011-16/+72
* Lots of changes to error and log handling:Robert Brewer2006-05-011-3/+1
* test_core works again.Robert Brewer2006-04-251-0/+19
* Fluff.Robert Brewer2006-04-221-1/+1
* Fixed xmlrpc tool and test. Plus:Robert Brewer2006-04-221-2/+2
* CP 3 initial checkin. Global filters have been replaced by request.hooks. Lot...Robert Brewer2006-04-211-75/+15
* Addresses #480.Christian Wyglendowski2006-03-101-0/+6
* Fix for #427 (Use RawConfigParser instead of ConfigParser).Robert Brewer2006-03-041-2/+2
* server.thread_pool now defaults to 10.Robert Brewer2006-03-031-1/+1
* Added "cherrypy.lowercase_api" switch so that users can say "I'm using the ne...Remi Delon2006-01-271-14/+31
* Removed redundant test for favicon.Robert Brewer2006-01-051-1/+1
* Fix for #145. See the ticket for details about this fix.Robert Brewer2006-01-031-2/+12
* Fix for #416. The default favicon.ico is now served by a default static_filte...Remi Delon2005-12-291-0/+5
* More PEP 8 (including objectPath -> object_path); Changed virtualhostfilter t...Remi Delon2005-12-281-3/+3
* Made helper custom error handler backward-compatible from 2.2 to 2.1.Robert Brewer2005-12-171-2/+1
* Big change: camelCase to lower_with_underscore names (still need to update th...Remi Delon2005-12-031-53/+66
* Got rid of some superfluous custom exceptions.Robert Brewer2005-11-261-2/+4
* Logging of request headers:Robert Brewer2005-11-121-4/+7
* Moved the code handling OPTIONS * request to _cputil to a special function at...Sylvain Hellegouarch2005-11-121-0/+3
* Moved filter-handling code into lib.filter.__init__.py. Also moved unrepr and...Robert Brewer2005-11-101-5/+5
* Fix for #374 (reduce license boilerplate to a single LICENSE.txt file).Robert Brewer2005-10-311-31/+1
* Fix for #356 (formalize server.environment as a set of config defaults). New ...Robert Brewer2005-10-311-52/+73
* Fix for #373 (arbitrary mount points, or "virtual roots"). All internal use o...Robert Brewer2005-10-291-4/+4
* 1. Fix for #305 (produce an error if a custom error page file can not be open...Robert Brewer2005-09-291-1/+0
* Implemented ticket #90 (still need to write docs though)Remi Delon2005-09-111-9/+8
* httperrors branch merged into the trunk, the configuration paramater "showTra...Michael Robinson2005-09-041-0/+1
* The maximum size of a post body can know be limited using sever.maxRequestSiz...Michael Robinson2005-09-021-0/+2
* For config.py make first line of docstrings a one-line summary; needed for so...kmierle2005-08-271-17/+12
* Minor docstring improvements to config.py. All public config.py functions now...kmierle2005-08-271-11/+21
* Bug in config-file parsing: needed try/finally: close block.Robert Brewer2005-08-271-2/+4
* All raised exceptions now conform to "raise Exception([arg])" syntax (no more...Robert Brewer2005-08-261-1/+1