| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-09-15 | add pyramid.decorator.reify as an API. Closes #682 | Chris McDonough | |
| 2012-09-15 | use with statement to acquire/release thread locks | Chris McDonough | |
| 2012-09-15 | Merge branch 'fix.removejythonsupport' | Chris McDonough | |
| 2012-09-15 | remove dead code which supported jython | Chris McDonough | |
| 2012-09-15 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-09-15 | point at cookbook | Chris McDonough | |
| 2012-09-13 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-09-13 | record idea from Zart about a pyramid app factory entry point for 100% ↵ | Chris McDonough | |
| declarative app | |||
| 2012-09-13 | remove selinux caveat | Chris McDonough | |
| 2012-09-13 | hailmary | Chris McDonough | |
| 2012-09-13 | mention non-support of SELinux-enabled systems | Chris McDonough | |
| 2012-09-13 | remove chmod | Chris McDonough | |
| 2012-09-13 | wording | Chris McDonough | |
| 2012-09-13 | docs rendering | Chris McDonough | |
| 2012-09-13 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2012-09-13 | add upgrading chapter, make docs render again | Chris McDonough | |
| 2012-09-11 | Merge pull request #687 from ppaez/tutcodefix | Patricio Paez | |
| Complete changes for issue #652 | |||
| 2012-09-11 | remove pypy from travis-ci allow_failures list | Domen Kožar | |
| 2012-09-11 | Change variable name ``name`` to ``pagename`` in ZODB tutorial | Patricio Paez | |
| 2012-09-11 | garden | Chris McDonough | |
| 2012-09-11 | set request.context as root unless a request context already exists | Chris McDonough | |
| 2012-09-11 | coverage | Chris McDonough | |
| 2012-09-11 | - Request properties and methods added via ``config.set_request_property`` or | Chris McDonough | |
| ``config.add_request_method`` are now available to tweens. - Request properties and methods added via ``config.set_request_property`` or ``config.add_request_method`` are now available in the request object returned from ``pyramid.paster.bootstrap``. Related partially to issue #520 and issue #538 and issue #596, although it doesn't actually allow us to close any of them, because we still don't issue a newrequest event when bootstrap is used. | |||
| 2012-09-10 | - ``pyramid.testing.DummyRequest`` now supports methods supplied by the | Chris McDonough | |
| ``pyramid.util.InstancePropertyMixin`` class such as ``set_property``. | |||
| 2012-09-10 | change variable name ``name`` to ``pagename`` | Patricio Paez | |
| - In the authorization and tests stages | |||
| 2012-09-09 | point docstring at the most up to date method | Chris McDonough | |
| 2012-09-09 | rename set_request_method to add_request_method. closes #683 | Chris McDonough | |
| 2012-09-09 | fix for py3 | Chris McDonough | |
| 2012-09-09 | coverage | Chris McDonough | |
| 2012-09-09 | coverage | Chris McDonough | |
| 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) | |||
