| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-09-09 | merging cookiecutters | Stephen Martin | |
| 2018-08-18 | Clean up code-blocks in extending | Steve Piercy | |
| 2016-12-27 | narr/extending - update | Steve Piercy | |
| 2016-04-10 | - update extending.rst to use pip | Steve Piercy | |
| 2015-11-05 | minor grammar, fix .rst markup, rewrap to 79 columns | Steve Piercy | |
| 2013-11-17 | Removed extra indentation from some examples (:linenos: should be indented ↵ | Antti Haapala | |
| with the same indentation as the rest of the code block) | |||
| 2013-04-01 | Fix grammar | Catalin Iacob | |
| 2013-04-01 | Use into instead of in to | Catalin Iacob | |
| Seems more correct and is consistent with the usage a few words further. | |||
| 2013-03-13 | consistency: use $VENV whenever virtualenv binaries are used | Tshepang Lekhonkhobe | |
| 2013-01-28 | Update docs/narr/extending.rst | Calvin Hendryx-Parker | |
| Fixed grammatical typo | |||
| 2011-12-09 | fix bare python mentions | Chris McDonough | |
| 2011-08-10 | - Added a ``route_prefix`` argument to the | Chris McDonough | |
| ``pyramid.config.Configurator.include`` method. This argument allows you to compose URL dispatch applications together. See the section entitled "Using a Route Prefix to Compose Applications" in the "URL Dispatch" narrative documentation chapter. - Added a section entitled "Using a Route Prefix to Compose Applications" to the "URL Dispatch" narrative documentation chapter. | |||
| 2011-06-05 | More small fixes made reading the rest of the docs and the tutorials. | Christoph Zwerschke | |
| 2011-03-24 | It was decided that pyramid would undergo a terminology change. | Joe Dallago | |
| 'Paster templates' will now be refered to as 'scaffolds,' while 'rendered templates' will remain as 'templates.' I have changed the docs to reflect this change in terminology. | |||
| 2011-01-27 | module name contractions | Chris McDonough | |
| 2011-01-19 | point at pyramid_zcml | Chris McDonough | |
| 2011-01-18 | resource => asset | Casey Duncan | |
| 2011-01-18 | resource => asset | Casey Duncan | |
| 2011-01-16 | - The ``pylons_minimal``, ``pylons_basic`` and ``pylons_sqla`` paster | Chris McDonough | |
| templates were removed. Use ``pyramid_sqla`` (available from PyPI) as a generic replacement for Pylons-esque development. - All references to ``add_handler`` and the ``handler`` ZCML directive have been removed from the docs, and stubs which point to ``pylons_handlers`` package have replaced them. | |||
| 2010-12-27 | wording | Chris McDonough | |
| 2010-12-27 | - Reconcile "extending an existing application" chapter with existence of | Chris McDonough | |
| "advanced configuration" chapter. | |||
| 2010-12-18 | model -> resource; resource -> asset | Chris McDonough | |
| 2010-12-09 | fix docs: pyramid.configuration -> pyramid.config | Chris McDonough | |
| 2010-11-28 | Narrative doc cleanup | Blaise Laflamme | |
| 2010-11-09 | - All references to Pyramid-the-application were changed from :mod:`pyramid` | Chris McDonough | |
| to :app:`Pyramid`. A custom role setting was added to ``docs/conf.py`` to allow for this. (internal) | |||
| 2010-11-09 | the configure_zcml setting is no longer a feature of the framework | Chris McDonough | |
| 2010-11-03 | de-zcml-ify various chapters and move ZCML to the declarative chapter | Chris McDonough | |
| 2010-10-29 | bfg_view -> view_config | Chris McDonough | |
| 2010-10-25 | convert narrative docs to Pyramid | Chris McDonough | |
| 2010-03-26 | quick fixes for chapter | Carlos de la Guardia | |
| 2010-01-18 | Prep for b1 | Chris McDonough | |
| Merge a bunch of paper-based docs fixes Configure logging during bfgshell. | |||
| 2010-01-11 | Merge of andrew-docs branch. | Chris McDonough | |
| 2010-01-03 | Features | Chris McDonough | |
| -------- - The ``Configurator.add_view`` method now accepts an argument named ``context``. This is an alias for the older argument named ``for_``; it is preferred over ``for_``, but ``for_`` will continue to be supported "forever". - The ``view`` ZCML directive now accepts an attribute named ``context``. This is an alias for the older attribute named ``for``; it is preferred over ``for``, but ``for`` will continue to be supported "forever". - The ``Configurator.add_route`` method now accepts an argument named ``view_context``. This is an alias for the older argument named ``view_for``; it is preferred over ``view_for``, but ``view_for`` will continue to be supported "forever". - The ``route`` ZCML directive now accepts an attribute named ``view_context``. This is an alias for the older attribute named ``view_for``; it is preferred over ``view_for``, but ``view_for`` will continue to be supported "forever". Documentation and Paster Templates ---------------------------------- - All uses of the ``Configurator.add_view`` method that used its ``for_`` argument now use the ``context``argument instead. - All uses of the ``Configurator.add_route`` method that used its ``view_for`` argument now use the ``view_context``argument instead. - All uses of the ``view`` ZCML directive that used its ``for`` attribute now use the ``context`` attribute instead. - All uses of the ``route`` ZCML directive that used its ``view_for`` attribute now use the ``view_context`` attribute instead. | |||
| 2009-12-27 | - Added manual index entries to generated index. | Chris McDonough | |
| 2009-12-22 | Use roles. | Chris McDonough | |
| 2009-11-26 | Docs updates. | Chris McDonough | |
| 2009-11-24 | Docs updates. | Chris McDonough | |
| 2009-11-22 | Rendering tweaks. | Chris McDonough | |
| 2009-11-14 | Spellcheck. | Chris McDonough | |
| 2009-11-14 | - Improve the "Extending an Existing Application" narrative chapter. | Chris McDonough | |
| 2009-11-06 | Update slightly. | Chris McDonough | |
| 2009-09-26 | Added missing word found by Stephen Waterbury | Carlos de la Guardia | |
| 2009-07-04 | Wording changes. | Chris McDonough | |
| 2009-07-03 | (no commit message) | Chris McDonough | |
| 2009-07-03 | Wording. | Chris McDonough | |
| 2009-07-03 | General editing walkthrough. | Chris McDonough | |
| 2009-07-02 | Reorder. | Chris McDonough | |
| 2009-07-02 | Typo. | Chris McDonough | |
| 2009-07-02 | - Added an "Extending" chapter to the narrative documentation which | Chris McDonough | |
| explains how to extend or modify an existing BFG application using another Python package and ZCML. | |||
