summaryrefslogtreecommitdiff
path: root/docs/index.rst
AgeCommit message (Collapse)Author
2011-01-20add first cut of whatsnew documentChris McDonough
2011-01-19get rid of annoying note about bfgChris McDonough
2011-01-19handlers are no longer a part of the packageChris McDonough
2011-01-18Merge https://github.com/Pylons/pyramidCasey Duncan
2011-01-18- Most references to ZCML in narrative chapters have been removed orChris 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-15break out handlers into their own chapt once moreCasey Duncan
2011-01-12Changed some references from pylonshq.com to pylonsproject.orgBlaise Laflamme
2011-01-05combine flash and csrf into sessions chaptCasey Duncan
2011-01-03add placeholder form handling chapt, may move to cookbookCasey Duncan
2011-01-02Split view chapter, move view config after templates, some reordering in ↵Casey Duncan
view config
2010-12-31Remove resource location chapter and move intro parts to url dispatch. The ↵Casey Duncan
new much ado about traversal chapter takes care of selling traversal now
2010-12-31Merge https://github.com/Pylons/pyramidCasey Duncan
2010-12-31add Much ado about traversal chapter from Rob Miller, with light ↵Casey Duncan
adaptations. Also remove some now redundant overview content in the Traversal chapter, which is now only details.
2010-12-29- The (weak) "Converting a CMF Application to Pyramid" tutorial has beenChris McDonough
removed from the tutorials section. It was moved to the ``pyramid_tutorials`` Github repository.
2010-12-26- Merge "Static Assets" chapter into the "Assets" chapter.Chris McDonough
2010-12-24- Added "Advanced Configuration" narrative chapter which documents how toChris McDonough
deal with configuration conflicts, two-phase configuration, ``include`` and ``commit``.
2010-12-22- Added CSRF token generation, as described in the narrative chapter entitledChris McDonough
"Preventing Cross-Site Request Forgery Attacks".
2010-12-22- Added flash messaging, as described in the "Flash Messaging" narrativeChris McDonough
documentation chapter.
2010-12-19reorder chaptersChris McDonough
2010-12-19merge handlers chapter into views chapterChris McDonough
2010-12-19- Split off "Renderers" as its own chapter from "Views" chapter in narrativeChris McDonough
documentation.
2010-12-19reorder chaptersChris McDonough
2010-12-19rearrange traversal and urldispatch chaptersChris McDonough
2010-12-19add functional testing exampleChris McDonough
2010-12-19context finding -> resource locationChris McDonough
2010-12-18model -> resource; resource -> assetChris McDonough
2010-11-29capitalize titleChris McDonough
2010-11-28put converting-from-bfg tutorial after wiki tutorialsChris McDonough
2010-11-28render checkout commands as textChris McDonough
2010-11-22changed cluegun; note in index pageChris McDonough
2010-11-21bfg -> pyramidChris McDonough
2010-11-21- "Sample Applications" section of docs changed to note existence of Cluegun,Chris McDonough
Shootout and Virginia sample applications, ported from their repoze.bfg origin packages.
2010-11-17- Removed ``zodbsessions`` tutorial chapter. It's still useful, but we nowChris McDonough
have a SessionFactory abstraction which competes with it, and maintaining documentation on both ways to do it is a distraction.
2010-11-10point at the right contributing sectionChris McDonough
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-05fix pylons project urls, change some wordingChris McDonough
2010-11-03de-zcml-ify various chapters and move ZCML to the declarative chapterChris McDonough
2010-11-02discuss->develChris McDonough
2010-11-02Add first draft of handlers docs.Ben Bangert
2010-10-28sessioning docsChris McDonough
2010-10-25add a tutorial for converting BFG apps to pyramidChris McDonough
2010-10-25convert remainder of docs to use pyramid instead of repoze.bfgChris McDonough
2010-05-11removed extra wordCarlos de la Guardia
2010-04-25Add a "what's new in 1.3" document.Chris McDonough
2010-04-25Merge i18n branch via svn merge --ignore-ancestry -r9030:9150 ↵Chris McDonough
$REPOZE_SVN/repoze.bfg/branches/i18n No foreigners were harmed in the coding of this feature.
2010-04-21Moved i18n work to a branch and revert to pre-i18n-feature state via svn ↵Chris McDonough
merge -r9054:9030 svn+ssh://repoze@svn.repoze.org/svn/repoze.bfg/trunk
2010-04-19Dip a toe in the i18n waters.Chris McDonough
2010-01-24Don't repeat a chapter.Chris McDonough
2010-01-19Bug FixesChris McDonough
--------- - When the ``Configurator`` is passed an instance of ``zope.component.registry.Components`` as a ``registry`` constructor argument, fix the instance up to have the attributes we expect of an instance of ``repoze.bfg.registry.Registry`` when ``setup_registry`` is called. This makes it possible to use the global Zope component registry as a BFG application registry. Documentation ------------- - Change renderings of ZCML directive documentation. - Add a narrative documentation chapter: "Using the Zope Component Architecture in ``repoze.bfg``"