summaryrefslogtreecommitdiff
path: root/docs/api
AgeCommit message (Collapse)Author
2016-08-31rename the credentials classMichael Merickel
2016-08-10Add docs & explict testsDariusz Górecki
2016-05-15fix headings and sufficesSteve Piercy
2016-05-10expose the IRequestFactory interfaceMichael Merickel
2016-04-19replace pyramid.require_default_csrf setting with ↵Michael Merickel
config.set_default_csrf_options
2016-04-16In addition to CSRF token, verify the origin tooDonald Stufft
Add an additional layer of protection against CSRF by verifying the actual origin of the request in addition to the CSRF token. We only do this check on sites hosted behind HTTPS because only HTTPS sites have evidence to show that the Referrer header is not being spuriously removed by random middleware boxes.
2016-04-10Add API docs for BeforeTraversalBert JW Regeer
2016-04-10Merge pull request #2021 from Pylons/feature/configurable-view-deriverMichael Merickel
configurable view deriver
2016-04-08update constraints for derivers as well as docsMichael Merickel
2016-04-07separate the viewderiver module and allow overriding the mapperMichael Merickel
2016-04-06Pass vars to logging.config.fileConfigMarc Abramowitz
This allows one to set up a logging configuration that is parameterized based on variables specified on the command-line. e.g.: the application .ini file could have: ```ini [logger_root] level = %(LOGGING_LOGGER_ROOT_LEVEL)s handlers = console [handler_console] class = StreamHandler args = (sys.stderr,) level = %(LOGGING_HANDLER_CONSOLE_LEVEL)s formatter = generic ``` This app could be launched with: ``` pserve development.ini LOGGING_LOGGER_ROOT_LEVEL=DEBUG LOGGING_HANDLER_CONSOLE_LEVEL=DEBUG ```
2016-03-14add a docstring for add_view_deriver and expose the method to the api docsMichael Merickel
2016-03-09add options support to view deriversMichael Merickel
exposed a new IViewDeriver api with an optional ``options`` list to expose support for new kwargs that may be passed to config.add_view
2016-03-03link invoke_exception_view to api docsMichael Merickel
2015-11-23expose the PickleSerializerMichael Merickel
2015-11-12update cache buster prose and add ManifestCacheBusterMichael Merickel
redux of #2013
2015-11-12Revert "fix/remove-default-cachebusters"Michael Merickel
This reverts commit 7410250313f893e5952bb2697324a4d4e3d47d22. This reverts commit cbec33b898efffbfa6acaf91cae45ec0daed4d7a. This reverts commit 345ca3052c395545b90fef9104a16eed5ab051a5, reversing changes made to 47162533af84bb8d26db6d1c9ba1e63d70e9070f.
2015-11-12complete cache buster docs using manifest exampleMichael Merickel
2015-10-21first cut at removing default cache bustersMichael Merickel
2015-05-28fix duplicate name resource_pathuralbash
2015-02-17expose public config phases in pyramid.configMichael Merickel
2015-02-17remove the token from the ICacheBuster apiMichael Merickel
This exposes the QueryStringCacheBuster and PathSegmentCacheBuster public APIs alongside the md5-variants. These should be more cleanly subclassed by people wishing to extend their implementations.
2015-02-16add InstancePropertyHelper and apply_request_extensionsMichael Merickel
2015-02-07move the IResponseFactory into the public apiMichael Merickel
2014-12-23- add an index to the API directory for better SEOSteve Piercy
2014-11-25Documentation addedHugo Branquinho
2014-11-17Merge branch 'master' into feature.security-docs-enhancementsMichael Merickel
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-11-10update the public api for rememberMichael Merickel
2014-08-13some tweaks to the usage of userid in the docsMichael Merickel
2014-08-12Docs: Make "userid" link to the glossary term.Karl O. Pinc
2014-08-12Docs: Make clear that a userid need not be a principal.Karl O. Pinc
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