summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-09-15add pyramid.decorator.reify as an API. Closes #682Chris McDonough
2012-09-15use with statement to acquire/release thread locksChris McDonough
2012-09-15Merge branch 'fix.removejythonsupport'Chris McDonough
2012-09-15remove dead code which supported jythonChris McDonough
2012-09-15Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-09-15point at cookbookChris McDonough
2012-09-13Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-09-13record idea from Zart about a pyramid app factory entry point for 100% ↵Chris McDonough
declarative app
2012-09-13remove selinux caveatChris McDonough
2012-09-13hailmaryChris McDonough
2012-09-13mention non-support of SELinux-enabled systemsChris McDonough
2012-09-13remove chmodChris McDonough
2012-09-13wordingChris McDonough
2012-09-13docs renderingChris McDonough
2012-09-13Merge branch 'master' of github.com:Pylons/pyramidChris McDonough
2012-09-13add upgrading chapter, make docs render againChris McDonough
2012-09-11Merge pull request #687 from ppaez/tutcodefixPatricio Paez
Complete changes for issue #652
2012-09-11remove pypy from travis-ci allow_failures listDomen Kožar
2012-09-11Change variable name ``name`` to ``pagename`` in ZODB tutorialPatricio Paez
2012-09-11gardenChris McDonough
2012-09-11set request.context as root unless a request context already existsChris McDonough
2012-09-11coverageChris McDonough
2012-09-11- Request properties and methods added via ``config.set_request_property`` orChris 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 theChris McDonough
``pyramid.util.InstancePropertyMixin`` class such as ``set_property``.
2012-09-10change variable name ``name`` to ``pagename``Patricio Paez
- In the authorization and tests stages
2012-09-09point docstring at the most up to date methodChris McDonough
2012-09-09rename set_request_method to add_request_method. closes #683Chris McDonough
2012-09-09fix for py3Chris McDonough
2012-09-09coverageChris McDonough
2012-09-09coverageChris McDonough
2012-09-09coverage for renderers moduleChris McDonough
2012-09-09coverage for supplying a macro argument to a ZPT template rendererChris McDonough
2012-09-09coverage for renderer_factory in chameleon_zpt and chameleon_textChris McDonough
2012-09-09Merge branch 'feature.14removedeprecations'Chris McDonough
2012-09-09gardenChris McDonough
2012-09-09dead codeChris McDonough
2012-09-09dead code, gardenChris McDonough
2012-09-09- These APIs from the ``pyramid.testing`` module were removed. They haveChris 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-09gardenChris McDonough
2012-09-09- The ``pyramid.settings.get_settings()`` API was removed. It had beenChris 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 beenChris 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-09gardenChris McDonough
2012-09-09remove docs for chameleon_zpt and chameleon_text (gone)Chris McDonough
2012-09-09- The ``pyramid.configuration`` module was removed. It had been deprecatedChris McDonough
since Pyramid 1.0 and printed a deprecation warning upon its use. Use ``pyramid.config`` instead.
2012-09-09gardenChris 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-09Merge branch 'master' into feature.14removedeprecationsChris McDonough
2012-09-09gardenChris McDonough
2012-09-09- It is no longer possible to pass an environ dictionary directly toChris 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-08trivial 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)