summaryrefslogtreecommitdiff
path: root/docs/narr/extending.rst
AgeCommit message (Collapse)Author
2018-09-09merging cookiecuttersStephen Martin
2018-08-18Clean up code-blocks in extendingSteve Piercy
2016-12-27narr/extending - updateSteve Piercy
2016-04-10- update extending.rst to use pipSteve Piercy
2015-11-05minor grammar, fix .rst markup, rewrap to 79 columnsSteve Piercy
2013-11-17Removed extra indentation from some examples (:linenos: should be indented ↵Antti Haapala
with the same indentation as the rest of the code block)
2013-04-01Fix grammarCatalin Iacob
2013-04-01Use into instead of in toCatalin Iacob
Seems more correct and is consistent with the usage a few words further.
2013-03-13consistency: use $VENV whenever virtualenv binaries are usedTshepang Lekhonkhobe
2013-01-28Update docs/narr/extending.rstCalvin Hendryx-Parker
Fixed grammatical typo
2011-12-09fix bare python mentionsChris McDonough
2011-08-10- Added a ``route_prefix`` argument to theChris 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-05More small fixes made reading the rest of the docs and the tutorials.Christoph Zwerschke
2011-03-24It 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-27module name contractionsChris McDonough
2011-01-19point at pyramid_zcmlChris McDonough
2011-01-18resource => assetCasey Duncan
2011-01-18resource => assetCasey Duncan
2011-01-16- The ``pylons_minimal``, ``pylons_basic`` and ``pylons_sqla`` pasterChris 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-27wordingChris McDonough
2010-12-27- Reconcile "extending an existing application" chapter with existence ofChris McDonough
"advanced configuration" chapter.
2010-12-18model -> resource; resource -> assetChris McDonough
2010-12-09fix docs: pyramid.configuration -> pyramid.configChris McDonough
2010-11-28Narrative doc cleanupBlaise 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-09the configure_zcml setting is no longer a feature of the frameworkChris McDonough
2010-11-03de-zcml-ify various chapters and move ZCML to the declarative chapterChris McDonough
2010-10-29bfg_view -> view_configChris McDonough
2010-10-25convert narrative docs to PyramidChris McDonough
2010-03-26quick fixes for chapterCarlos de la Guardia
2010-01-18Prep for b1Chris McDonough
Merge a bunch of paper-based docs fixes Configure logging during bfgshell.
2010-01-11Merge of andrew-docs branch.Chris McDonough
2010-01-03FeaturesChris 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-22Use roles.Chris McDonough
2009-11-26Docs updates.Chris McDonough
2009-11-24Docs updates.Chris McDonough
2009-11-22Rendering tweaks.Chris McDonough
2009-11-14Spellcheck.Chris McDonough
2009-11-14- Improve the "Extending an Existing Application" narrative chapter.Chris McDonough
2009-11-06Update slightly.Chris McDonough
2009-09-26Added missing word found by Stephen WaterburyCarlos de la Guardia
2009-07-04Wording changes.Chris McDonough
2009-07-03(no commit message)Chris McDonough
2009-07-03Wording.Chris McDonough
2009-07-03General editing walkthrough.Chris McDonough
2009-07-02Reorder.Chris McDonough
2009-07-02Typo.Chris McDonough
2009-07-02- Added an "Extending" chapter to the narrative documentation whichChris McDonough
explains how to extend or modify an existing BFG application using another Python package and ZCML.