| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-08-12 | remove the "thread" reference | Michael Merickel | |
| 2013-08-12 | Minor fixes suggested by @tshepang and @mmerickel thanks! | Amos Latteier | |
| 2013-08-12 | Add documentation for creating and firing custom events. See issue #982. | Amos Latteier | |
| 2013-08-08 | "behavor" to "behavior" | tisdall | |
| 2013-08-08 | changed "obect" to "object" | tisdall | |
| 2013-07-24 | add not_ predicate feature | Chris McDonough | |
| 2013-04-07 | fix some cross-references | Tshepang Lekhonkhobe | |
| 2013-03-14 | Added an options argument to pyramid.paste.get_appsettings, just like ↵ | Georges Dubus | |
| get_app, that can be used to get the settings when interpolation is used in the config file. | |||
| 2013-02-09 | Merge pull request #836 from davidjb/public-predicate-mismatch | Chris McDonough | |
| Document PredicateMismatch for exception contexts | |||
| 2013-02-09 | grammar | Tshepang Lekhonkhobe | |
| 2013-01-31 | Document PredicateMismatch for exception contexts | David\ Beitey | |
| 2013-01-30 | use the more appropriate directives | Tshepang Lekhonkhobe | |
| 2013-01-29 | Merge pull request #815 from tshepang/temp | Tres Seaver | |
| some pyramid.config API documentation improvements | |||
| 2013-01-29 | replace 'note' with the more correct 'versionadded' directive | Tshepang Lekhonkhobe | |
| 2013-01-23 | pyramid.config: take advantage of some Sphinx directives | Tshepang Lekhonkhobe | |
| * versionadded * versionchanged * deprecated | |||
| 2013-01-15 | another grammar fix | Tshepang Lekhonkhobe | |
| 2013-01-07 | redundant statement: the links preceeding the statement target the info ↵ | Tshepang Lekhonkhobe | |
| referred to | |||
| 2013-01-02 | eliminate other repeated words | Tshepang Lekhonkhobe | |
| 2013-01-01 | eliminate repeated "the" words | Tshepang Lekhonkhobe | |
| 2013-01-01 | Small fix for RST misfire. | Paul Everitt | |
| 2012-11-20 | coverage | Chris McDonough | |
| 2012-11-04 | merged SHA512AuthTktAuthenticationPolicy into AuthTktAuthenticationPolicy | Michael Merickel | |
| AuthTktAuthenticationPolicy now accepts a hashalg parameter and is no longer deprecated. Docs recommend overriding hashalg and using 'sha512'. | |||
| 2012-11-04 | fix docs, upgrade tutorials, add change note, deprecate using ↵ | Chris McDonough | |
| zope.deprecation instead of a warning, make hashalg arg a kwarg in certain cases in case someone (maybe me) is using nonapi function imports from authentication | |||
| 2012-11-04 | Merge branch 'feature.sha512_auth' of git://github.com/iElectric/pyramid ↵ | Chris McDonough | |
| into iElectric-feature.sha512_auth | |||
| 2012-10-30 | updated authentication policy api documentation | Michael Merickel | |
| 2012-10-14 | Add BasicAuthAuthenticationPolicy to Sphinx documentation. Move ↵ | Chris Rossi | |
| Repoze1AuthenticationPolicy lower in the list. | |||
| 2012-09-23 | Add SHA512AuthTktAuthenticationPolicy and deprecate AuthTktAuthenticationPolicy | Domen Kožar | |
| 2012-09-19 | add check_csrf convenience function | Chris McDonough | |
| 2012-09-16 | make use_tweens=False the default | Chris McDonough | |
| 2012-09-16 | make use_tweens=True the default, add some more tests | Chris McDonough | |
| 2012-09-16 | rename subrequest to invoke_subrequest | Chris McDonough | |
| 2012-09-16 | docs and test | Chris McDonough | |
| 2012-09-16 | add docs | Chris McDonough | |
| 2012-09-15 | merge jinty's testConfig code | Chris McDonough | |
| 2012-09-15 | add pyramid.decorator.reify as an API. Closes #682 | Chris McDonough | |
| 2012-09-09 | rename set_request_method to add_request_method. closes #683 | Chris McDonough | |
| 2012-09-09 | - The ``pyramid.settings.get_settings()`` API was removed. It had been | Chris McDonough | |
| printing a deprecation warning since Pyramid 1.0. If your code depended on this API, use ``pyramid.threadlocal.get_current_registry().settings`` instead or use the ``settings`` attribute of the registry available from the request (``request.registry.settings``). | |||
| 2012-09-09 | remove docs for chameleon_zpt and chameleon_text (gone) | Chris McDonough | |
| 2012-08-16 | readd set_request_property to docs (just so when people run across it in ↵ | Chris McDonough | |
| in-the-wild code they're not totally confused); we'll remove it later | |||
| 2012-08-16 | docs-deprecated set_request_property | Michael Merickel | |
| 2012-08-15 | - An ``add_permission`` directive method was added to the Configurator. This | Chris McDonough | |
| directive registers a free-standing permission introspectable into the Pyramid introspection system. Frameworks built atop Pyramid can thus use the the ``permissions`` introspectable category data to build a comprehensive list of permissions supported by a running system. Before this method was added, permissions were already registered in this introspectable category as a side effect of naming them in an ``add_view`` call, this method just makes it possible to arrange for a permission to be put into the ``permissions`` introspectable category without naming it along with an associated view. Here's an example of usage of ``add_permission``:: config = Configurator() config.add_permission('view') | |||
| 2012-08-06 | move stuff from config.util to registry so it can be a set of API (which are ↵ | Chris McDonough | |
| now documented), resolve deferred discriminators in introspectable.register so that a directive can depend on a deferred discriminator, put head-adding code in predicate instead of in add_view itself | |||
| 2012-08-06 | add docs for third-party view predicates | Chris McDonough | |
| 2012-06-16 | A context manager for test setup | Brian Sutherland | |
| 2012-04-16 | docs for json defaults | Michael Merickel | |
| 2012-03-28 | JSON-API rework and Object.__json__ support | Wayne Witzel III | |
| 2012-03-28 | intermediate commit | Michael Merickel | |
| 2012-02-24 | docs-deprecate tmpl_context | Chris McDonough | |
| 2012-02-24 | More trivial typos | Paul Winkler | |
| 2012-02-22 | - New APIs: ``pyramid.response.FileResponse`` and | Chris McDonough | |
| ``pyramid.response.FileIter``, for usage in views that must serve files "manually". | |||
