summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Version increment.Ryan Petrello2015-05-271-0/+26
| | | | Change-Id: Id2088317d47dc43d0e58869fbc4fa20cee98c7e9
* Allow users to specify custom path segments for routing.Ryan Petrello2015-05-211-0/+58
| | | | Change-Id: I3f998d62c2f188818a747f1aa91beb9439ed77a2
* Replace ci.o.o links with docs.o.o/infraJeremy Stanley2015-05-141-1/+1
| | | | | | | | | The http://ci.openstack.org/ documentation site has been deprecated, replaced by redirects to corresponding paths within http://docs.openstack.org/infra/ where other Project Infrastructure documentation already resides. Change-Id: Ic98ba41e1370039d99d233ccf318df11a40fb0d4
* Add more emphasis to the need for debug=False in deployment documentation.Ryan Petrello2015-05-111-11/+13
| | | | | | | Given https://wiki.openstack.org/wiki/OSSN/OSSN-0046, it seems that this portion of documentation needs to be far more visible on the page. Change-Id: I00f48d23edf5a0844d247a0d1476e9cd31ca84d7
* make_app() now uses the debugger param in DebugMiddleware()Joe D'Andrea2015-04-291-1/+14
| | | | | | | | Setting app.debugger in setup.py now takes proper effect. A warning is issued if the entry point is not callable. Change-Id: I58a860b8ef0e1cb956b4554071275c024a1949d2 Closes-Bug: #1449573
* Document how to serve static files (with an iterable, not in-memory).Ryan Petrello2015-02-041-0/+54
| | | | | | Fixes bug 1221342 Change-Id: Icfad6a262ed211a73291eaead568248f67cfbfc9
* Version increment.Ryan Petrello2015-01-121-0/+11
| | | | Change-Id: I310bfb38ed550e7e5932988ba21602bbea689e83
* Document pecan.request.contextRyan Petrello2015-01-081-0/+19
| | | | | | Fixes-bug: 1408755 Change-Id: Ie87a6b9e72fd1387e69db1b6f24d4475ecba56c6
* Version increment.0.8.2Ryan Petrello2014-12-171-0/+5
| | | | Change-Id: Ibf1506b1aa378caccf322cfc3297c208aae662c5
* Merge "Add documentation for generic REST controllers."Jenkins2014-12-052-45/+155
|\
| * Add documentation for generic REST controllers.Ryan Petrello2014-12-042-45/+155
| | | | | | | | | | | | Fixes bug 1386837 Change-Id: I9cf30c7d55026d2364d7add3f7a9ca96b3348d31
* | Corrects ouptut -> output in docs/source/hooks.rstEd Cranford2014-12-041-1/+1
|/ | | | Change-Id: I88823926b35a0762fb262779d6c3c5a25ef35eff
* Version increment.0.8.1Ryan Petrello2014-11-241-5/+13
| | | | Change-Id: Ie6f9d4187ddc6e585d3ba7f5531376e54b403664
* Version increment.0.8.0Ryan Petrello2014-10-141-0/+11
| | | | Change-Id: I7edccb6171682585891d9898055fc6b7da54cfaa
* Version increment.0.7.0Ryan Petrello2014-08-281-0/+13
| | | | Change-Id: Icd58638f87108a0954dd26db31a22772b4d450ed
* Configure the root logger properlyStanislaw Pitucha2014-08-272-3/+2
| | | | | | | | The documentation and project template showed logging configuration which sets level INFO for module called 'root' rather than the root logger. Configure the root (default) logger instead. Change-Id: I172d06dc6b81a31c5b698e43be50ab6302d54984
* Provide `pecan.state.arguments` for inspecting controller call argumentsRyan Petrello2014-07-281-0/+4
| | | | Change-Id: Ibbd8b2f075a875b109c7309bc42e0d1f1d5ae610
* Version increment.0.6.1Ryan Petrello2014-07-101-0/+5
| | | | Change-Id: Idda4968eb448dd5fe12a069f23f29fcedfebbd09
* Version increment.Ryan Petrello2014-06-262-0/+27
| | | | Change-Id: Idac278b53431988c6a3a3dfe89fcb4156f5574c1
* Merge "Add support for specifying custom request and response implementations."Jenkins2014-06-251-2/+30
|\
| * Add support for specifying custom request and response implementations.Ryan Petrello2014-06-251-2/+30
| | | | | | | | | | | | | | | | I noticed that people using pecan have taken to writing custom webob req/resp subclasses and monkeypatching onto `pecan.request` and `pecan.response`. Let's give them what they need to do this properly. Change-Id: If0ac953e381cec3a744388000a3b3afc0ea2525c
* | Merge "Added inheritance for hooks from parent classes"Jenkins2014-06-251-2/+99
|\ \ | |/ |/|
| * Added inheritance for hooks from parent classesTihomir Trifonov2014-06-171-2/+99
| | | | | | | | | | | | | | | | | | also added hook inheritance from mixins, and adding hooks to child controllers, added as sub-controllers. Fixes bug 1330673 Change-Id: I709cece7bcce26943b254b15dc8ddac5613b1202
* | Merge "Add support for Pecan *without* thread local request/response objects"Jenkins2014-06-253-5/+61
|\ \
| * | Add support for Pecan *without* thread local request/response objectsRyan Petrello2014-05-283-5/+61
| |/ | | | | | | Change-Id: I5a5a05e1f57ef2d8ad64e925c7ffa6907b914273
* | Fix routing docs about "Interacting with the Request and Response Object"Pierre Padrixe2014-06-191-2/+2
| | | | | | | | | | | | | | | | pecan.response.text and pecan.response.status should be written instead of pecan.response.body and pecan.response.status_int Change-Id: Ie3f4011e3f299c77d464308cabfd2245ed01bb9f Closes-Bug: #1332101
* | Merge "Missing import in example"Jenkins2014-06-191-0/+1
|\ \ | |/ |/|
| * Missing import in exampleStanislaw Pitucha2014-05-271-0/+1
| | | | | | | | | | | | `import logging` is required in the example. Change-Id: I92777da13b64592d4fb064c3ee0fc9507360ca0f
* | Fix a documentation typo.Ryan Petrello2014-05-251-2/+2
|/ | | | Change-Id: I3f36528b1911a570bdcb59115a3aa61d0e5b6a04
* Version increment.0.5.0Ryan Petrello2014-04-011-1/+14
| | | | Change-Id: I34ab0eedf6a96eb77f21ec3e6b91cc3264409822
* Adding new walkthroughs for docschadlung2014-03-273-1/+484
| | | | Change-Id: I419d337e06ecc70d539823e89dd768d923b1e2c5
* Document another configuration use case for the use of `__force_dict__`.Ryan Petrello2014-03-181-6/+12
| | | | | Change-Id: I74ab3b38adad456440df728d54843bbcbbad1ee3 Fixes bug: 1293545
* Version increment.0.4.5Ryan Petrello2014-02-191-0/+8
| | | | Change-Id: Ic3333885875af332f751dc46cfa7ef67d03f20c5
* Add improved documentation for `pecan.request` and `pecan.response`.Ryan Petrello2014-02-181-0/+28
| | | | | Change-Id: I6f27e5a352000758b959f70d19261389a3ea97b7 Closes-Bug: 1276869
* Improve pecan documentation and correct intersphinx references.Ryan Petrello2014-01-1918-180/+233
| | | | Change-Id: Iac6229a2727a3c662d3fe9e83e1aa02ef648f025
* Merge "Fix typos in documents and comments"Jenkins2014-01-182-3/+3
|\
| * Fix typos in documents and commentsChang Bo Guo2013-12-102-3/+3
| | | | | | | | | | | | | | | | | | Fix typos detected by toolkit misspellings. * pip install misspellings * git ls-files | grep -v locale | misspellings -f - Change-Id: I3d7c06bcc3b5d0cdf82b8da98a7fba15e935cab6
* | Version increment.0.4.4Ryan Petrello2014-01-071-0/+5
| | | | | | | | Change-Id: Icc610b720c512a633cb8b50db3837364d41be19c
* | Version increment.0.4.3Ryan Petrello2013-12-171-0/+7
|/ | | | Change-Id: I9a4d128ce2ad9e26ebebec1f90c579622f55aeca
* Version increment.0.4.2Ryan Petrello2013-09-271-0/+4
| | | | Change-Id: Ieb0de1a38c5d015a8df07da9e5df7a36b6214c51
* Including a `venv` tox environment so we can release via OpenStack CI.0.4.1Ryan Petrello2013-09-271-1/+1
| | | | Change-Id: I42559526c951301a812910f4e48de8ac5221613a
* Version increment.0.4.0Ryan Petrello2013-09-271-1/+1
| | | | | | | Dependencies changed (we removed simplegeneric and replaced it with singledispatch), so we should probably release a new major version. Change-Id: Ic618d8998ec6f90806dc5fc84451f2ad616f1e66
* Version increment.Ryan Petrello2013-09-271-0/+11
| | | | Change-Id: Id6d78c43b1c4a2de75d5419c606d7af1e9c48ea1
* Replace simplegeneric with singledispatch (PEP 443).Ryan Petrello2013-09-221-4/+2
| | | | | Closes-Bug: #1226813 Change-Id: I1ba149ac00353460065d4cddbe3ccd8782aaa611
* Merge "Document and test the uwsgi plugin."Jenkins2013-09-011-11/+2
|\
| * Document and test the uwsgi plugin.Ryan Petrello2013-08-291-11/+2
| | | | | | | | Change-Id: I97449c5238ac8c8a9dbc334e628c4f7a414ff896
* | Fix an RST heading.Ryan Petrello2013-08-291-1/+1
|/ | | | Change-Id: I0a4068eb5624c2d9df54ce695ae9616725b0091b
* Update docs and package metadata to reflect gerrit review process.Ryan Petrello2013-08-131-3/+3
| | | | Change-Id: I5cc6cfa31bb899ea32f6d9cb37d86dc0275d09fc
* Version increment.0.3.2Ryan Petrello2013-08-121-0/+7
|
* Adding some clarification to the file upload docs, at Ryan's request.Jonathan LaCour2013-08-121-0/+1
|