summaryrefslogtreecommitdiff
path: root/pyramid
AgeCommit message (Collapse)Author
2018-03-08Fixing formatting and import errorsHeron Rossi
2018-03-08Adjusting cherrypy WSGI Server import path according to new releaseHeron Rossi
2017-11-16Update factories.pyJohn Wu
2017-11-15Clarify property descriptor in add_request_methodJohn Wu
Fix #3202 - Doc change.
2017-11-10Fix typeJohn Wu
2017-11-09Minor fix - Indentation issueJohn Wu
2017-10-29fix lintMichael Merickel
2017-10-22Merge branch 'pr/3140'Michael Merickel
2017-10-22changelog for #3140Michael Merickel
2017-09-12typoBrian Sutherland
2017-08-04Drop repoze.lru on Python 3Mathieu Bridon
Starting with Python 3.2, the functools module grew a lru_cache function which can replace our usage of repoze.lru.
2017-07-18fix the __module__ and import path of the request after custom properties ↵Michael Merickel
have been set previously anytime ``config.add_request_method`` was used the request would appear as ``pyramid.util.Request`` when displaying ``request.__class__``. This overwrites the ``__module__`` which fixes that issue so that it appears as ``pyramid.request.Request``.
2017-07-08add _depth and _category arguments to all decoratorsMichael Merickel
``subscriber``, ``response_adapter``, ``exception_view_config``, ``notfound_view_config``, ``forbidden_view_config`` This is an extension of #3105 to add support to the remaining decorators.
2017-07-07Merge branch 'pr/3105'Michael Merickel
2017-06-27rename view_config argmuent category to _categorytosh
2017-06-27documentation updatestosh
link to relevant venusian docs improved grammer
2017-06-27Update all external links per `make linkcheck`Steve Piercy
- Most are changing http to https, or readthedocs.org to readthedocs.io, and some for Python packaging reorganizing some docs into tutorials, as well as miscellaneous changes.
2017-06-26documentation for view_config category argumenttosh
2017-06-26add support for custom category in view_config decoratortosh
2017-06-26change http://docs.pylonsproject.org to httpsSteve Piercy
- use correct URL for code style - use correct Pyramid version for zodb wiki src file template
2017-06-19Merge pull request #3086 from mmerickel/set-execution-contextMichael Merickel
add a router.request_context context manager
2017-06-18document changes and add testsMichael Merickel
2017-06-18Merge branch 'master' into pr/3034Michael Merickel
2017-06-18configure resource_url to use the same logicMichael Merickel
2017-06-18Merge pull request #3088 from drnextgis/quote_viaMichael Merickel
quote_via urlencode argument
2017-06-18document and test p.encode.urlencode(quote_via=...)Michael Merickel
2017-06-17add a router.request_context context managerMichael Merickel
the request context is to be used by execution policies to push/pop threadlocals and access the created request
2017-06-15remove trailing slashSteve Piercy
2017-06-15Use HTTPS for pylonsproject.orgSteve Piercy
2017-06-15quote_via urlencode argumentdrnextgis
2017-06-15add a reraise argument to request.invoke_exception_viewMichael Merickel
2017-06-14fix p.security.ACLPermitsResult to subclass p.security.PermitsResultMichael Merickel
The ``IAuthorizationPolicy`` is expected to return an instance of ``PermitsResult`` and the ``ACLPermitsResult`` now subclasses this to form a consistent class hierarchy. Similarly the ``ACLDenied`` subclasses ``Denied`` and ``ACLAllowed`` subclasses ``Allowed`` for consistency.
2017-06-12typoMichael Merickel
2017-06-12apply request extensions within invoke_subrequest itselfMichael Merickel
2017-06-10Merge pull request #3059 from chrismorales/pyramid_tm_3052Steve Piercy
set pyramid_tm.explicit_manager in the configuration
2017-06-09Fix forbidden_view for BasicAuthAuthenticationPolicy (#3066)Volker Diels-Grabsch
2017-06-08Merge pull request #3074 from Pylons/3073-all_permissions_list-iterabilityMichael Merickel
Ensure that instances of 'AllPermissionsList' are iterable.
2017-06-07add versionadded directive for invoke_exception_viewMichael Merickel
2017-06-05Ensure that instances of 'AllPermissionsList' are iterable.Tres Seaver
Closes #3073.
2017-06-05Merge pull request #3060 from Pylons/push_threadlocals_exception_viewMichael Merickel
When invoking an exception view, push the new threadlocals
2017-06-05Always push the threadlocalsBert JW Regeer
2017-05-23Merge pull request #3061 from Pylons/render-last-exceptionBert JW Regeer
allow the execution policy to perform a last-ditch effort to render an exception view
2017-05-23Make coverage happy againBert JW Regeer
2017-05-23When invoking an exception view, push the new threadlocalsBert JW Regeer
This way when calling the threadlocal get_current_request() you get the same request object as the one that was passed to the view.
2017-05-23allow the execution policy to perform a last-ditch effort to render an ↵Michael Merickel
exception view
2017-05-23Merge branch 'master' of https://github.com/Pylons/pyramid into pyramid_tm_3052Chris Morales
2017-05-23pyramid_tm.explicit_manager set in the configuration.Chris Morales
2017-05-22Fix #2548, add SRI has for script tagsFang-Pen Lin
2017-05-22Load difflib on-demand so that it won’t take message proactivelyFang-Pen Lin
2017-05-22Fix #1603, add closest predicate name in error messageFang-Pen Lin