Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | docs/basics.rst: Update validate_password() to take 3 arguments | Murilo Opsfelder Araujo | 2015-09-21 | 1 | -1/+1 | |
| | | | | | | | | | | This change updates the sample validate_password() function since it actually receives 3 arguments when called, i.e. realm, username and password. Without this change, the following exception is raised: TypeError: validate_password() takes exactly 2 arguments (3 given) | |||||
* | docs/basics.rst: Cleanup trailing whitespaces | Murilo Opsfelder Araujo | 2015-09-21 | 1 | -83/+83 | |
| | ||||||
* | fetch a row from the result not the connection | Lawouach | 2015-07-19 | 1 | -2/+2 | |
| | ||||||
* | fixes the session being generated again and again in this tutorial | Lawouach | 2015-07-19 | 1 | -0/+13 | |
| | ||||||
* | added React.js to the tutorial | Lawouach | 2015-07-19 | 1 | -1/+222 | |
| | ||||||
* | fixed link | Lawouach | 2015-07-19 | 1 | -1/+1 | |
| | ||||||
* | ref | Lawouach | 2015-07-19 | 1 | -0/+2 | |
| | ||||||
* | a little word aboutd restful in the tutorial | Lawouach | 2015-07-19 | 1 | -0/+15 | |
| | ||||||
* | clarified how to use CherryPy with the logging module | Lawouach | 2015-07-19 | 1 | -8/+118 | |
| | ||||||
* | the right date this time | Lawouach | 2015-07-19 | 1 | -1/+1 | |
| | ||||||
* | updated copyright date | Lawouach | 2015-07-19 | 1 | -1/+1 | |
| | ||||||
* | Improved wording about returned error | Colin Svingen | 2015-03-19 | 1 | -2/+2 | |
| | ||||||
* | Added details on specifying an index file. | Colin Svingen | 2015-03-19 | 1 | -0/+19 | |
| | ||||||
* | fixed #1361 | Lawouach | 2015-03-12 | 1 | -1/+1 | |
| | ||||||
* | Merged in nryoung/cherrypy (pull request #90) | Sylvain Hellegouarch | 2015-02-23 | 2 | -6/+6 | |
|\ | | | | | | | Fix several typos and grammar mistakes in the docs. | |||||
| * | Fix several typos and grammar mistakes in the docs. | Nic Young | 2014-12-29 | 2 | -6/+6 | |
| | | ||||||
* | | basics.rst edited online with Bitbucket : fixed typo in favicon sample code | Unknown Name | 2015-01-27 | 1 | -1/+1 | |
|/ | | | | | --HG-- branch : alecz20/basicsrst-edited-online-with-bitbucket--1422336197217 | |||||
* | Fix PUT request - it wasn't submitting the input field, only a blank string | Unknown Name | 2014-12-10 | 1 | -1/+1 | |
| | | | | | --HG-- branch : steve9000/fix-put-request-it-wasnt-submitting-the-1418205560793 | |||||
* | Fix broken links | kevvvvv | 2014-12-06 | 1 | -2/+2 | |
| | | | | | --HG-- branch : kevvvvv/fix-broken-links-1417898285265 | |||||
* | small typo | mnjonge | 2014-07-25 | 1 | -1/+1 | |
| | | | | tutorials.rst edited online with Bitbucket | |||||
* | Move util scripts to docs | Jason R. Coombs | 2014-06-27 | 2 | -0/+157 | |
| | ||||||
* | Move docs to docs/ | Jason R. Coombs | 2014-06-27 | 25 | -0/+5920 | |
| | ||||||
* | Move 'docs' to 'man'. In Python projects, 'docs' typically are for Sphinx docs. | Jason R. Coombs | 2014-06-27 | 1 | -263/+0 | |
| | ||||||
* | added man page for cherryd | visteya | 2009-06-15 | 1 | -0/+263 | |
| | ||||||
* | There's no need to keep old presentations around in SVN (or distro them). ↵ | Robert Brewer | 2008-01-14 | 42 | -3262/+0 | |
| | | | | You can look them up in old revisions if needed. | |||||
* | Removed trunk/docs/book folder, as that won't be upgraded for CP 3. | Robert Brewer | 2006-08-30 | 61 | -3125/+0 | |
| | ||||||
* | Fix in 2.x and trunk for #522 (redirect documentation doesn't talk about ↵ | Robert Brewer | 2006-06-30 | 1 | -631/+634 | |
| | | | | status code). | |||||
* | Moving visuals up one level | Remi Delon | 2006-03-29 | 4 | -0/+0 | |
| | ||||||
* | Checking in logos and new favicon.ico | Remi Delon | 2006-03-29 | 4 | -0/+0 | |
| | ||||||
* | Updated wsgiappfilter section of the book. | Christian Wyglendowski | 2006-03-16 | 1 | -25/+8 | |
| | ||||||
* | Added documentation to the book for the wsgiappfilter. | Christian Wyglendowski | 2006-03-12 | 1 | -13/+52 | |
| | ||||||
* | Added "on_renew_session" callback to sessionfilter | Remi Delon | 2006-02-28 | 1 | -2/+7 | |
| | ||||||
* | Removed deprecated _cphttpserver.py. | Robert Brewer | 2006-02-16 | 1 | -648/+632 | |
| | ||||||
* | Renamed queryString into query_string | Remi Delon | 2006-02-16 | 1 | -3/+3 | |
| | ||||||
* | Docs: cherrypy.tree | Robert Brewer | 2006-02-16 | 2 | -612/+685 | |
| | ||||||
* | When running under _cphttpserver, request.wsgi_environ is now set to an ↵ | Christian Wyglendowski | 2006-01-31 | 1 | -1/+1 | |
| | | | | | | | | | | | | | empty dictionary. It will still evaluate as boolean False, but will allow for the following code: val = cherrypy.request.wsgi_environ.get('SOME_VAR', 'some default') Rather than: if cherrypy.request.wsgi_environ: val = cherrypy.request.wsgi_environ['SOME_VAR'] else: val = 'some default' | |||||
* | API doc entry for cherrypy.request.wsgi_environ | Christian Wyglendowski | 2006-01-31 | 1 | -0/+4 | |
| | ||||||
* | Better document session.acquire_lock() | Remi Delon | 2006-01-26 | 1 | -7/+20 | |
| | ||||||
* | Deprecated "initOnly" and "serverClass". New names are "init_only" and ↵ | Remi Delon | 2006-01-26 | 1 | -7/+7 | |
| | | | | "server_class" | |||||
* | Deprecating simpleCookie (use "simple_cookie" instead) | Remi Delon | 2006-01-26 | 1 | -3/+3 | |
| | ||||||
* | Doc update for #55/[879]. | Robert Brewer | 2005-12-23 | 1 | -1024/+586 | |
| | ||||||
* | Specify in book that the PostgreSql backend for sessions works with psycopg2 | Remi Delon | 2005-12-13 | 1 | -1/+1 | |
| | ||||||
* | Slides for tonight's meetup in London | Remi Delon | 2005-12-12 | 21 | -0/+1579 | |
| | ||||||
* | Forgot browserUrl in camelCase to lowercase conversion | Remi Delon | 2005-12-10 | 1 | -1/+1 | |
| | ||||||
* | you can now define the default content type to be used globally by all ↵ | Sylvain Hellegouarch | 2005-12-05 | 1 | -0/+3 | |
| | | | | responses using server.default._content_type | |||||
* | Updated book to reflect [856] | Remi Delon | 2005-12-05 | 8 | -136/+136 | |
| | ||||||
* | Big change: camelCase to lower_with_underscore names (still need to update ↵ | Remi Delon | 2005-12-03 | 2 | -19/+19 | |
| | | | | the book) | |||||
* | missed an xml tag | Sylvain Hellegouarch | 2005-11-30 | 1 | -1/+1 | |
| | ||||||
* | added information about filters hooks | Sylvain Hellegouarch | 2005-11-30 | 1 | -557/+1039 | |
| | ||||||
* | oops types tile instead of title... | Sylvain Hellegouarch | 2005-11-27 | 1 | -1/+1 | |
| |