| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-01-21 | - Add a ``MANIFEST.in`` file to each paster template. See | Chris McDonough | |
| https://github.com/Pylons/pyramid/issues#issue/95 Closes issue #95. | |||
| 2011-01-21 | point at Pyramid Cookbook explicitly | Chris McDonough | |
| 2011-01-21 | depend on intersphinx to point at Mako i18n recipe | Chris McDonough | |
| 2011-01-21 | - Slightly improved interface docs for ``IAuthorizationPolicy``. | Chris McDonough | |
| 2011-01-21 | - Move content of "Forms" chapter back to "Views" chapter; I can't think of a | Chris McDonough | |
| better place to put it. | |||
| 2011-01-21 | Incorporate suggestions from https://github.com/Pylons/pyramid/issues/#issue/57 | Chris McDonough | |
| 2011-01-21 | - Added "What's New in Pyramid 1.0" chapter to HTML rendering of | Chris McDonough | |
| documentation. | |||
| 2011-01-21 | - Add (minimal) documentation about using I18N within Mako templates to | Chris McDonough | |
| "Internationalization and Localization" narrative chapter. | |||
| 2011-01-21 | remove descriptions from titles | Chris McDonough | |
| 2011-01-21 | mention pyramid_sqla | Chris McDonough | |
| 2011-01-21 | add caveat for PyPy and Jython users | Chris McDonough | |
| 2011-01-21 | yes, really | Chris McDonough | |
| 2011-01-21 | - Add docs for ``add_finished_callback``, ``add_response_callback``, | Chris McDonough | |
| ``route_path``, ``route_url``, and ``static_url`` methods to ``pyramid.request.Request`` API docs. | |||
| 2011-01-21 | deal with the addition of production.ini | Chris McDonough | |
| 2011-01-21 | update whatsnew | Chris McDonough | |
| 2011-01-20 | promise less | Chris McDonough | |
| 2011-01-20 | add first cut of whatsnew document | Chris McDonough | |
| 2011-01-20 | update grok number | Chris McDonough | |
| 2011-01-19 | - Added "Adding Methods to the Configurator via ``add_directive``" section to | Chris McDonough | |
| Advanced Configuration narrative chapter. | |||
| 2011-01-19 | adjust wiki2 tutorial based on changes to pyramid_routesalchemy template | Chris McDonough | |
| 2011-01-19 | readd docutils | Chris McDonough | |
| 2011-01-19 | adjust tutorial sources against pyramid_zodb changes | Chris McDonough | |
| 2011-01-19 | - The ``pyramid_zodb``, ``pyramid_routesalchemy`` and ``pyramid_alchemy`` | Chris McDonough | |
| paster templates now use a default "commit veto" hook when configuring the ``repoze.tm2`` transaction manager in ``development.ini``. This prevents a transaction from being committed when the response status code is within the 400 or 500 ranges. See also http://docs.repoze.org/tm2/#using-a-commit-veto. | |||
| 2011-01-19 | - Fix deprecated example showing ``chameleon_zpt`` API call in testing | Chris McDonough | |
| narrative chapter. | |||
| 2011-01-19 | get rid of annoying note about bfg | Chris McDonough | |
| 2011-01-19 | resource->asset | Chris McDonough | |
| 2011-01-19 | point to pyramid_zcml | Chris McDonough | |
| 2011-01-19 | inappropriate indentation | Chris McDonough | |
| 2011-01-19 | point at pyramid_zcml | Chris McDonough | |
| 2011-01-19 | add Python to identify kind of package | Chris McDonough | |
| 2011-01-19 | clarify | Chris McDonough | |
| 2011-01-19 | add more thanks | Chris McDonough | |
| 2011-01-19 | four->three | Chris McDonough | |
| 2011-01-19 | - When a ``pyramid.exceptions.Forbidden`` error is raised, its status code | Chris McDonough | |
| now ``403 Forbidden``. It was previously ``401 Unauthorized``, for backwards compatibility purposes with ``repoze.bfg``. This change will cause problems for users of Pyramid with ``repoze.who``, which intercepts ``401 Unauthorized`` by default, but allows ``403 Forbidden`` to pass through. Those deployments will need to configure ``repoze.who`` to also react to ``403 Forbidden``. | |||
| 2011-01-19 | handlers are no longer a part of the package | Chris McDonough | |
| 2011-01-18 | Merge https://github.com/Pylons/pyramid | Casey Duncan | |
| 2011-01-18 | add word that to clarify | Casey Duncan | |
| 2011-01-18 | fix typoo | Casey Duncan | |
| 2011-01-18 | resource => asset | Casey Duncan | |
| 2011-01-18 | resource => asset | Casey Duncan | |
| 2011-01-18 | they => the | Casey Duncan | |
| 2011-01-18 | remove empty See Also | Casey Duncan | |
| 2011-01-18 | add word chapter | Casey Duncan | |
| 2011-01-18 | fix spacing | Casey Duncan | |
| 2011-01-18 | get maillist link right | Chris McDonough | |
| 2011-01-18 | prep for 1.0a10 | Chris McDonough | |
| 2011-01-18 | modernize design defense after zcml externalization | Chris McDonough | |
| 2011-01-18 | - Most references to ZCML in narrative chapters have been removed or | Chris McDonough | |
| redirected to ``pyramid_zcml`` locations. | |||
| 2011-01-18 | - The ``make_app`` function has been removed from the ``pyramid.router`` | Chris McDonough | |
| module. It continues life within the ``pyramid_zcml`` package. This leaves the ``pyramid.router`` module without any API functions. - The ``configure_zcml`` setting within the deployment settings (within ``**settings`` passed to a Pyramid ``main`` function) has ceased to have any meaning. - The ``starter_zcml`` paster template has been moved to the ``pyramid_zcml`` package. - The ``bfg2pyramid`` script now converts ZCML include tags that have ``repoze.bfg.includes`` as a package attribute to the value ``pyramid_zcml``. For example, ``<include package="repoze.bfg.includes">`` will be converted to ``<include package="pyramid_zcml">``. - The ``load_zcml`` method of a Configurator has been removed from the Pyramid core. Loading ZCML is now a feature of the ``pyramid_zcml`` package, which can be downloaded from PyPI. Documentation for the package should be available via http://pylonsproject.org, which describes how to get this method back after depending upon ``pyramid_zcml`` as an ``install_requires`` dependency. - The ``pyramid.includes`` subpackage has been removed. ZCML files which use include the package ``pyramid.includes`` (e.g. ``<include package="pyramid.includes">``) now must include the ``pyramid_zcml`` package instead (e.g. ``<include package="pyramid_zcml"/>). - The "Declarative Configuration" narrative chapter has been removed (it was moved to the ``pyramid_zcml`` pakcage). - The add_directive method now accepts an "action_wrap" flag. - Fix some orphaned references. - Remove some docstring references to ZCML directives. - All integration test fixtures have been changed to use imperative configuration rather than ZCML configuration. | |||
| 2011-01-17 | fix merge conflict | Casey Duncan | |
