Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove reliance on six | Jason R. Coombs | 2018-09-02 | 1 | -6/+4 |
| | |||||
* | Swap pep257 with pydocstyle | Sviatoslav Sydorenko | 2018-06-16 | 1 | -1/+1 |
| | |||||
* | Replace copy/paste with re-used code. | Jason R. Coombs | 2017-12-17 | 1 | -10/+3 |
| | |||||
* | Omit unused values | Jason R. Coombs | 2017-12-17 | 1 | -2/+2 |
| | |||||
* | Make cherrypy._cpchecker PEP257-compliant | Sviatoslav Sydorenko | 2017-10-21 | 1 | -6/+4 |
| | |||||
* | Use six to import builtins | Jason R. Coombs | 2017-07-09 | 1 | -1/+1 |
| | |||||
* | copykeys is not needed here; mappings naturally iterate on their keys and ↵ | Jason R. Coombs | 2017-07-09 | 1 | -5/+5 |
| | | | | extend will enact the iteration immediately. | ||||
* | Replace iteritems with six usage. | Jason R. Coombs | 2017-07-08 | 1 | -4/+6 |
| | |||||
* | Convert all strings to conform single-quoted style | Sviatoslav Sydorenko | 2016-09-08 | 1 | -73/+73 |
| | | | | pre-commit run double-quote-string-fixer --all-files | ||||
* | More PEP8 work. | Gustavo Picon | 2014-01-12 | 1 | -25/+39 |
| | |||||
* | Running: autopep8 -vvvvv -i `find . -name '*.py'` | Gustavo Picon | 2014-01-12 | 1 | -22/+13 |
| | | | | | --HG-- branch : autopep8 | ||||
* | Removed trailing whitespace from the codebase. | Gustavo Picon | 2012-04-03 | 1 | -42/+42 |
| | | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'` | ||||
* | Bye bye, py2/3. | Robert Brewer | 2011-07-02 | 1 | -0/+327 |
| | |||||
* | Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunk | Robert Brewer | 2011-02-25 | 1 | -327/+0 |
| | | | | goes in the py2 folder, and we can use a single setup.py to install either, depending on the version of Python that runs setup.py install. | ||||
* | Freeow. The magic cherrypy/_cpcompat.py module to take all our py3k fears away. | Robert Brewer | 2011-02-24 | 1 | -9/+9 |
| | |||||
* | A couple doc cleanups. | Robert Brewer | 2010-08-08 | 1 | -3/+2 |
| | |||||
* | Docs: more refman work. | Robert Brewer | 2010-02-24 | 1 | -6/+12 |
| | |||||
* | trunk: more syntax syncs with python3, including a couple bugfixes that were ↵ | Robert Brewer | 2009-06-02 | 1 | -18/+18 |
| | | | | done in the python3 branch | ||||
* | Backport of [2304] from python3 to trunk (cpchecker warning fix for ↵ | Robert Brewer | 2009-05-31 | 1 | -0/+3 |
| | | | | body_params). | ||||
* | Added other site-config-only namespaces to the new checker. | Robert Brewer | 2009-04-16 | 1 | -2/+3 |
| | |||||
* | Added a checker for server.* entries in app config. | Robert Brewer | 2009-04-16 | 1 | -1/+20 |
| | |||||
* | New check_app_config_brackets warning. | Robert Brewer | 2009-02-21 | 1 | -0/+14 |
| | |||||
* | Fix for #891 (substituted formatwarning is old, signature in python2.6 is ↵ | Robert Brewer | 2009-01-09 | 1 | -1/+1 |
| | | | | changed). Also updated the isDaemon/setDaemon calls to threading.daemon for Py2.6+. | ||||
* | #884 - better checker that doesn't match /foobar entries for applications ↵ | Lakin Wecker | 2008-12-16 | 1 | -1/+3 |
| | | | | mounted at /foo | ||||
* | #884 - cpchecker method to catch application configuration that starts with ↵ | Lakin Wecker | 2008-12-16 | 1 | -0/+14 |
| | | | | script-name | ||||
* | Fix for #754 (Checker raises false alarm with application-level config ↵ | Robert Brewer | 2008-01-13 | 1 | -0/+1 |
| | | | | namespace). | ||||
* | Port to trunk of [1706] and [1714]. | Robert Brewer | 2007-09-28 | 1 | -0/+20 |
| | |||||
* | Checker warning for #711. | Robert Brewer | 2007-09-08 | 1 | -2/+26 |
| | |||||
* | New pywebd module. Trunk is now "3.1alpha". | Robert Brewer | 2007-03-05 | 1 | -4/+5 |
| | |||||
* | Fix for #632 (CP checker misleading warning on customized toolbox). | Robert Brewer | 2006-12-28 | 1 | -7/+8 |
| | |||||
* | Moved checker back to cherrypy.checker from engine, and also added a new ↵ | Robert Brewer | 2006-12-28 | 1 | -21/+96 |
| | | | | check_config_types method. There's also a new checker config namespace, so you can turn off the checker with "checker.on = False", or turn off specific methods with "checker.check_method_foo = None". | ||||
* | More checker checks (plus a fix for the fix for the fix). | Robert Brewer | 2006-12-21 | 1 | -2/+27 |
| | |||||
* | Fix for the fix. | Robert Brewer | 2006-12-21 | 1 | -2/+2 |
| | |||||
* | checker: | Robert Brewer | 2006-12-21 | 1 | -5/+7 |
| | | | | | | 1. Moved cherrypy.checker to cherrypy.engine.checker so it can be set to None or another Checker instance in config. 2. Replaced Checker.checkall with {{{Checker.__call__}}}. 3. Fixed an output bug in check_compatibility. | ||||
* | Moved check_compatibility into _cpchecker.py. Also allow disabling of ↵ | Robert Brewer | 2006-12-20 | 1 | -1/+40 |
| | | | | Checker methods by setting them to None. | ||||
* | New cherrypy.checker which runs by default in development mode. | Robert Brewer | 2006-12-20 | 1 | -0/+81 |