summaryrefslogtreecommitdiff
path: root/pyramid
AgeCommit message (Collapse)Author
2018-06-15Merge branch 'pr/3303'Michael Merickel
2018-06-14Update `request_param` kwarg documentation for `add_route` config methodBenjamin Gmurczyk
See: https://github.com/Pylons/pyramid/pull/705
2018-06-11Add httpexception for status code 308Jason Williams
2018-06-11Merge branch 'master' into feature/session-samesite-laxMichael Merickel
2018-06-11add versionchanged markersMichael Merickel
2018-06-05samesite no longer requires bytesBert JW Regeer
2018-05-25remove the permission arg from add_routeMichael Merickel
2018-05-24oops, py3 here tooAlex Gaynor
2018-05-24python 3 fixAlex Gaynor
2018-05-24fix testsAlex Gaynor
2018-05-24Set the samesite flag to Lax by default on session cookiesAlex Gaynor
Also make it possible to set it to other values
2018-05-18Replace MIMEAccept with acceptparse.create_accept_headerBert JW Regeer
This is the new API that WebOb makes available and follows the standards.
2018-05-18Add failing test for MIMEAccept in httpexceptionsBert JW Regeer
2018-05-15Merge pull request #3279 from huntcsg/masterMichael Merickel
Add Configurator context manager 'route_prefix_context' to allow for …
2018-05-15Updated CHANGES.rst and fixed versionadded to be correctHunter Senft-Grupp
2018-05-15Add Configurator context manager 'route_prefix_context' to allow for adding ↵Hunter Senft-Grupp
routes and including configuration callables with a particular route prefix.
2018-05-14Sets, when you absolutely, positively want those extra microseconds backCris Ewing
2018-05-14Update the building of status_dict, now that both the base server and client ↵Cris Ewing
errors and their specific implementations share an error code. Ensures we only get the specific implementations in status_dict
2018-05-14Move base server and client error codes and titles to the base classes. Add ↵Cris Ewing
a docstring to the HTTPInternalServerError
2018-04-23use the RequestContext instead of app.threadlocal_manager for scriptingMichael Merickel
fixes #3262
2018-04-16document the current query behavior on url generationMichael Merickel
2018-04-11updated unset_cookiejonathan vanasco
2018-04-11updated `delete_cookie` docs with `name` instead of `key`jonathan vanasco
2018-04-11updated docs/interfaces to note change in webob 1.7 of `set_cookie(key` to ↵jonathan vanasco
`set_cookie(name`
2018-03-16Fix secret length in doc of SignedCookieSessionFactoryHong Yuan
2018-03-13remove stray backtickSteve Piercy
2018-03-08Fixing another import path regarding cherrypy version changeHeron Rossi
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