| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-11 | wording | Chris McDonough | |
| 2013-09-09 | - The ``pyramid.config.Configurator.set_request_property`` method now issues | Chris McDonough | |
| a deprecation warning when used. It had been docs-deprecated in 1.4 but did not issue a deprecation warning when used. | |||
| 2013-09-09 | wording | Chris McDonough | |
| 2013-09-09 | add note about requiring a later pyramid_debugtoolbar package if you use 1.5a2+ | Chris McDonough | |
| 2013-09-08 | - The ``renderer_globals_factory`` argument to the | Chris McDonough | |
| ``pyramid.config.Configurator` constructor and its ``setup_registry`` method has been removed. The ``set_renderer_globals_factory`` method of ``pyramid.config.Configurator`` has also been removed. The (internal) ``pyramid.interfaces.IRendererGlobals`` interface was also removed. These arguments, methods and interfaces had been deprecated since 1.1. Use a ``BeforeRender`` event subscriber as documented in the "Hooks" chapter of the Pyramid narrative documentation instead of providing renderer globals values to the configurator. | |||
| 2013-09-08 | - Removed ancient backwards compatibily hack in | Chris McDonough | |
| ``pyramid.traversal.DefaultRootFactory`` which populated the ``__dict__`` of the factory with the matchdict values for compatibility with BFG 0.9. | |||
| 2013-09-08 | - Removed the ability to influence and query a ``pyramid.request.Request`` | Chris McDonough | |
| object as if it were a dictionary. Previously it was possible to use methods like ``__getitem__``, ``get``, ``items``, and other dictlike methods to access values in the WSGI environment. This behavior had been deprecated since Pyramid 1.1. Use methods of ``request.environ`` (a real dictionary) instead. | |||
| 2013-09-08 | - Removed the ability to pass the following arguments to | Chris McDonough | |
| ``pyramid.config.Configurator.add_route``: `view``, ``view_context``. ``view_for``, ``view_permission``, ``view_renderer``, and ``view_attr``. Using these arguments had been deprecated since Pyramid 1.1. Instead of passing view-related arguments to ``add_route``, use a separate call to ``pyramid.config.Configurator.add_view`` to associate a view with a route using its ``route_name`` argument. Note that this impacts the ``pyramid.config.Configurator.add_static_view`` function too, because it delegates to ``add_route``. | |||
| 2013-09-08 | - Removed the ``pyramid.view.is_response`` function that had been deprecated | Chris McDonough | |
| since Pyramid 1.1. Use the ``pyramid.request.Request.is_response`` method instead. | |||
| 2013-09-08 | - Removed the class named ``pyramid.view.static`` that had been deprecated | Chris McDonough | |
| since Pyramid 1.1. Instead use ``pyramid.static.static_view`` with ``use_subpath=True`` argument. | |||
| 2013-09-08 | wording | Chris McDonough | |
| 2013-09-08 | Add feature update to CHANGES.txt | Bert JW Regeer | |
| 2013-09-08 | fix merge conflict | Chris McDonough | |
| 2013-09-07 | - The ``pyramid.events.NewResponse`` event is now sent **after** response | Chris McDonough | |
| callbacks are executed. It previously executed before response callbacks were executed. Rationale: it's more useful to be able to inspect the response after response callbacks have done their jobs instead of before. Closes #1116. | |||
| 2013-09-07 | add change notes | Chris McDonough | |
| 2013-09-06 | Update package_name() to work with namespace pkgs | Doug Hellmann | |
| The logic in pyramid.path.package_name() should take into account the fact that namespace packages created by setuptools do not have __init__.py[c] files, and so they have no __file__ attribute. This resolves an issue with WSME (https://bugs.launchpad.net/wsme/+bug/1221201) Change-Id: I39bc32a9c38fa11c4cef22a041077ed9001091be | |||
| 2013-09-05 | s/view execution machinery/generating a response/ | Michael Merickel | |
| 2013-09-05 | resolve conflicts, reword change entry a bit | Chris McDonough | |
| 2013-09-05 | remove the deprecated request.response_* attributes | Michael Merickel | |
| 2013-09-05 | update render() to preserve the original response object | Michael Merickel | |
| 2013-09-04 | add install_requires example as well | Michael Merickel | |
| 2013-09-04 | add example of rendering to the changelog | Michael Merickel | |
| 2013-09-04 | fix markup | Michael Merickel | |
| 2013-09-04 | update changelog | Michael Merickel | |
| 2013-08-30 | prep for 1.5a1 | Chris McDonough | |
| 2013-08-30 | update whatsnew | Chris McDonough | |
| 2013-08-30 | move 1.4 stuff to HISTORY.txt | Chris McDonough | |
| 2013-08-30 | add HTTPSuccessful base class, allowing HTTPOk to be caught independently; ↵ | Chris McDonough | |
| closes #986 | |||
| 2013-08-30 | allow exception view registrations for HTTPException to override default ↵ | Chris McDonough | |
| exception view; closes #985 | |||
| 2013-08-29 | get rid of remainder_name on route, and just default to passing traverse; ↵ | Chris McDonough | |
| add route_remainder_name argument to resource_url | |||
| 2013-08-29 | point at docs section | Chris McDonough | |
| 2013-08-29 | documentation for hybrid url generation | Chris McDonough | |
| 2013-08-29 | first cut at hybrid url generation; still needs tests for resource_url logic | Chris McDonough | |
| 2013-08-29 | make local_name an attribute of Request, move logic from get_localizer into ↵ | Chris McDonough | |
| Request.localizer, fix docs; closes #1099 | |||
| 2013-08-29 | - When the ``pyramid.reload_templates`` setting was true, and a Chameleon | Chris McDonough | |
| template was reloaded, and the renderer specification named a macro (e.g. ``foo#macroname.pt``), renderings of the template after the template was reloaded due to a file change would produce the entire template body instead of just a rendering of the macro. See https://github.com/Pylons/pyramid/issues/1013. Closes #1013 | |||
| 2013-08-28 | Permit escaping of double braces in scaffolds, see #862 | Chris McDonough | |
| 2013-08-28 | - The ``route_url`` and ``route_path`` APIs no longer quote ``/`` | Chris McDonough | |
| to ``%2F`` when a replacement value contains a ``/``. This was pointless, as WSGI servers always unquote the slash anyway, and Pyramid never sees the quoted value. | |||
| 2013-08-27 | - Fix an obscure problem when combining a virtual root with a route with a | Chris McDonough | |
| ``*traverse`` in its pattern. Now the traversal path generated in such a configuration will be correct, instead of an element missing a leading slash. | |||
| 2013-08-20 | raise ValueError instead of generating just path when _app_url is provided ↵ | Chris McDonough | |
| to request.route_url and the route has an external pattern | |||
| 2013-08-19 | Merge branch 'feature.issue611-external-static-routes' of tomster/pyramid ↵ | Michael Merickel | |
| into feature.external-routes | |||
| 2013-08-17 | update changelog | Tom Lazar | |
| 2013-08-17 | add ``localizer`` property to the request (refs #508) | Andreas Zeidler | |
| 2013-08-15 | fix some rST issues | Tshepang Lekhonkhobe | |
| 2013-08-15 | Make ``pserve.cherrypy_server_runner`` Python 3 compatible. | Tom Lazar | |
| Closes https://github.com/Pylons/pyramid/issues/718 | |||
| 2013-08-15 | Add reference to the pull requests | Tom Lazar | |
| Conflicts: CHANGES.txt | |||
| 2013-08-15 | Merge pull request #1078 from wichert/auth-explicit-domain | Andreas Zeidler | |
| Allow explicit auth cookie domain setting. | |||
| 2013-08-14 | fixed line indentation | Blaise Laflamme | |
| 2013-08-14 | added bug fix to changes | Blaise Laflamme | |
| 2013-08-13 | Fixed documentation width, signed contributors agreement and added a test ↵ | Jonathan Villemaire-Krajden | |
| for duplicate query strings. | |||
| 2013-08-13 | Fixes to documentation, added change to what's new. | Jonathan Villemaire-Krajden | |
