| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-07-29 | Added support in pyramid for "pyramid.*" settings prefixes. | Michael Merickel | |
| These settings will override the previous settings keys but not the keys from the environ. | |||
| 2011-07-28 | garden | Chris McDonough | |
| 2011-07-28 | add some edits to the docs for response_adapter decorator; fix renderings | Chris McDonough | |
| 2011-07-28 | Merge branch 'helduel-master' | Chris McDonough | |
| 2011-07-28 | merge | Chris McDonough | |
| 2011-07-28 | garden | Chris McDonough | |
| 2011-07-27 | use dev version number, for trunk-dependent add-ons | Chris McDonough | |
| 2011-07-25 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-07-24 | Merge pull request #244 from cd34/master | Chris McDonough | |
| modified scaffold templates to be xhtml compliant | |||
| 2011-07-25 | modified scaffold templates to be xhtml compliant | Chris Davies | |
| 2011-07-25 | garden; whitespace, comment cleanups | Chris McDonough | |
| 2011-07-25 | garden | Chris McDonough | |
| 2011-07-25 | garden | Chris McDonough | |
| 2011-07-24 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-07-24 | allow handler to be a dotted name | 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 | stray hat | Chris McDonough | |
| 2011-07-24 | - The Pyramid debug logger now uses the standard logging configuration | Chris McDonough | |
| (usually set up by Paste as part of startup). This means that output from e.g. ``debug_notfound``, ``debug_authorization``, etc. will go to the normal logging channels. The logger name of the debug logger will be the package name of the *caller* of the Configurator's constructor. - If a string is passed as the ``debug_logger`` parameter to a Configurator, that string is considered to be the name of a global Python logger rather than a dotted name to an instance of a logger. | |||
| 2011-07-24 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-07-24 | fix merge conflicts | Chris McDonough | |
| 2011-07-24 | add tests for request handler bits | 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 | typo | Chris McDonough | |
| 2011-07-23 | Merge branch 'wrapviews' | 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 | dont wrap a view callable if it's None | Chris McDonough | |
| 2011-07-23 | Merge branch 'master' into wrapviews | Chris McDonough | |
| 2011-07-23 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2011-07-23 | - The ``pyramid.events.BeforeRender`` event now has an attribute named | Chris McDonough | |
| ``rendering_val``. This can be used to introspect the value returned by a view in a BeforeRender subscriber. | |||
| 2011-07-23 | remove extra word | Carlos de la Guardia | |
| 2011-07-23 | Fixed typo | Carlos de la Guardia | |
| 2011-07-23 | Removed extra word, corrected unfinished sentence | Carlos de la Guardia | |
| 2011-07-23 | removed extra word | Carlos de la Guardia | |
| 2011-07-23 | fix typo | Carlos de la Guardia | |
| 2011-07-23 | first cut | Chris McDonough | |
| 2011-07-22 | Merge pull request #241 from hathawsh/master | Chris McDonough | |
| Please accept my signature of the contributor's agreement. | |||
| 2011-07-22 | Signed contributor agreement | Shane Hathaway | |
| 2011-07-22 | Fixed formatting fail. | Michael Merickel | |
| 2011-07-22 | s/repoze/pyramid/ | Chris McDonough | |
| 2011-07-21 | better steps | Chris McDonough | |
| 2011-07-21 | add epub and pdf maker scripts | Chris McDonough | |
