summaryrefslogtreecommitdiff
path: root/docs/api
AgeCommit message (Collapse)Author
2014-11-10Merge pull request #1445 from bertjwregeer/fix.exceptionsSteve Piercy
Change autoclass to autoexception
2014-11-10Change autoclass to autoexceptionBert JW Regeer
Fixes #1388 or part thereof
2014-07-28Mo' features, mo' problems.Chris Rossi
2014-07-18Take mcdonc's advice. This should be easier for users to understand.Chris Rossi
2014-07-17Write the documentation.Chris Rossi
2014-04-18Corrected the comment's languagethapar
2014-04-18Typo fix "not"-->"no"thapar
2014-04-17More explicit example of set_propertyflibustenet
cleanup callback has a "request" parameter (and not "_") cleanup callback know (since 1.5) if an exception occurred or not (to commit or rollback) (same as #1302 on 1.5)
2014-02-10- Garden PR #1121Steve Piercy
2014-02-09- correct error when building docs in Sphinx:Steve Piercy
Warning, treated as error: ~/projects/pyramid/pyramid/docs/api/i18n.rst:6: WARNING: error while formatting arguments for pyramid.i18n.TranslationStringFactory: 'function' object has no attribute '__bases__'
2013-11-11Merge branch 'feature.security-apis-on-request'Chris McDonough
2013-11-09undeprecate remember/forget functions and remove ↵Chris McDonough
remember_userid/forget_userid methods from request
2013-11-07document add_adapterMichael Merickel
2013-10-30not methods, attrsChris McDonough
2013-10-28Bring change log, API docs, and deprecations in line with normal ↵Chris McDonough
policies/processes
2013-10-20fix merge conflict and prevent warning from showing up during testing (dont ↵Chris McDonough
import ITemplateRenderer)
2013-10-20fix merge conflictChris McDonough
2013-10-19modify the docs for the renderer interfacesMichael Merickel
2013-10-19update doc referencesMichael Merickel
2013-10-19update the docsMichael Merickel
2013-10-08Subclass HTTPBadCSRFToken from HTTPBadRequest and have ↵Karl O. Pinc
request.session.check_csrf_token use the new exception. This supports a more fine-grained exception trapping.
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