| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-08-13 | Require that tween_factory argument to add_tween be a dotted name. | Chris McDonough | |
| 2011-08-13 | disallow adding a tween factory which is an instance without passing its ↵ | Chris McDonough | |
| globally importable name | |||
| 2011-08-13 | mention pyramid_exclog | Chris McDonough | |
| 2011-08-13 | - Added a Logging chapter to the narrative docs (based on the Pylons logging | Chris McDonough | |
| docs, thanks Phil). | |||
| 2011-08-13 | - Projects created via a scaffold no longer depend on the ``WebError`` | Chris McDonough | |
| package at all; configuration in the ``production.ini`` file which used to require its ``error_catcher`` middleware has been removed. Configuring error catching / email sending is now the domain of the ``pyramid_exclog`` package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/). | |||
| 2011-08-12 | reduce awkwardness of phrasing | Chris McDonough | |
| 2011-08-12 | Merge branch 'fix.tween-graph' | Michael Merickel | |
| 2011-08-12 | Updated the docs with the new over/under tuples. | Michael Merickel | |
| 2011-08-12 | garden changes; fix docs rendering | Chris McDonough | |
| 2011-08-12 | add pyramid.tweens configuration value docs | Chris McDonough | |
| 2011-08-11 | fix docs, scaffolds, and tutorials to use pyramid.includes | Chris McDonough | |
| 2011-08-11 | add docs for pyramid.includes; allow space-separated or cr separated items ↵ | Chris McDonough | |
| or both for tweens and includes | |||
| 2011-08-11 | pyramid_tm->tm | Chris McDonough | |
| 2011-08-11 | mod->term | Chris McDonough | |
| 2011-08-10 | - Added a ``route_prefix`` argument to the | Chris McDonough | |
| ``pyramid.config.Configurator.include`` method. This argument allows you to compose URL dispatch applications together. See the section entitled "Using a Route Prefix to Compose Applications" in the "URL Dispatch" narrative documentation chapter. - Added a section entitled "Using a Route Prefix to Compose Applications" to the "URL Dispatch" narrative documentation chapter. | |||
| 2011-08-10 | trunk is 1.2dev, who are we fooling | Chris McDonough | |
| 2011-08-09 | Added the `pyramid.security.NO_PERMISSION_REQUIRED` constant. | Michael Merickel | |
| Removed the undocumented version from pyramid.interfaces. | |||
| 2011-08-10 | show members for event interfaces | Chris McDonough | |
| 2011-08-09 | Merge branch 'scafftween' | Chris McDonough | |
| 2011-08-09 | convert tutorials to pyramid_tm+pyramid_debugtoolbar | Chris McDonough | |
| 2011-08-09 | add the debug image | Chris McDonough | |
| 2011-08-09 | instructions about how to turn the toolbar off | Chris McDonough | |
| 2011-08-09 | fix project.rst to deal with scaffold changes | Chris McDonough | |
| 2011-08-09 | dont call hook_zca when we already are using the global reg | Chris McDonough | |
| 2011-08-08 | document under and over params | Chris McDonough | |
| 2011-08-06 | docs rendering | Chris McDonough | |
| 2011-08-06 | change return value of tween to just response | Chris McDonough | |
| 2011-08-06 | add tweens module, add docs for ptweens and tweens to hooks | Chris McDonough | |
| 2011-08-06 | add glossary entry for tween | Chris McDonough | |
| 2011-07-31 | - A new attribute is available on request objects: ``exc_info``. Its value | Chris McDonough | |
| will be ``None`` until an exception is caught by the Pyramid router, after which it will be the result of ``sys.exc_info()``. | |||
| 2011-07-31 | updated wiki tutorials css | Blaise Laflamme | |
| 2011-07-30 | Updated all of the docs to reflect the new pyramid.* settings prefix. | Michael Merickel | |
| 2011-07-28 | add some edits to the docs for response_adapter decorator; fix renderings | Chris McDonough | |
| 2011-07-28 | merge | Chris McDonough | |
| 2011-07-24 | Rewrote bad sentence | Carlos de la Guardia | |
| 2011-07-24 | missing word | Carlos de la Guardia | |
| 2011-07-24 | Removed extra 'if' | Carlos de la Guardia | |
| 2011-07-24 | typo | Carlos de la Guardia | |
| 2011-07-24 | extra 's' removed | Carlos de la Guardia | |
| 2011-07-23 | replace extra 'the' with 'be' | Carlos de la Guardia | |
| 2011-07-23 | Removed repetitive and badly formed sentence | Carlos de la Guardia | |
| 2011-07-24 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-07-24 | fix merge conflicts | Chris McDonough | |
| 2011-07-23 | typo | Carlos de la Guardia | |
| 2011-07-23 | remove extra word | Carlos de la Guardia | |
| 2011-07-24 | back this feature out; we'll try a different approach | Chris McDonough | |
| 2011-07-24 | first cut | Chris McDonough | |
| 2011-07-23 | - New method: ``pyramid.request.Request.add_view_mapper``. A view wrapper is | Chris McDonough | |
| used to wrap the found view callable before it is called by Pyramid's router. This is a feature usually only used by framework extensions, to provide, for example, view timing support. A view wrapper factory must be a callable which accepts three arguments: ``view_callable``, ``request``, and ``exc``. It must return a view callable. The view callable returned by the factory must implement the ``context, request`` view callable calling convention. For example:: import time def wrapper_factory(view_callable, request, exc): def wrapper(context, request): start = time.time() result = view_callable(context, request) end = time.time() request.view_timing = end - start return result return wrapper The ``view_callable`` argument to the factory will be the view callable found by Pyramid via view lookup. The ``request`` argument to the factory will be the current request. The ``exc`` argument to the factory will be an Exception object if the found view is an exception view; it will be ``None`` otherwise. View wrappers only last for the duration of a single request. You can add such a factory for every request by using the ``pyramid.events.NewRequest`` subscriber:: from pyramid.events import subscriber, NewRequest @subscriber(NewRequest) def newrequest(event): event.request.add_view_wrapper(wrapper_factory) If more than one view wrapper is registered during a single request, a 'later' view wrapper factory will be called with the result of its directly former view wrapper factory as its ``view_callable`` argument; this chain will be returned to Pyramid as a single view callable. | |||
| 2011-07-23 | remove extra word | Carlos de la Guardia | |
| 2011-07-23 | Fixed typo | Carlos de la Guardia | |
