summaryrefslogtreecommitdiff
path: root/docs/latexindex.rst
AgeCommit message (Collapse)Author
2018-10-31remove the scaffolding chapterMichael Merickel
2016-12-27latexindex - update for cookiecuttersSteve Piercy
2016-12-23remove style-guide, defer to 1.9Steve Piercy
2016-11-20Rename Typographical Conventions to Style GuideSteve Piercy
2016-05-15revise latexindex.rstSteve Piercy
- add designdefense, quick_tour, quick_tutorial, p* scripts, change history
2013-09-08remove bfg conversion chapterChris McDonough
2013-08-16restore earlier fixes on latexindexSteve Piercy
don't make up funny words and use explicit 32- or 64-bit phrase
2013-08-13Merge remote-tracking branch 'origin/master' into docs.gettingstartedPaul Everitt
Conflicts: docs/index.rst docs/latexindex.rst setup.py
2013-08-03Some more occurrences of "application framework".Paul Everitt
2013-07-28Merge branch 'master' into dslatten-patch-1Chris McDonough
2013-07-28use :orphan: for latexindex tooChris McDonough
2013-07-28Improve consistency between latexindex.rst and index.rst some moreTshepang Lekhonkhobe
this adds to a70d54c
2013-07-23Remove references to relocated PyCharm tutorialSteve Piercy
2013-07-17Improve consistency between latexindex.rst and index.rst.Steve Piercy
2013-07-16- Correct titleSteve Piercy
- Synch order of chapters
2012-09-16docs and testChris McDonough
2012-09-13add upgrading chapter, make docs render againChris McDonough
2011-12-16- Removed the "Running Pyramid on Google App Engine" tutorial from the mainChris McDonough
docs. It survives on in the Cookbook (http://docs.pylonsproject.org/projects/pyramid_cookbook/en/latest/gae.html). Rationale: it provides the correct info for the Python 2.5 version of GAE only, and this version of Pyramid does not support Python 2.5.
2011-12-03add skeleton for using introspection chapterChris McDonough
2011-12-03break out 'extending config' into exconfig and add stuff about the action ↵Chris McDonough
method; move startup and router chapters to earlier in toc
2011-08-22- Use [app:main] instead of a pipeline in all scaffolds and tutorialsChris McDonough
and narrative docs. - Break out awkward description of PasteDeploy entry points from project chapter into its own Paste chapter.
2011-08-13- Added a Logging chapter to the narrative docs (based on the Pylons loggingChris McDonough
docs, thanks Phil).
2011-07-20- Reordered chapters in narrative section for better new user friendliness.Chris McDonough
- Added more indexing markers to sections in documentation.
2011-01-30reorder tutorial chaptersChris McDonough
2011-01-29- Moved "Using ZODB With ZEO" and "Using repoze.catalog Within Pyramid"Chris McDonough
tutorials out of core documentation and into the Pyramid Tutorials site (http://docs.pylonsproject.org/projects/pyramid_tutorials/dev/).
2011-01-21- Move content of "Forms" chapter back to "Views" chapter; I can't think of aChris McDonough
better place to put it.
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-17fix merge conflictCasey Duncan
2011-01-16remove handler reference from latexindexChris McDonough
2011-01-15break out handlers into their own chapt once moreCasey Duncan
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-31add much ado chapt to book tocCasey Duncan
2010-12-27include handler, translationdir, and localenegotiator zcml references in PDFChris McDonough
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