summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-26Add support for static routesJohn Anderson
2014-12-26Added 2 more tests directly to the util functionJohn Anderson
2014-12-26Merge pull request #1501 from stevepiercy/masterSteve Piercy
- establish minimum version of 1.2.3 for Sphinx. I hope this works. See ...
2014-12-26- establish minimum version of 1.2.3 for Sphinx. I hope this works. See ↵Steve Piercy
https://github.com/Pylons/pyramid/issues/1068
2014-12-26Merge pull request #1500 from stevepiercy/masterSteve Piercy
- adding back .png file because PDF cannot include and build SVG files. ...
2014-12-26- adding back .png file because PDF cannot include and build SVG files. Also ↵Steve Piercy
renamed images to use a 'imagename.*' wildcard so that the correct format is chosen. See http://stackoverflow.com/questions/6473660/using-sphinx-docs-how-can-i-specify-png-image-formats-for-html-builds-and-pdf-im
2014-12-26Add test to show usage of custom response classJohn Anderson
2014-12-26Refactored how `ResponseClass` is used so it can be overriddenJohn Anderson
2014-12-25Add support for passing unbound class methods to `add_view`John Anderson
2014-12-25Add the --format flagJohn Anderson
2014-12-25Added test for the view globJohn Anderson
2014-12-23Add a --glob option to limit outputMarc Abramowitz
E.g.: $ proutes development.ini --glob='user*' Name Pattern View Method ---- ------- ---- ------ user /profilesvc/v1/user/{user_id} pyramid.config.views.<pyramid.config.views.MultiView object at 0x106f72bd0> * user /profilesvc/v1/user/{user_id} cornice.service.wrapper GET,HEAD
2014-12-23Merge pull request #1496 from stevepiercy/masterSteve Piercy
- add an index to the API directory for better SEO
2014-12-23- add an index to the API directory for better SEOSteve Piercy
2014-12-23Merge pull request #1479 from stevepiercy/masterSteve Piercy
replace router.png with pyramid_router.svg and make design consistent
2014-12-23- remove pyramid_router.png because an .svg version is available per @tseaverSteve Piercy
2014-12-18Speed up Travis start via 'sudo: false'.Tres Seaver
2014-12-16Merge branch 'AdrianTeng-master'Chris McDonough
2014-12-1679 colsChris McDonough
2014-12-16repoze who docs movedChris McDonough
2014-12-16Merge branch 'master' of https://github.com/AdrianTeng/pyramid into ↵Chris McDonough
AdrianTeng-master
2014-12-16Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2014-12-17Add documentation on handling CORS pre-flightsAdrian Teng
2014-12-14Added support for `not_` request_method checksJohn Anderson
2014-12-14Switch tox back to 2.6, was supposed to be localJohn Anderson
2014-12-14Fix py26 supportJohn Anderson
2014-12-14Fix checks for @wsgiapp2, MultiView, and add request methodJohn Anderson
2014-12-10Revise URL Dispatch documentation to use config.scan() in Examples 1, 2, and 3Zack Marvel
In response to #600.
2014-12-09Move coverage floor pct into 'setup.cfg'.Tres Seaver
2014-12-05Support returning app_iter from renderer.Laurence Rowe
Sets `response.app_iter = result` for renderer results which are iterable and not text/bytes.
2014-12-01replace router.png with pyramid_router.svg and make design consistentSteve Piercy
2014-12-01Merge pull request #1478 from stevepiercy/masterSteve Piercy
- rename pyramid_router.svg to pyramid_request_processing.svg to be cons...
2014-12-01- rename pyramid_router.svg to pyramid_request_processing.svg to be ↵Steve Piercy
consistent with its content - add source files for future modifications
2014-11-29fix build on py3.2 missing u-prefix introduced in ↵Michael Merickel
ec5226745f8f5161f89636e036e2b8efed216b74
2014-11-27fix issue in auth_tkt parsing with the cookie type being unicodeMichael Merickel
In webob the cookies are always unicode but the auth_tkt tests were expecting them to be a native string. This didn't manifest itself until we started using the ``hmac.compare_digest`` which fails if the types are not the same. Fixes #1477
2014-11-26Merge pull request #1475 from hugobranquinho/masterTres Seaver
Shortcut for package name on registry
2014-11-26Merge pull request #1472 from stevepiercy/masterTres Seaver
add request processing diagram to docs/narr/router.rst
2014-11-26Merge branch 'master' of github.com:Pylons/pyramidTres Seaver
2014-11-2679 columns.Tres Seaver
2014-11-26Unused import.Tres Seaver
2014-11-26Merge pull request #1467 from mgrbyte/fix.issue1001Tres Seaver
Include code examples for integration and functional tests in docs.
2014-11-25Tweak seealso for the includeme function.Matt Russell
2014-11-25Include code examples for integration and functional tests in docs #1001Matt Russell
Wrap lines as per convention.
2014-11-25Documentation addedHugo Branquinho
2014-11-25Shortcut for package name on registryHugo Branquinho
2014-11-22add request processing diagram to docs/narr/router.rstSteve Piercy
2014-11-21test to see if files are shared between buildsMichael Merickel
2014-11-21update changelog for #1469Michael Merickel
2014-11-21update changelogMichael Merickel
2014-11-21update tox/travis to check code coverage on py3Michael Merickel
coverage is combined between py2 and py3 for an aggregate coverage metric. This means we can stop putting "no cover" gates around py3 code and ignoring whether it's ever tested.