| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-08-17 | run linkcheck, fix redirects, change busted links to inline literals | Steve Piercy | |
| 2019-07-23 | Dive into Python -> Dive into Python 3 | Mandar Vaze | |
| Addressed the review comments | |||
| 2019-07-20 | Fixed broken link to "Dive into Python" | Mandar Vaze | |
| 2018-10-03 | Change references to "py.test" in narrative documentation | Paul Cutler | |
| Change reference of "py.test" to "pytest" per pytest 3.0 release in the project and testing pages of narrative documentation | |||
| 2018-08-30 | Update narr/testing.rst to updated files in narr/myproject/ | Steve Piercy | |
| 2018-08-18 | Clean up code-blocks in testing | Steve Piercy | |
| 2017-07-03 | Link context manager term to glossary | Steve Piercy | |
| 2017-06-10 | update src files and synch emphasize-lines for myproject | Steve Piercy | |
| 2016-12-27 | quick_tutorial - refactor MyProject/myproject for cookiecutters | Steve Piercy | |
| 2016-04-12 | update testing.rst | Steve Piercy | |
| - replace nose with py.test - use pip - use literalinclude of MyProject/setup.py instead of copy-pasta | |||
| 2015-12-14 | - Remove broken integration test example from testing and source file, per #2172 | Steve Piercy | |
| - Update functional test with explicit instructions and to sync with actual starter scaffold | |||
| 2015-10-22 | minor grammar, rewrap 79 columns, some .rst syntax fixes | Steve Piercy | |
| 2014-11-25 | Tweak seealso for the includeme function. | Matt Russell | |
| 2014-11-25 | Include code examples for integration and functional tests in docs #1001 | Matt Russell | |
| Wrap lines as per convention. | |||
| 2014-02-10 | - Garden PR #1121 | Steve Piercy | |
| 2013-10-30 | new api | Chris McDonough | |
| 2013-10-27 | Security APIs on pyramid.request.Request | Matt Russell | |
| The pyramid.security Authorization API function has_permission is made available on the request. The pyramid.security Authentication API functions are now available as properties (unauthenticated_userid, authenticated_userid, effective_principals) and methods (remember_userid, forget_userid) on pyramid.request.Request. Backwards compatibility: For each of the APIs moved to request method or property, the original API in the pyramid.security module proxies to the request. Reworked tests to check module level b/c wrappers call through to mixins for each API. Tests that check no reg on request now do the right thing. Use a response callback to set the request headers for forget_userid and remember_userid. Update docs. Attempt to improve a documentation section referencing the pyramid.security.has_permission function in docs/narr/resources.rst Ensures backwards compatiblity for `pyramid.security.forget` and `pyramid.security.remember`. | |||
| 2013-04-23 | add a note about missing code | Tshepang Lekhonkhobe | |
| 2013-04-22 | Merge pull request #997 from tshepang/patch-2 | Michael Merickel | |
| add missing comma | |||
| 2013-04-22 | Merge pull request #999 from tshepang/patch-5 | Tres Seaver | |
| replace deprecated method | |||
| 2013-04-23 | replace deprecated method | Tshepang Lekhonkhobe | |
| 2013-04-23 | replace deprecated method | Tshepang Lekhonkhobe | |
| 2013-04-23 | add missing comma | Tshepang Lekhonkhobe | |
| 2013-04-22 | Merge pull request #989 from tshepang/patch-2 | Tres Seaver | |
| add a cross-ref... hyperlinks are nice | |||
| 2013-04-21 | add a cross-ref... hyperlinks are nice | Tshepang Lekhonkhobe | |
| 2013-04-21 | remove ambiguity by indicating that the target is API documentation | Tshepang Lekhonkhobe | |
| 2013-03-31 | fix some cross-references | Tshepang Lekhonkhobe | |
| Also add webtest to intersphinx_mapping | |||
| 2013-03-03 | No preposition needed at all. ;) | Tres Seaver | |
| 2013-02-27 | should be one word | Tshepang Lekhonkhobe | |
| 2012-09-15 | merge jinty's testConfig code | Chris McDonough | |
| 2012-08-30 | Fixed broken link in docs/narr/testing.rst | Ronan Amicel | |
| Fixed link to "Dive into Python" (previous mirror is down). | |||
| 2012-06-16 | A context manager for test setup | Brian Sutherland | |
| 2012-02-24 | Trivial typos | Paul Winkler | |
| 2011-10-23 | updated Dive Into Python link | Cypha | |
| 2011-06-11 | - Pyramid now expects Response objects to have a __call__ | Chris McDonough | |
| method which implements the WSGI application interface instead of the three webob attrs status, headerlist and app_iter. Backwards compatibility exists for code which returns response objects that do not have a __call__. - pyramid.response.Response is no longer an exception (and therefore cannot be raised in order to generate a response). - Changed my mind about moving stuff from pyramid.httpexceptions to pyramid.response. The stuff I moved over has been moved back to pyramid.httpexceptions. | |||
| 2011-05-31 | the canonical import location for HTTP exceptions/responses is now ↵ | Chris McDonough | |
| pyramid.response | |||
| 2011-01-27 | module name contractions | Chris McDonough | |
| 2011-01-19 | - Fix deprecated example showing ``chameleon_zpt`` API call in testing | Chris McDonough | |
| narrative chapter. | |||
| 2011-01-18 | Merge https://github.com/Pylons/pyramid | Casey Duncan | |
| 2011-01-18 | - Most references to ZCML in narrative chapters have been removed or | Chris McDonough | |
| redirected to ``pyramid_zcml`` locations. | |||
| 2011-01-16 | remove reference to obsolete begin() method | Casey Duncan | |
| 2011-01-16 | simplify and shorten long sentence | Casey Duncan | |
| 2011-01-16 | move however for better flow | Casey Duncan | |
| 2011-01-12 | Features | Chris McDonough | |
| -------- - ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` have been undeprecated. They are now the canonical setup and teardown APIs for test configuration, replacing "direct" creation of a Configurator. This is a change designed to provide a facade that will protect against any future Configurator deprecations. Paster Templates ---------------- - All paster templates now use ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` rather than creating a Configurator "by hand" within their ``tests.py`` module, as per decision in features above. Documentation ------------- - The wiki and wiki2 tutorials now use ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` rather than creating a Configurator "by hand", as per decision in features above. - The "Testing" narrative chapter now explains ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` instead of Configurator creation and ``Configurator.begin()`` and ``Configurator.end()``. | |||
| 2010-12-19 | typo | Chris McDonough | |
| 2010-12-19 | cunctional -> functional | Chris McDonough | |
| 2010-12-19 | add functional testing example | Chris McDonough | |
