| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-11-18 | gardening | Chris McDonough | |
| 2010-11-17 | not BFG no mo | Chris McDonough | |
| 2010-11-17 | gardening | Chris McDonough | |
| 2010-11-17 | - Add a ``pyramid.url.route_path`` API, allowing folks to generate relative | Chris McDonough | |
| URLs. Calling ``route_path`` is the same as calling ``pyramid.url.route_url`` with the argument ``_app_url`` equal to the empty string. - Add a ``pyramid.request.Request.route_path`` API. This is a convenience method of the request which calls ``pyramid.url.route_url``. | |||
| 2010-11-17 | - Replace Twill with WebTest in internal integration tests (avoid deprecation | Chris McDonough | |
| warnings generated by Twill). | |||
| 2010-11-17 | gardening | Chris McDonough | |
| 2010-11-17 | gardening | Chris McDonough | |
| 2010-11-17 | gardening | Chris McDonough | |
| 2010-11-16 | - Add deprecation warning for import of ``pyramid.zcml.zcml_configure`` and | Chris McDonough | |
| ``pyramid.zcml.file_configure``. - The ``pyramid.testing.zcml_configure`` API has been removed. It had been advertised as removed since 1.2a1, but hadn't actually been. | |||
| 2010-11-16 | - Add deprecation warnings to import of ``pyramid.chameleon_text`` and | Chris McDonough | |
| ``pyramid.chameleon_zpt`` of ``get_renderer``, ``get_template``, ``render_template``, and ``render_template_to_response``. | |||
| 2010-11-15 | add convenience static_url method to request | Chris McDonough | |
| 2010-11-15 | whitespace | Chris McDonough | |
| 2010-11-15 | gardening | Chris McDonough | |
| 2010-11-12 | add note about making static_url a method of the request | Chris McDonough | |
| 2010-11-12 | - Internal: ZCML directives no longer call get_current_registry() if there's | Chris McDonough | |
| a ``registry`` attribute on the ZCML context (kill off use of threadlocals). | |||
| 2010-11-11 | did as much agitation for this as i can | Chris McDonough | |
| 2010-11-11 | todo gardening | Chris McDonough | |
| 2010-11-11 | todo gardening | Chris McDonough | |
| 2010-11-11 | stamp out inappropriate use of get_settings | Chris McDonough | |
| 2010-11-11 | add notes about shedding threadlocals | Chris McDonough | |
| 2010-11-11 | point at pyramid_viewgroup, todo gardening | Chris McDonough | |
| 2010-11-10 | this was implemented as request.route_url | Chris McDonough | |
| 2010-11-10 | add default renderer todo | Chris McDonough | |
| 2010-11-09 | gardening | Chris McDonough | |
| 2010-11-09 | sqla idiomatic suggestions from rob | Chris McDonough | |
| 2010-11-08 | gardening | Chris McDonough | |
| 2010-11-08 | gardening | Chris McDonough | |
| 2010-11-07 | todo gardening | Chris McDonough | |
| 2010-11-07 | todo gardening | Chris McDonough | |
| 2010-11-05 | move bfg history to a separate file | Chris McDonough | |
| 2010-11-04 | - Move static dir from pkg/templates/ to /pkg/ in pyramid_* paster templates. | Chris McDonough | |
| 2010-11-04 | blaise did this | Chris McDonough | |
| 2010-11-04 | - Remove squiggly routing syntax. | Chris McDonough | |
| 2010-11-04 | add more todos | Chris McDonough | |
| 2010-11-04 | note more todos | Chris McDonough | |
| 2010-11-04 | fix wiki2 tutorial (it was busted) | Chris McDonough | |
| 2010-11-04 | remove r.b.skins reference, note that we need an analogue for r.b.viewgroup | Chris McDonough | |
| 2010-11-02 | add note about zodb sessions | Chris McDonough | |
| 2010-11-02 | - The default ``cookie_name`` value of the ``authtktauthenticationpolicy`` ZCML | Chris McDonough | |
| now defaults to ``auth_tkt`` (it used to default to ``repoze.bfg.auth_tkt``). - The default ``cookie_name`` value of the ``pyramid.authentication.AuthTktAuthenticationPolicy`` constructor now defaults to ``auth_tkt`` (it used to default to ``repoze.bfg.auth_tkt``). | |||
| 2010-11-02 | - Remove references to 'WebOb' Response and just call it 'Response', and note | Chris McDonough | |
| that it is imported from pyramid. API docs can mention its inheritance from webob (aka "Provide a webob.Response class facade for forward compat"). | |||
| 2010-11-02 | - The values ``bfg_localizer`` and ``bfg_locale_name`` kept on the request | Chris McDonough | |
| during internationalization were never APIs. These however have changed to ``localizer`` and ``locale_name``, respectively. | |||
| 2010-11-02 | - The presence of the key ``repoze.bfg.message`` in the WSGI environment when | Chris McDonough | |
| an exception occurs is now deprecated. Instead, code which relies on this environ value should use the ``exception`` attribute of the request (e.g. ``request.exception[0]``) to retrieve the message. | |||
| 2010-11-02 | - New event type: ``pyramid.interfaces.IBeforeRender``. An object of this type | Chris McDonough | |
| is sent as an event before a renderer is invoked (but after the application-level renderer globals factory added via ``pyramid.configurator.configuration.set_renderer_globals_factory``, if any, has injected its own keys). Applications may now subscribe to the ``IBeforeRender`` event type in order to introspect the and modify the set of renderer globals before they are passed to a renderer. The event object iself has a dictionary-like interface that can be used for this purpose. For example:: from repoze.events import subscriber from pyramid.interfaces import IRendererGlobalsEvent @subscriber(IRendererGlobalsEvent) def add_global(event): event['mykey'] = 'foo' If a subscriber attempts to add a key that already exist in the renderer globals dictionary, a ``KeyError`` is raised. This limitation is due to the fact that subscribers cannot be ordered relative to each other. The set of keys added to the renderer globals dictionary by all subscribers and app-level globals factories must be unique. | |||
| 2010-11-01 | imply that a renderer helper implements a well-understood interface ↵ | Chris McDonough | |
| (IRendererInfo) that can act as a contract between a renderer factory and the framework | |||
| 2010-10-31 | gardening | Chris McDonough | |
| 2010-10-30 | Actually add the todo for httpexceptions. | Ben Bangert | |
| 2010-10-30 | Update TODO to indicate Mako docs are in, and add todo for removing | Ben Bangert | |
| webob reference and add todo for httpexceptions. | |||
| 2010-10-30 | gardening | Chris McDonough | |
| 2010-10-30 | gardening | Chris McDonough | |
| 2010-10-30 | gardening | Chris McDonough | |
