summaryrefslogtreecommitdiff
path: root/docs/api
AgeCommit message (Collapse)Author
2013-09-08- The ``renderer_globals_factory`` argument to theChris McDonough
``pyramid.config.Configurator` constructor and its ``setup_registry`` method has been removed. The ``set_renderer_globals_factory`` method of ``pyramid.config.Configurator`` has also been removed. The (internal) ``pyramid.interfaces.IRendererGlobals`` interface was also removed. These arguments, methods and interfaces had been deprecated since 1.1. Use a ``BeforeRender`` event subscriber as documented in the "Hooks" chapter of the Pyramid narrative documentation instead of providing renderer globals values to the configurator.
2013-09-08- Removed the ``pyramid.view.is_response`` function that had been deprecatedChris McDonough
since Pyramid 1.1. Use the ``pyramid.request.Request.is_response`` method instead.
2013-09-08- Removed the class named ``pyramid.view.static`` that had been deprecatedChris McDonough
since Pyramid 1.1. Instead use ``pyramid.static.static_view`` with ``use_subpath=True`` argument.
2013-09-07- The ``pyramid.events.NewResponse`` event is now sent **after** responseChris McDonough
callbacks are executed. It previously executed before response callbacks were executed. Rationale: it's more useful to be able to inspect the response after response callbacks have done their jobs instead of before. Closes #1116.
2013-09-05remove the deprecated request.response_* attributesMichael Merickel
2013-08-29make local_name an attribute of Request, move logic from get_localizer into ↵Chris McDonough
Request.localizer, fix docs; closes #1099
2013-08-12remove the "thread" referenceMichael Merickel
2013-08-12Minor fixes suggested by @tshepang and @mmerickel thanks!Amos Latteier
2013-08-12Add documentation for creating and firing custom events. See issue #982.Amos Latteier
2013-08-08"behavor" to "behavior"tisdall
2013-08-08changed "obect" to "object"tisdall
2013-07-24add not_ predicate featureChris McDonough
2013-04-07fix some cross-referencesTshepang Lekhonkhobe
2013-03-14Added 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-09Merge pull request #836 from davidjb/public-predicate-mismatchChris McDonough
Document PredicateMismatch for exception contexts
2013-02-09grammarTshepang Lekhonkhobe
2013-01-31Document PredicateMismatch for exception contextsDavid\ Beitey
2013-01-30use the more appropriate directivesTshepang Lekhonkhobe
2013-01-29Merge pull request #815 from tshepang/tempTres Seaver
some pyramid.config API documentation improvements
2013-01-29replace 'note' with the more correct 'versionadded' directiveTshepang Lekhonkhobe
2013-01-23pyramid.config: take advantage of some Sphinx directivesTshepang Lekhonkhobe
* versionadded * versionchanged * deprecated
2013-01-15another grammar fixTshepang Lekhonkhobe
2013-01-07redundant statement: the links preceeding the statement target the info ↵Tshepang Lekhonkhobe
referred to
2013-01-02eliminate other repeated wordsTshepang Lekhonkhobe
2013-01-01eliminate repeated "the" wordsTshepang Lekhonkhobe
2013-01-01Small fix for RST misfire.Paul Everitt
2012-11-20coverageChris McDonough
2012-11-04merged SHA512AuthTktAuthenticationPolicy into AuthTktAuthenticationPolicyMichael Merickel
AuthTktAuthenticationPolicy now accepts a hashalg parameter and is no longer deprecated. Docs recommend overriding hashalg and using 'sha512'.
2012-11-04fix 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-04Merge branch 'feature.sha512_auth' of git://github.com/iElectric/pyramid ↵Chris McDonough
into iElectric-feature.sha512_auth
2012-10-30updated authentication policy api documentationMichael Merickel
2012-10-14Add BasicAuthAuthenticationPolicy to Sphinx documentation. Move ↵Chris Rossi
Repoze1AuthenticationPolicy lower in the list.
2012-09-23Add SHA512AuthTktAuthenticationPolicy and deprecate AuthTktAuthenticationPolicyDomen Kožar
2012-09-19add check_csrf convenience functionChris McDonough
2012-09-16make use_tweens=False the defaultChris McDonough
2012-09-16make use_tweens=True the default, add some more testsChris McDonough
2012-09-16rename subrequest to invoke_subrequestChris McDonough
2012-09-16docs and testChris McDonough
2012-09-16add docsChris McDonough
2012-09-15merge jinty's testConfig codeChris McDonough
2012-09-15add pyramid.decorator.reify as an API. Closes #682Chris McDonough
2012-09-09rename set_request_method to add_request_method. closes #683Chris McDonough
2012-09-09- The ``pyramid.settings.get_settings()`` API was removed. It had beenChris 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-09remove docs for chameleon_zpt and chameleon_text (gone)Chris McDonough
2012-08-16readd 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-16docs-deprecated set_request_propertyMichael Merickel
2012-08-15- An ``add_permission`` directive method was added to the Configurator. ThisChris 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-06move 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-06add docs for third-party view predicatesChris McDonough
2012-06-16A context manager for test setupBrian Sutherland