Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove reliance on six | Jason R. Coombs | 2018-09-02 | 1 | -2/+1 |
| | |||||
* | Feed the hobgoblins (delint). | Jason R. Coombs | 2017-10-27 | 1 | -1/+1 |
| | |||||
* | Remove duplicate imports | Jason R. Coombs | 2017-07-10 | 1 | -2/+0 |
| | |||||
* | Rely on six for urllib moves. | Jason R. Coombs | 2017-07-09 | 1 | -3/+4 |
| | |||||
* | PEP8fy codebase: eliminated E305 flake8 error | Sviatoslav Sydorenko | 2017-03-11 | 1 | -0/+1 |
| | |||||
* | Convert all strings to conform single-quoted style | Sviatoslav Sydorenko | 2016-09-08 | 1 | -21/+21 |
| | | | | pre-commit run double-quote-string-fixer --all-files | ||||
* | Fix E402 in lib/covercp | Sviatoslav Sydorenko | 2016-09-08 | 1 | -2/+3 |
| | |||||
* | Correct typos in expose decorator usage. Fixes #1444. | Jason R. Coombs | 2016-06-06 | 1 | -3/+3 |
| | |||||
* | Use expose decorator throughout the codebase. | Jason R. Coombs | 2016-06-05 | 1 | -4/+7 |
| | |||||
* | More PEP8 work. | Gustavo Picon | 2014-01-12 | 1 | -8/+21 |
| | |||||
* | Running: autopep8 -vvvvv -i `find . -name '*.py'` | Gustavo Picon | 2014-01-12 | 1 | -8/+17 |
| | | | | | --HG-- branch : autopep8 | ||||
* | Removed trailing whitespace from the codebase. | Gustavo Picon | 2012-04-03 | 1 | -25/+25 |
| | | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'` | ||||
* | Bye bye, py2/3. | Robert Brewer | 2011-07-02 | 1 | -0/+365 |
| | |||||
* | Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunk | Robert Brewer | 2011-02-25 | 1 | -365/+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 | -1/+1 |
| | |||||
* | Sphinx docs in cherrypy.lib.* | chbrown | 2010-02-24 | 1 | -9/+7 |
| | |||||
* | Update covercp and test suite to use coverage 3.2. Should be faster. Note ↵ | Joseph Tate | 2010-01-28 | 1 | -20/+23 |
| | | | | no branch coverage yet. | ||||
* | More syncs with python3. | Robert Brewer | 2009-06-09 | 1 | -3/+3 |
| | |||||
* | trunk - adding a py3util module that will normalize as many differences ↵ | Lakin Wecker | 2009-06-01 | 1 | -3/+3 |
| | | | | between this branch and the python3 branch as it can. First it includes a py3print call who's signature matches that of print in python3. Also removed a few byte strings of the form b'' | ||||
* | trunk - removing unused imports. | Lakin Wecker | 2009-05-31 | 1 | -5/+0 |
| | |||||
* | covercp: Fixed bug when supplying port via command line. Added commandline ↵ | Robert Brewer | 2009-04-23 | 1 | -12/+20 |
| | | | | option to serve different root. Removed admonition to subscribe covercp.start to start_thread. | ||||
* | Coerced all path names in covercp.py to lower-case, since some versions of | zakj | 2007-10-30 | 1 | -2/+2 |
| | | | | coverage do so. | ||||
* | New pywebd module. Trunk is now "3.1alpha". | Robert Brewer | 2007-03-05 | 1 | -2/+3 |
| | |||||
* | Changed server.start to server.quickstart, and server.start_all to server.start. | Robert Brewer | 2006-08-05 | 1 | -3/+1 |
| | |||||
* | Moved coverage out of the core. | Robert Brewer | 2006-06-12 | 1 | -5/+10 |
| | |||||
* | Moved covercp, profiler to tree.mount syntax. | Robert Brewer | 2006-05-07 | 1 | -1/+1 |
| | |||||
* | Moved the following config keys out of the "server." namespace (so that ↵ | Robert Brewer | 2006-05-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | "server." may mean "httpserver"): * default_content_type * log_access_file * log_config_options * log_file * log_file_not_found * log_request_headers * log_to_screen * show_tracebacks * throw_errors | ||||
* | Separated cherrypy.server (HTTP) from cherrypy.engine (app): | Robert Brewer | 2006-05-04 | 1 | -0/+1 |
| | | | | | | | | 1. Most CP apps must now make both a call to cherrypy.server.start(server=None) and a call to cherrypy.engine.start(blocking=True). 2. The on_start_server_list and on_stop_server_list are now on_start_engine_list and on_stop_engine_list. 3. "start_with_callback" is now an attribute of Engine. So is "request". 4. Server.start now takes a single "server" arg, which can be a server instance, a string (fully qualified class name), or None (to start the default WSGI server). 5. Server still has a wait method, but otherwise does no blocking. | ||||
* | Big change: camelCase to lower_with_underscore names (still need to update ↵ | Remi Delon | 2005-12-03 | 1 | -2/+2 |
| | | | | the book) | ||||
* | Fix for #374 (reduce license boilerplate to a single LICENSE.txt file). | Robert Brewer | 2005-10-31 | 1 | -28/+0 |
| | |||||
* | Improved covercp's annotated file output: blank lines have been reinstated, ↵ | Robert Brewer | 2005-08-25 | 1 | -13/+14 |
| | | | | but blank or other non-statement lines are marked "not covered" if the next valid statement line is marked "not covered". | ||||
* | 1. More improvements to coverage browser. | Robert Brewer | 2005-08-24 | 1 | -54/+106 |
| | | | | 2. Fix for ticket #261 (autoreload failed on file deletions). | ||||
* | Upgrades to coverage browser (thanks to Keir Mierle). See ticket #262. | Robert Brewer | 2005-08-23 | 1 | -133/+204 |
| | |||||
* | Prettier covercp report output (tree format plus percents). | Robert Brewer | 2005-08-19 | 1 | -16/+94 |
| | |||||
* | Added filename, "percent covered" to covercp reports. | Robert Brewer | 2005-08-18 | 1 | -5/+16 |
| | |||||
* | 1. Config section [global] (pathless) is now distinct from [/] (root path); ↵ | Robert Brewer | 2005-08-09 | 1 | -5/+4 |
| | | | | | | | | | | they are no longer synonyms. "global" is the parent of "/". 2. The Request-URI is now parsed much earlier in Request processing, so that onStartResource and error filter methods may have access to it. 3. Absolute URI's (on the request line) are now converted to relative URI's to facilitate configMap lookups. 4. A Request-URI of "*" sets cherrypy.request.path to "global" (again for configMap). 5. Fixed a bug in config.getAll where the initial slash was missing for configMap lookups. 6. Bugfix: del Content-Length header if None. | ||||
* | 1. Builtin HTTP servers now check for free port. | Robert Brewer | 2005-07-22 | 1 | -0/+1 |
| | | | | 2. Bugfix in covercp (had bad data if server restarted between requests). | ||||
* | 1. Pulled dict_from_config_file out of config._load to make it reusable. | Robert Brewer | 2005-07-18 | 1 | -1/+11 |
| | | | | 2. Made test.test.main() reusable by CP apps. | ||||
* | config.update: fixed default overide value, fixed newlines in covercp.py | Michael Robinson | 2005-07-07 | 1 | -20/+20 |
| | |||||
* | Minor improvements to code-coverage. | Robert Brewer | 2005-07-07 | 1 | -28/+24 |
| | |||||
* | Oops. Forgot a file. | Robert Brewer | 2005-07-07 | 1 | -0/+165 |