| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-09-09 | coverage for renderers module | Chris McDonough | |
| 2012-09-09 | coverage for supplying a macro argument to a ZPT template renderer | Chris McDonough | |
| 2012-09-09 | coverage for renderer_factory in chameleon_zpt and chameleon_text | Chris McDonough | |
| 2012-09-09 | Merge branch 'feature.14removedeprecations' | Chris McDonough | |
| 2012-09-09 | garden | Chris McDonough | |
| 2012-09-09 | dead code | Chris McDonough | |
| 2012-09-09 | dead code, garden | Chris McDonough | |
| 2012-09-09 | - These APIs from the ``pyramid.testing`` module were removed. They have | Chris McDonough | |
| been printing deprecation warnings since Pyramid 1.0: * ``registerDummySecurityPolicy``, use ``pyramid.config.Configurator.testing_securitypolicy`` instead. * ``registerResources`` (aka ``registerModels``, use ``pyramid.config.Configurator.testing_resources`` instead. * ``registerEventListener``, use ``pyramid.config.Configurator.testing_add_subscriber`` instead. * ``registerTemplateRenderer`` (aka `registerDummyRenderer``), use ``pyramid.config.Configurator.testing_add_template`` instead. * ``registerView``, use ``pyramid.config.Configurator.add_view`` instead. * ``registerUtility``, use ``pyramid.config.Configurator.registry.registerUtility`` instead. * ``registerAdapter``, use ``pyramid.config.Configurator.registry.registerAdapter`` instead. * ``registerSubscriber``, use ``pyramid.config.Configurator.add_subscriber`` instead. * ``registerRoute``, use ``pyramid.config.Configurator.add_route`` instead. * ``registerSettings``, use ``pyramid.config.Configurator.add_settings`` instead. | |||
| 2012-09-09 | garden | Chris McDonough | |
| 2012-09-09 | - The ``pyramid.settings.get_settings()`` API was removed. It had been | Chris McDonough | |
| printing a deprecation warning since Pyramid 1.0. If your code depended on this API, use ``pyramid.threadlocal.get_current_registry().settings`` instead or use the ``settings`` attribute of the registry available from the request (``request.registry.settings``). | |||
| 2012-09-09 | - The ``pyramid.paster.PyramidTemplate`` API was removed. It had been | Chris McDonough | |
| deprecated since Pyramid 1.1 and issued a warning on import. If your code depended on this, adjust your code to import ``pyramid.scaffolds.PyramidTemplate`` instead. | |||
| 2012-09-09 | garden | Chris McDonough | |
| 2012-09-09 | remove docs for chameleon_zpt and chameleon_text (gone) | Chris McDonough | |
| 2012-09-09 | - The ``pyramid.configuration`` module was removed. It had been deprecated | Chris McDonough | |
| since Pyramid 1.0 and printed a deprecation warning upon its use. Use ``pyramid.config`` instead. | |||
| 2012-09-09 | garden | Chris McDonough | |
| 2012-09-09 | - The functions from ``pyramid.chameleon_zpt`` and ``pyramid.chameleon_text`` | Chris McDonough | |
| named ``get_renderer``, ``get_template``, ``render_template``, and ``render_template_to_response`` have been removed. These have issued a deprecation warning upon import since Pyramid 1.0. Use ``pyramid.renderers.get_renderer()``, ``pyramid.renderers.get_renderer().implementation()``, ``pyramid.renderers.render()`` or ``pyramid.renderers.render_to_response`` respectively instead of these functions. | |||
| 2012-09-09 | Merge branch 'master' into feature.14removedeprecations | Chris McDonough | |
| 2012-09-09 | garden | Chris McDonough | |
| 2012-09-09 | - It is no longer possible to pass an environ dictionary directly to | Chris McDonough | |
| ``pyramid.traversal.ResourceTreeTraverser.__call__`` (aka ``ModelGraphTraverser.__call__``). Instead, you must pass a request object. Passing an environment instead of a request has generated a deprecation warning since Pyramid 1.1. - Pyramid will no longer work properly if you use the ``webob.request.LegacyRequest`` as a request factory. Instances of the LegacyRequest class have a ``request.path_info`` which return a string. This Pyramid release assumes that ``request.path_info`` will unconditionally be Unicode. - Pyramid now requires WebOb 1.2b3+ (the prior Pyramid release only relied on 1.2dev+). This is to ensure that we obtain a version of WebOb that returns ``request.path_info`` as text. | |||
| 2012-09-08 | trivial change to poke jenkins (im in on an untrusted network and cant use ↵ | Chris McDonough | |
| the jenkins web ui because we dont have https access to it) | |||
| 2012-09-08 | simplify tox.ini | Chris McDonough | |
| 2012-09-08 | checkpoint for removing bfg.routes | Chris McDonough | |
| 2012-09-01 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-08-30 | Merge pull request #675 from ronnix/patch-3 | Chris McDonough | |
| Fixed broken link in docs/narr/testing.rst | |||
| 2012-08-30 | Fixed broken link in docs/narr/testing.rst | Ronan Amicel | |
| Fixed link to "Dive into Python" (previous mirror is down). | |||
| 2012-08-29 | add newness markers | Chris McDonough | |
| 2012-08-29 | remove experimental names | Chris McDonough | |
| 2012-08-29 | forgot a fixture file | Chris McDonough | |
| 2012-08-29 | wording | Chris McDonough | |
| 2012-08-29 | Merge branch 'feature.macrorenderers' | Chris McDonough | |
| 2012-08-29 | add docs about chameleon zpt macro feature | Chris McDonough | |
| 2012-08-29 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-08-29 | garden | Chris McDonough | |
| 2012-08-29 | add renderer and template to values passed to template during rendering | Chris McDonough | |
| 2012-08-29 | add a test | Chris McDonough | |
| 2012-08-29 | rough cut at supporting 'packagename:dirname/template#macroname.pt' renderer ↵ | Chris McDonough | |
| style, ala mako renderer | |||
| 2012-08-26 | - Forward-port from 1.3 branch: when registering multiple views with an | Chris McDonough | |
| ``accept`` predicate in a Pyramid application runing under Python 3, you might have received a ``TypeError: unorderable types: function() < function()`` exception. | |||
| 2012-08-25 | _get_predlist -> get_predlist | Chris McDonough | |
| 2012-08-25 | indent like a man | Chris McDonough | |
| 2012-08-25 | rant | Chris McDonough | |
| 2012-08-25 | subscribers registered for more than one interface receive all objects, ↵ | Chris McDonough | |
| which is fucking stupid, but true | |||
| 2012-08-25 | garden | Chris McDonough | |
| 2012-08-25 | return value from subscriber (even though technically nothing can rely on it) | Chris McDonough | |
| 2012-08-25 | Subscriber predicates: | Chris McDonough | |
| - Add ``add_subscriber_predicate`` method to Configurator. - Allow ``add_subscriber`` and ``subscriber`` venusian decorator to accept ``**predicates`` arguments. - Document subscriber predicate feature. - Share more code between view, route, and subscriber related method wrt predicates. | |||
| 2012-08-24 | Merge branch 'wwitzel3-ww/621' | Chris McDonough | |
| 2012-08-24 | garden | Chris McDonough | |
| 2012-08-24 | Merge branch 'ww/621' of git://github.com/wwitzel3/pyramid into wwitzel3-ww/621 | Chris McDonough | |
| 2012-08-23 | sorting differences made this test fail every so often on py33 | Chris McDonough | |
| 2012-08-23 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-08-23 | updated CHANGES with accept-header bug fix | Michael Merickel | |
