summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | Stubbing out a section for deploymnet recipes.Ryan Petrello2011-09-021-0/+4
| | | |
| | * | Removing a link to nonexistant celery docs.Ryan Petrello2011-09-021-1/+0
| | | |
| | * | Removing a link to nonexistant celery docs.Ryan Petrello2011-09-021-0/+0
| | | |
| | * | Adding a recipe for using Beaker for session management.Ryan Petrello2011-09-021-0/+36
| | | |
| | * | Cleaning up some dead documentation links.Ryan Petrello2011-09-022-1/+0
| | | |
| | * | Documentation updates.Ryan Petrello2011-09-024-179/+130
| | | |
| * | | Merge branch 'master' of github.com:pecan/pecanJeremy M. Jones2011-09-024-46/+74
| |\ \ \ | | | |/ | | |/|
| | * | Improving security documentation.Jonathan LaCour2011-09-021-23/+46
| | | |
| | * | Improving security documentation a little bit.Jonathan LaCour2011-09-021-3/+10
| | | |
| | * | Improving the documentation for after_commit.Jonathan LaCour2011-09-022-6/+4
| | | |
| | * | Improving the routing documentation.Jonathan LaCour2011-09-021-16/+16
| | | |
| * | | Removed ability to run "pecan serve {{ module }}" (as config file).Jeremy M. Jones2011-09-023-21/+4
| |/ /
| * | Merge pull request #14 from ryanpetrello/masterRyan Petrello2011-08-221-2/+2
| |\ \ | | |/ | | | pecan.abort now proxies keyword arguments through to webob.exc implementations.
| | * pecan.abort now proxies keyword arguments through to webob.exc implementations.Ryan Petrello2011-08-221-2/+2
| |/
| * Fixing a schema validation bug related to specialized RestController routing.Ryan Petrello2011-08-213-2/+68
| | | | | | | | https://github.com/pecan/pecan/issues/13
* | Merge branch 'master' of github.com:pecan/pecanMark McClain2011-08-103-3/+124
|\ \ | |/
| * Fixing a bug in the `after_commit` hook implementation.Ryan Petrello2011-07-222-3/+20
| | | | | | | | | | | | Previously, when requests resulted in an HTTP 404 (or any request that didn't end up routing to a controller), the `after_commit` would fail because the code assumed a state.controller existed.
| * Merge pull request #12 from ryanpetrello/masterRyan Petrello2011-07-181-0/+104
| |\ | | | | | | Merging in some additional unit tests for RestController
| | * More unit tests for RestController.Ryan Petrello2011-07-151-0/+104
| |/
* | move setup after plugin discovery to improve coverage reports byMark McClain2011-08-011-9/+16
|/ | | | | | | delaying app module loading there is still a lingering bug for multiprocess testing as wsgi_app is not initialized by slaves
* state.controller will always exist, so check to make sure it's not NoneMark McClain2011-06-301-1/+1
|
* state.controller should always be thereMark McClain2011-06-301-2/+1
|
* adding support for decorating a class with transactionalMark McClain2011-06-302-5/+213
|
* Merge branch 'master' of github.com:pecan/pecanMark McClain2011-06-301-22/+64
|\
| * Better routing docs.Jonathan LaCour2011-06-291-22/+64
| |
* | Set state.controller to known state at start of each request.Mark McClain2011-06-302-9/+14
|/ | | | | | | Previously, the state could float, so tests that raise errors caused the state to not reset and thus test ordering became important. Also, verified that hook test actually behaved as expected. {{BUG}}
* update listing of request.attrs for readabilityAlfredo Deza2011-06-271-40/+44
|
* Add documentation for RequestViewerHookAlfredo Deza2011-06-262-3/+184
|
* Merge pull request #10 from alfredodeza/mastercleverdevil2011-06-253-11/+311
|\ | | | | Add RequestViewerHook to Pecan (improved)
| * Gets to 100% test coverage on the hookAlfredo Deza2011-06-251-8/+41
| |
| * update tests to accomodate last changesAlfredo Deza2011-06-251-17/+13
| |
| * make sure headers are stringsAlfredo Deza2011-06-251-2/+2
| |
| * Better default outputsAlfredo Deza2011-06-251-23/+12
| |
| * Sets proper headers to a Pecan response:Alfredo Deza2011-06-241-12/+28
| | | | | | | | | | * fully configurable for terminal and or headers as output * 'X-Pecan-[item]' are set for the keys
| * Actually adding the as_dict callAlfredo Deza2011-06-241-1/+4
| |
| * Hook can make an automatic as_dict convertionAlfredo Deza2011-06-242-2/+2
| |
| * safer check for requestviewer conf keyAlfredo Deza2011-06-241-4/+3
| |
| * Adds the RequestViewerHook to the app automagicallyAlfredo Deza2011-06-241-0/+6
| |
| * Add another test for the RequestViewerHookAlfredo Deza2011-06-241-0/+6
| |
| * Add tests for the RequestViewerHookAlfredo Deza2011-06-241-5/+130
| |
| * Fix double methodAlfredo Deza2011-06-241-2/+0
| |
| * Adds the RequestViewer Hook (from pecan-raw)Alfredo Deza2011-06-241-4/+133
|/
* Merge pull request #8 from ryanpetrello/masterRyan Petrello2011-06-222-2/+106
|\ | | | | Fixing a bug in the way positional URL arguments are decoded.
| * Refining URL-decoding for positional "remainder"-type arguments.Ryan Petrello2011-06-172-25/+12
| |
| * Adding code to urldecode URL-based controller arguments and keyword arguments.Ryan Petrello2011-06-162-2/+119
| | | | | | | | e.g., /index?foo=Testing%201%202%203%21 should yield `foo => 'Testing 1 2 3!'
* | Updating docstring.Jonathan LaCour2011-06-171-0/+5
| |
* | Adding a feature for decorating methods to perform an action after aJonathan LaCour2011-06-173-261/+345
|/ | | | commit is issued by the transaction hook.
* Adding code to work around a bug in htmlfill that prevents proper supportRyan Petrello2011-06-051-1/+1
| | | | | | | for new HTML5 input types (e.g., type="search"). Details of bug and workaround can be found at: http://sourceforge.net/tracker/?func=detail&aid=3029079&group_id=91231&atid=596416
* ensure that mimetype for .json is always definedMark McClain2011-05-131-1/+3
|
* Merge pull request #1 from sontek/16ca703a5d38d97d46005cc12b820c37e2eee37b.markmcclain2011-05-042-2/+2
|\ | | | | Update the docs to point to the new url