summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/next'0.2.4Ryan Petrello2013-05-0726-486/+1012
|\
| * Version increment.Ryan Petrello2013-05-073-3/+8
| |
| * Merge pull request #198 from ryanpetrello/rest-controller-lookup-supportmarkmcclain2013-05-073-17/+276
| |\ | | | | | | Add support for ``_lookup`` methods as a fallback in RestController.
| | * Miscellaneous pecan.routing cleanup.Ryan Petrello2013-05-061-2/+3
| | |
| | * Add support for ``_lookup`` methods as a fallback in RestController.Ryan Petrello2013-03-193-17/+275
| | |
| * | Merge pull request #213 from dhellmann/doc-cleanupRyan Petrello2013-05-0620-466/+728
| |\ \ | | | | | | | | Clean up and update docs
| | * | Address review commentsDoug Hellmann2013-05-064-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A few typos and other changes based on the comments from reviewing the previous changeset. Change-Id: I0457db3496997586ad8e0432eea3eeda1641fae8 Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
| | * | Clean up and update docsDoug Hellmann2013-05-0320-466/+728
| |/ / | | | | | | | | | | | | | | | | | | | | | Clean up some formatting issues in doc sources and smooth out some wording. Change-Id: I2bb2c9a32d67b71deeb7fcc13fd6a2949b4e195b Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
* | | Merge branch 'next', remote-tracking branch 'origin'0.2.3Ryan Petrello2013-04-250-0/+0
|/ /
* | Version increment.Ryan Petrello2013-04-253-3/+14
| |
* | Merge branch 'master' into nextRyan Petrello2013-04-253-3/+13
|\ \
| * | Increment version number.0.2.2Ryan Petrello2013-04-093-3/+13
| | |
* | | Merge pull request #200 from markmcclain/env_fixRyan Petrello2013-04-252-27/+26
|\ \ \ | | | | | | | | Env fix
| * | | add comment explaining why the code was reorderedMark McClain2013-04-251-0/+1
| | | |
| * | | os.environ test clean-up and reorder overwriteMark McClain2013-04-252-27/+25
| | | | | | | | | | | | | | | | fixes issue 197
* | | | Merge pull request #211 from ryanpetrello/nextmarkmcclain2013-04-253-4/+21
|\ \ \ \ | |/ / / |/| | | Remove some unnecessary cruft and improve test coverage for core.py
| * | | Merge branch 'next' of github.com:dreamhost/pecan into nextRyan Petrello2013-04-254-80/+88
| |\ \ \ | |/ / / |/| | | | | | | | | | | Conflicts: pecan/core.py
* | | | Merge pull request #208 from ryanpetrello/perfmarkmcclain2013-04-244-82/+90
|\ \ \ \ | | | | | | | | | | Improve performance for general pecan request handling.
| * | | | More tinkering on performant Accept method handling.Ryan Petrello2013-04-241-33/+29
| | | | |
| * | | | More pecan optimizations.Ryan Petrello2013-04-241-2/+3
| | | | |
| * | | | Improve performance for general pecan request handling.Ryan Petrello2013-04-244-89/+100
| | | | |
* | | | | Merge pull request #210 from ryanpetrello/nextmarkmcclain2013-04-241-8/+6
|\ \ \ \ \ | | | | | | | | | | | | Rearrange quickstart verbiage so users don't miss a necessary step.
* \ \ \ \ \ Merge pull request #207 from ryanpetrello/nextJonathan LaCour2013-04-232-2/+46
|\ \ \ \ \ \ | | |/ / / / | |/| | | | Resolve a bug in TransactionHook.
* | | | | | Merge pull request #206 from ryanpetrello/nextJonathan LaCour2013-04-123-0/+44
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Store exceptions raised by ``abort`` in the WSGI environ.
| | | | * | Add coverage configuration.Ryan Petrello2013-04-251-0/+3
| | | | | |
| | | | * | Remove some unnecessary cruft and improve test coverage for core.pyRyan Petrello2013-04-252-4/+18
| | | |/ /
| | | * | Rearrange quickstart verbiage so users don't miss a necessary step.Ryan Petrello2013-04-241-8/+6
| | |/ /
| | * | Resolve a bug in TransactionHook.Ryan Petrello2013-04-172-2/+46
| |/ / | | | | | | | | | | | | This commit makes TransactionHook more robust so that it isn't as susceptible to failure when exceptions occur in *other* PecanHooks within a request.
| * | Store exceptions raised by ``abort`` in the WSGI environ.Ryan Petrello2013-04-093-0/+44
|/ / | | | | | | This makes it easier to access the original exception later in the request cycle (e.g., other middleware or in custom error handlers).
* | Merge pull request #205 from ryanpetrello/nextmarkmcclain2013-04-095-19/+2401
|\ \ | |/ |/| Unobfuscate syntax highlighter JS for debian packaging.
| * Unobfuscate syntax highlighter JS for debian packaging.Ryan Petrello2013-04-095-19/+2401
|/
* Merge pull request #197 from ryanpetrello/environment-variable-patchJonathan LaCour2013-03-192-6/+7
|\ | | | | Improved test cleanup for environment-variable-based configuration.
| * Improved test cleanup for environment-variable-based configuration.Ryan Petrello2013-03-132-6/+7
| |
* | Merge pull request #196 from ryanpetrello/improved-scaffolding-testsJonathan LaCour2013-03-195-302/+179
|\ \ | | | | | | Extract the scaffold-building tests into tox.
| * | Extract the scaffold-building tests into tox.Ryan Petrello2013-03-135-302/+179
| |/ | | | | | | A lot of code was being utilized to provide a *much* slower version of what tox already provides. This changes scaffold-building tests to run in tox across Python versions.
* | Merge pull request #190 from ryanpetrello/bug-nested-deleteJonathan LaCour2013-03-192-2/+62
|\ \ | | | | | | Fix a bug in DELETE methods in two (or more) nested RestControllers.
| * | Fix a bug in DELETE methods in two (or more) nested RestControllers.Ryan Petrello2013-03-124-7/+67
| | |
* | | Merge pull request #201 from ryanpetrello/nextmarkmcclain2013-03-1315-70/+107
|\ \ \ | | |/ | |/| Improve runtime configuration cleanup for tests.
| * | More cleanup for configuration resetting.Ryan Petrello2013-03-132-3/+3
| | |
| * | Improve runtime configuration cleanup for tests.Ryan Petrello2013-03-1315-70/+107
| | |
* | | Merge pull request #195 from ryanpetrello/nextmarkmcclain2013-03-121-4/+2
|\ \ \ | |/ / | | | Attempt to resolve an issue that causes tests to fail in Travis-CI.
| * | Attempt to resolve an issue that causes tests to fail in Travis-CI.Ryan Petrello2013-03-121-4/+2
| | |
* | | Merge pull request #189 from ryanpetrello/doc-updateJonathan LaCour2013-03-121-0/+29
|\ \ \ | |/ / |/| | Add documentation for returning specific HTTP status codes.
| * | Add documentation for returning specific HTTP status codes.Ryan Petrello2013-03-121-0/+29
| |/
* | Merge pull request #186 from alfredodeza/env_varRyan Petrello2013-03-011-0/+10
|\ \ | | | | | | improve the tearDown method as it was contaminating the global config
| * | improve the tearDown method as it was contaminating the global configAlfredo Deza2013-03-011-0/+10
| | |
* | | Merge pull request #174 from alfredodeza/env_varRyan Petrello2013-03-018-39/+141
|\ \ \ | |/ / | | | Environment Variable implementation
| * | fix wording in documentationAlfredo Deza2013-02-281-9/+9
| | |
| * | add a teardown to prevent pollution of ENVAlfredo Deza2013-02-271-0/+3
| | |
| * | only when config is None fallback to conf_from_envAlfredo Deza2013-02-271-1/+2
| | |