Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update comments | Jason R. Coombs | 2017-10-28 | 1 | -3/+4 |
| | |||||
* | Use short-circuits and reindent to allow the single-line invocation of ↵ | Jason R. Coombs | 2017-10-28 | 1 | -9/+10 |
| | | | | portend.occupied, required by older Pythons. | ||||
* | Feed the hobgoblins (delint). | Jason R. Coombs | 2017-10-27 | 1 | -2/+5 |
| | |||||
* | Mark docstrings with slash escaping as raw str (PR #1610 by @scop) | Ville Skyttä | 2017-07-10 | 1 | -1/+1 |
| | | | | * https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior (Python 3.6 invalid escape sequence deprecation) | ||||
* | Rely on portend for port checks. Fixes #1332. | Jason R. Coombs | 2017-01-19 | 1 | -106/+26 |
| | |||||
* | A comment is more appropriate here. | Jason R. Coombs | 2016-12-31 | 1 | -3/+1 |
| | |||||
* | Remove unused variables. | Jason R. Coombs | 2016-12-31 | 1 | -1/+0 |
| | |||||
* | Allow binding to an ephemeral port. Fixes #645. | Jason R. Coombs | 2016-12-29 | 1 | -13/+33 |
| | |||||
* | Use single quotes as double-quotes, even with the first one escaped, causes ↵ | Jason R. Coombs | 2016-12-23 | 1 | -1/+1 |
| | | | | problems with SublimeText syntax highlighting. | ||||
* | Don't use hanging indent, especially when it makes the syntax harder to read. | Jason R. Coombs | 2016-12-23 | 1 | -4/+8 |
| | |||||
* | Convert all strings to conform single-quoted style | Sviatoslav Sydorenko | 2016-09-08 | 1 | -24/+24 |
| | | | | pre-commit run double-quote-string-fixer --all-files | ||||
* | Fix #1492: systemd socket activation (PR #1494) | Laszlo Megyer | 2016-09-03 | 1 | -3/+4 |
| | | | | | when starting up cherrypy via socket activation we should not wait for the port to become free because systemd is bound to it. | ||||
* | Only wait for the port if not running via socket-activation | Mario Sanchez Perez | 2016-07-25 | 1 | -3/+7 |
| | | | | | | | | Otherwise this will always end up killing the server in the socket-activated scenario, as the port won't ever be occupied by cherrypy, since the socket is handled by systemd. Signed-off-by: Niv Sardi <xaiki@evilgiggle.com> | ||||
* | Use expose decorator throughout the codebase. | Jason R. Coombs | 2016-06-05 | 1 | -1/+1 |
| | |||||
* | Remove support for deprecated attributes on wsgiserver2 around SSL support | Jason R. Coombs | 2015-12-20 | 1 | -2/+1 |
| | |||||
* | servers.py edited online with Bitbucket (doctring of ServerAdapter corrected ↵ | yoochan | 2015-01-06 | 1 | -1/+1 |
| | | | | | | | for proper formating of code) --HG-- branch : yoochan/serverspy-edited-online-with-bitbucket-d-1420541114999 | ||||
* | fix the output message to show the correct scheme with ssl enabled server | cavallo71 | 2014-09-12 | 1 | -1/+2 |
| | | | | | --HG-- branch : fix.https.message | ||||
* | More PEP8 work. | Gustavo Picon | 2014-01-12 | 1 | -7/+12 |
| | |||||
* | Running: autopep8 -vvvvv -i `find . -name '*.py'` | Gustavo Picon | 2014-01-12 | 1 | -2/+10 |
| | | | | | --HG-- branch : autopep8 | ||||
* | Try to get the scheme from httpserver | Juan-Pablo Scaletti | 2013-03-18 | 1 | -2/+16 |
| | |||||
* | Adds a http:// to the displayed server URL (if a host and a port are available) | Juan-Pablo Scaletti | 2013-03-17 | 1 | -1/+1 |
| | |||||
* | Update documentation to remove reference to old configuration alias. | Chris Beelby | 2012-11-26 | 1 | -1/+1 |
| | |||||
* | Fix error in Python 3.3 where socket.error and IOError are the same ↵ | Jason R. Coombs | 2012-10-03 | 1 | -3/+4 |
| | | | | | | | exception class (OSError). Thanks to Alex Hill for the patch. Fixes #1170. --HG-- branch : cherrypy-3.2.x | ||||
* | Don't raise an error in server.wait() when testing against loopback ↵ | Jason R. Coombs | 2012-04-08 | 1 | -1/+11 |
| | | | | | | | interface, which is not guaranteed to exist (and in fact does not exist in common platforms such as rackspace hosting and Heroku). Fixes #1100. --HG-- branch : cherrypy-3.2.x | ||||
* | Removed trailing whitespace from the codebase. | Gustavo Picon | 2012-04-03 | 1 | -36/+36 |
| | | | | | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'` --HG-- branch : cherrypy-3.2.x | ||||
* | Fix for #986 (Patch: Slightly increase timeout) | Robert Brewer | 2011-07-04 | 1 | -6/+15 |
| | |||||
* | Bye bye, py2/3. | Robert Brewer | 2011-07-02 | 1 | -0/+418 |
| | |||||
* | Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunk | Robert Brewer | 2011-02-25 | 1 | -418/+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 | -5/+5 |
| | |||||
* | Added CGI adapter to servers.py and cherryd. See #894. | Robert Brewer | 2011-02-21 | 1 | -0/+23 |
| | |||||
* | Some backports (mostly whitespace, really) from the python3 branch. | Robert Brewer | 2010-12-27 | 1 | -1/+12 |
| | |||||
* | Buglet in FlupFCGIServer. See ↵ | Robert Brewer | 2010-08-08 | 1 | -1/+1 |
| | | | | http://stackoverflow.com/questions/1665742/cherrypy-or-other-python-framework-with-fastcgi-on-shared-host | ||||
* | More doc work. | Robert Brewer | 2010-08-08 | 1 | -2/+2 |
| | |||||
* | Docs: Big cleanup of deployguide. | Robert Brewer | 2010-06-06 | 1 | -13/+113 |
| | |||||
* | More doc work. | Robert Brewer | 2010-06-01 | 1 | -1/+1 |
| | |||||
* | Based on IRC discussions with fumanchu regarding #960, we determined the ↵ | jaraco | 2009-10-30 | 1 | -1/+2 |
| | | | | best fix at this stage is to hard-code the common IN6ADDR_ANY addresses. This should fix #960. | ||||
* | Some IPV6 tweaks. | Robert Brewer | 2009-10-03 | 1 | -2/+10 |
| | |||||
* | trunk: A bunch more alignments between trunk and python3 syntax. | Robert Brewer | 2009-06-02 | 1 | -2/+2 |
| | |||||
* | Fix for #894 (can't configure [apache] dynamic FCGI, only static and external). | Robert Brewer | 2009-02-11 | 1 | -1/+10 |
| | |||||
* | FCGI tweak to help it shut down. | Robert Brewer | 2009-01-29 | 1 | -2/+2 |
| | |||||
* | Pass *self.args, **self.kwargs to WSGIServer instead of *args, | georgem | 2008-07-23 | 1 | -1/+1 |
| | | | | **kwargs. | ||||
* | Delay flup server init since it starts threads right away. | Robert Brewer | 2008-07-23 | 1 | -9/+17 |
| | |||||
* | Override _installSignalHandlers for flup servers so they don't try to | georgem | 2008-07-22 | 1 | -0/+34 |
| | | | | | | | install handlers (which causes errors in Linux). Added FlupSCGIServer to servers.py. Add '' to the front of sys.path in cherryd so modules in the currect directory can be imported in Linux. Added scgi support to cherryd. | ||||
* | Buried a couple socket, threading module imports for easier Google App ↵ | Robert Brewer | 2008-06-04 | 1 | -2/+3 |
| | | | | Engine integration. | ||||
* | Fix for #757 (Reduce socket timeout for wait_for_free_port to speed up startup). | Robert Brewer | 2008-04-27 | 1 | -4/+5 |
| | |||||
* | Audit of logging: | Robert Brewer | 2008-04-05 | 1 | -1/+1 |
| | | | | | | | | | 1. cherrypy.log now defaults to INFO. 2. Bus.log now takes a 'level=INFO' arg. 3. 'log' channel subscribers now must accept a 'level' arg. 4. Some bus plugin messages upgraded to WARN or ERROR. 5. Some CP core messages upgraded to ERROR. 6. log.screen move to stderr polished. See #747. | ||||
* | Working cherryd daemon script. New FlupFCGIServer wrapper in servers.py. ↵ | Robert Brewer | 2008-03-18 | 1 | -0/+32 |
| | | | | Also added a config arg to cherrypy.Application. | ||||
* | Renamed restsrv -> process. Boring but practical. | Robert Brewer | 2008-03-16 | 1 | -0/+190 |