summaryrefslogtreecommitdiff
path: root/pecan
Commit message (Expand)AuthorAgeFilesLines
* Remove a routing optimization that breaks the WSME pecan plugin.Ryan Petrello2013-09-271-17/+14
* Merge "core: do not try to set response body to None"Jenkins2013-09-262-1/+18
|\
| * core: do not try to set response body to NoneJulien Danjou2013-09-262-1/+18
* | Merge "Squeeze some more performance out of the WSGI __call__ and dispatch al...Jenkins2013-09-263-58/+66
|\ \ | |/ |/|
| * Squeeze some more performance out of the WSGI __call__ and dispatch algorithm.Ryan Petrello2013-09-253-58/+66
* | Replace simplegeneric with singledispatch (PEP 443).Ryan Petrello2013-09-222-12/+25
|/
* Document and test the uwsgi plugin.Ryan Petrello2013-08-291-6/+24
* Merge pull request #228 from ryanpetrello/nextmarkmcclain2013-08-093-5/+36
|\
| * Add a deprecation warning for ``pecan.conf.requestviewer``.Ryan Petrello2013-08-093-5/+36
* | Merge pull request #227 from ryanpetrello/routing_lookup_bugmarkmcclain2013-08-082-0/+36
|\ \
| * | Fix a routing bug for certain _lookup controller configurations.Ryan Petrello2013-08-082-0/+36
| |/
* | Merge pull request #226 from ryanpetrello/nextmarkmcclain2013-08-084-52/+34
|\ \ | |/
| * Make some notable changes to how ``pecan.conf.app`` is passed to a new app.Ryan Petrello2013-08-084-52/+34
* | Allow on_error hooks to return a Response.Kiall Mac Innes2013-07-202-4/+43
|/
* Remove an extraneous import.Ryan Petrello2013-05-071-2/+0
* Merge remote-tracking branch 'origin/next' into py3kRyan Petrello2013-05-073-17/+276
|\
| * Merge pull request #198 from ryanpetrello/rest-controller-lookup-supportmarkmcclain2013-05-073-17/+276
| |\
| | * 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
* | | Remove some cruft from the middleware static resource loader.Ryan Petrello2013-05-071-4/+0
* | | Remove a hard-coded UTF-8 assumption.Ryan Petrello2013-05-031-7/+1
* | | Fix a Py3 compatability issue with WebTest > 1.3.1 < 2.0Ryan Petrello2013-05-031-1/+1
* | | General import and flake8 cleanup.Ryan Petrello2013-05-037-30/+16
* | | Remove an unused import.Ryan Petrello2013-05-031-2/+0
* | | Avoid a potential encoding exception when rendering Genshi errors.Ryan Petrello2013-05-031-1/+1
* | | Remove some unnecessary cruft.Ryan Petrello2013-05-031-1/+1
* | | Read/compile configuration files as binary to avoid encoding issues.Ryan Petrello2013-05-031-5/+2
* | | Replace ``pecan.compat.dictconfig`` with ``logutils.dictconfig.dictConfig``.Ryan Petrello2013-05-034-1296/+1
* | | Use Python3's print function.Ryan Petrello2013-05-032-1/+5
* | | Add a docstring.Ryan Petrello2013-05-011-0/+6
* | | Run Genshi tests for Python3 (support was added in Genshi 0.7).Ryan Petrello2013-05-011-1/+1
* | | More misc. Python3 cleanup.Ryan Petrello2013-05-012-5/+2
* | | Use html.escape rather than cgi.escape for PY3 (it's deprecated)Ryan Petrello2013-05-011-4/+12
* | | Refactor remnants of pecan.compat with alternatives from the six package.Ryan Petrello2013-05-012-34/+17
* | | Add scaffold tests for Python 3.2/3.3.Ryan Petrello2013-04-301-6/+9
* | | Fix a Py3 compatability bug in `pecan.jsonify`.Ryan Petrello2013-04-304-64/+89
* | | Fix an issue with Python3 compatability in `pecan shell`.Ryan Petrello2013-04-301-0/+6
* | | Resolve a few differences in TypeError messaging in Python 3.3.Ryan Petrello2013-04-301-2/+8
* | | Replace the OptionParser constructor version with parser.add_argumentRyan Petrello2013-04-301-3/+5
* | | Fix a PY3-bug when using ``transcational`` as a class decorator.Ryan Petrello2013-04-301-2/+7
* | | Fix a pep8 failure.Ryan Petrello2013-04-301-2/+3
* | | Defined the HooksController metaclass in a Py2/3-compatible way.Ryan Petrello2013-04-301-5/+14
* | | Cast configuration.Config.__dir__ to a list (not a PY3 dictkeys object)Ryan Petrello2013-04-301-1/+1
* | | Cleanup and add a ton of bytes() compatability for tests.Ryan Petrello2013-04-3012-259/+268
* | | More miscellaneous PY3 compatability issues.Ryan Petrello2013-04-305-14/+30
* | | More urllib import changes.Ryan Petrello2013-04-301-2/+3
* | | Remove `basestring` references for PY3 support.Ryan Petrello2013-04-303-7/+11
* | | Remove unicode markers.Ryan Petrello2013-04-302-4/+4
* | | Fix PY3 urllib2 import changes.Ryan Petrello2013-04-301-5/+10
* | | Don't run tests for dictconfig fallback in PY3 (it doesn't need them)Ryan Petrello2013-04-301-688/+693