Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert all strings to conform single-quoted style | Sviatoslav Sydorenko | 2016-09-08 | 1 | -3/+3 |
| | | | | pre-commit run double-quote-string-fixer --all-files | ||||
* | Finally fix E402 for tutorial/tut*.py | Sviatoslav Sydorenko | 2016-09-08 | 1 | -3/+4 |
| | |||||
* | Refactor tutorial tests such that they're constructed more directly (and not ↵ | Jason R. Coombs | 2016-06-05 | 1 | -3/+0 |
| | | | | by invoking a loader on the server itself). Remove test-specific code from the tutorials. | ||||
* | Use expose decorator throughout the codebase. | Jason R. Coombs | 2016-06-05 | 1 | -3/+3 |
| | |||||
* | Removed trailing whitespace from the codebase. | Gustavo Picon | 2012-04-03 | 1 | -5/+5 |
| | | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'` | ||||
* | Bye bye, py2/3. | Robert Brewer | 2011-07-02 | 1 | -0/+107 |
| | |||||
* | Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunk | Robert Brewer | 2011-02-25 | 1 | -107/+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. | ||||
* | Some backports (mostly whitespace, really) from the python3 branch. | Robert Brewer | 2010-12-27 | 1 | -1/+0 |
| | |||||
* | Fixing tutorials which did not run on command-line. | Robert Brewer | 2010-01-01 | 1 | -4/+13 |
| | |||||
* | Switched the json_in tool to take advantage of the new body.processors. | Robert Brewer | 2009-08-23 | 1 | -2/+2 |
| | |||||
* | More trunk test fixes, inlucding backport of [2282] from python3 to trunk. | Robert Brewer | 2009-05-31 | 1 | -1/+1 |
| | |||||
* | Fix for #756 (Deprecate server.quickstart): | Robert Brewer | 2008-01-12 | 1 | -5/+2 |
| | | | | | | * server.quickstart now does nothing but raise a warning. * Made 'root' argument to cherrypy.quickstart optional (to make tutorials easier, but it applies broadly). * Removed all calls to server.quickstart. | ||||
* | New pywebd module. Trunk is now "3.1alpha". | Robert Brewer | 2007-03-05 | 1 | -0/+1 |
| | |||||
* | Fix for #547 (serve_file still uses contentType instead of content_type). ↵ | Robert Brewer | 2006-08-12 | 1 | -3/+3 |
| | | | | Thanks, michele! | ||||
* | Changed server.start to server.quickstart, and server.start_all to server.start. | Robert Brewer | 2006-08-05 | 1 | -1/+1 |
| | |||||
* | All tutotials were missing an import os.path and could not run | Sylvain Hellegouarch | 2006-05-22 | 1 | -0/+1 |
| | |||||
* | Root and config are now isolated per app: | Robert Brewer | 2006-05-07 | 1 | -3/+2 |
| | | | | | | | | | | | 1. object_path is now called path_info, and there's a new request.script_name attribute. This should equal the mount point of the current application. 2. cherrypy.root is gone, use cherrypy.request.app.root for now instead. Perhaps cherrypy.root will reappear and point to that. 3. cherrypy.tree.mount_points has been replaced with cherrypy.tree.apps, a dict of the form {script_name: Application(root, conf)}. 4. The [global] config namespace is now contained in a flat cherrypy.config.globalconf dict. 5. Got rid of handling favicon.ico and the "*" URI (although they may return someday). 6. Upshot is that e.g. test_objectmapping.py takes 1/3 the time as CP 2.2. 7. Moved request body size check into _cprequest from _cpwsgi. 8. Fixed lib/wsgiapp and made a tool for it. | ||||
* | 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. | ||||
* | Removed a bunch of instances of the word "filter". | Robert Brewer | 2006-04-25 | 1 | -1/+1 |
| | |||||
* | CP 3 initial checkin. Global filters have been replaced by request.hooks. ↵ | Robert Brewer | 2006-04-21 | 1 | -4/+4 |
| | | | | Lots of renaming and reorg of modules. | ||||
* | Less-confusing text in tut09_files.py docstring. | Robert Brewer | 2006-02-06 | 1 | -1/+6 |
| | |||||
* | Tutorial fixes, plus a bug in _cputil.getErrorPage. | Robert Brewer | 2005-10-08 | 1 | -1/+36 |
| | |||||
* | Using smaller PDF file for tutorials (to reduce the size of the tarball) | Remi Delon | 2005-10-07 | 1 | -1/+1 |
| | |||||
* | Added download method (serveFile demo) to tutorial 9. | Robert Brewer | 2005-09-10 | 1 | -0/+60 |