summaryrefslogtreecommitdiff
path: root/docs/tutorials
AgeCommit message (Collapse)Author
2011-01-21include txt, mako, xml, htmlChris McDonough
2011-01-21- Add a ``MANIFEST.in`` file to each paster template. SeeChris McDonough
https://github.com/Pylons/pyramid/issues#issue/95 Closes issue #95.
2011-01-21remove descriptions from titlesChris McDonough
2011-01-21deal with the addition of production.iniChris McDonough
2011-01-19adjust wiki2 tutorial based on changes to pyramid_routesalchemy templateChris McDonough
2011-01-19readd docutilsChris McDonough
2011-01-19adjust tutorial sources against pyramid_zodb changesChris 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-18get maillist link rightChris McDonough
2011-01-18- Most references to ZCML in narrative chapters have been removed orChris McDonough
redirected to ``pyramid_zcml`` locations.
2011-01-15credit john shipman appropriatelyChris McDonough
2011-01-15Merge branch 'longlines' of git://github.com/johnwshipman/pyramidBlaise Laflamme
2011-01-15General reformatting of the wiki and wiki2 tutorials to eliminateJohn Shipman
any overly long lines in the PDF rendering. Changes to .rst files: (docs/tutorials/wiki/authorization.rst) (docs/tutorials/wiki/definingviews.rst) (docs/tutorials/wiki2/authorization.rst) (docs/tutorials/wiki2/definingviews.rst) 1. For included templates, added :tab-width: 2 options. 2. wiki2/authorization.rst: Wrong markup for file names __init__.py and views.py just after the subhead "Adding security.py". Changes to .py files: Folded a few long lines. (docs/tutorials/wiki/src/basiclayout/tutorial/views.py) (docs/tutorials/wiki/src/authorization/tutorial/views.py) (docs/tutorials/wiki/src/views/tutorial/views.py) (docs/tutorials/wiki2/src/basiclayout/tutorial/models.py) (docs/tutorials/wiki2/src/models/tutorial/models.py) Changes to .pt files: Broke long lines; reformatted for 2-space indentation using tabs. (docs/tutorials/wiki/src/authorization/tutorial/templates/edit.pt) (docs/tutorials/wiki/src/authorization/tutorial/templates/login.pt) (docs/tutorials/wiki/src/authorization/tutorial/templates/view.pt) (docs/tutorials/wiki/src/views/tutorial/templates/edit.pt) (docs/tutorials/wiki/src/views/tutorial/templates/view.pt) (docs/tutorials/wiki2/src/authorization/tutorial/templates/edit.pt) (docs/tutorials/wiki2/src/authorization/tutorial/templates/login.pt) (docs/tutorials/wiki2/src/authorization/tutorial/templates/view.pt) (docs/tutorials/wiki2/src/views/tutorial/templates/edit.pt) (docs/tutorials/wiki2/src/views/tutorial/templates/view.pt)
2011-01-14Added tab-width: 2 to literalinclude to see if it formats better :)Blaise Laflamme
2011-01-12Changed google font link in tutorialsBlaise Laflamme
2011-01-12Changed some references from pylonshq.com to pylonsproject.orgBlaise Laflamme
2011-01-12FeaturesChris McDonough
-------- - ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` have been undeprecated. They are now the canonical setup and teardown APIs for test configuration, replacing "direct" creation of a Configurator. This is a change designed to provide a facade that will protect against any future Configurator deprecations. Paster Templates ---------------- - All paster templates now use ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` rather than creating a Configurator "by hand" within their ``tests.py`` module, as per decision in features above. Documentation ------------- - The wiki and wiki2 tutorials now use ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` rather than creating a Configurator "by hand", as per decision in features above. - The "Testing" narrative chapter now explains ``pyramid.testing.setUp`` and ``pyramid.testing.tearDown`` instead of Configurator creation and ``Configurator.begin()`` and ``Configurator.end()``.
2011-01-06Added missing imagesBlaise Laflamme
2011-01-06Added small header support to css paster templates, using small header for ↵Blaise Laflamme
wiki tutorial
2011-01-06Updated wiki tutorial docsBlaise Laflamme
2011-01-06Removed login option from tutorial defining views templatesBlaise Laflamme
2011-01-05Updated tutorial sources to use the new theme, use ↵Blaise Laflamme
request.static_url('{{package}}:static/foo.css') instead of ${request.application_url}/static/foo.css for static files
2011-01-03Merge branch 'master' of https://github.com/nek4life/pyramid into ↵Chris McDonough
nek4life-master
2010-12-30Renamed 'home' route to 'view_wiki' for consistency with the following ↵Charlie Choiniere
__init__.py examples.
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-23specify ordering unimportanceChris McDonough
2010-12-23tutorial accuracy and wording improvementsChris McDonough
2010-12-23fix awkward wordingChris McDonough
2010-12-23fix referencesChris McDonough
2010-12-22right example languageChris McDonough
2010-12-22amend decisionsChris McDonough
2010-12-22- The ``pyramid_zodb`` Paster template no longer employs ZCML. Instead, itChris McDonough
is based on scanning. - Changed the "ZODB + Traversal Wiki Tutorial" based on changes to ``pyramid_zodb`` Paster template.
2010-12-19explain terminological and envvar differences from BFGChris McDonough
2010-12-18title normalizationChris McDonough
2010-12-18resource/asset normalizationChris McDonough
2010-12-18model->resource; make docs render without warningsChris McDonough
2010-12-16FeaturesChris McDonough
-------- - Added ``debug_routematch`` configuration setting that logs matched routes (including the matchdict and predicates). Documentation ------------- - Added "Debugging Route Matching" section to the urldispatch narrative documentation chapter. - Added reference to ``BFG_DEBUG_ROUTEMATCH`` envvar and ``debug_routematch`` config file setting to the Environment narrative docs chapter.
2010-12-16Added debug_matched configuration setting.Joachim Krebs
2010-12-15- Fix reference to ``repoze.bfg.traversalwrapper`` in "Models" chapter (pointChris McDonough
at ``pyramid_traversalwrapper`` instead).
2010-12-15- If you followed it to-the-letter, the ZODB+Traversal Wiki tutorial wouldChris McDonough
instruct you to run a test which would fail because the view callable generated by the ``pyramid_zodb`` tutorial used a one-arg view callable, but the test in the sample code used a two-arg call. - Updated ZODB+Traversal tutorial setup.py of all steps to match what's generated by ``pyramid_zodb``.
2010-12-15closes #66Chris McDonough
2010-12-09Merge branch 'twophase'Chris McDonough
Conflicts: pyramid/configuration.py
2010-12-09fix docs: pyramid.configuration -> pyramid.configChris McDonough
2010-12-05Updated references to 'app' by 'main'.Bertrand Janin
2010-11-28remove awkward wordingChris McDonough
2010-11-27bfg -> pyramidChris McDonough
2010-11-21- SQLAlchemy+URLDispatch tutorial updated to integrate changes toChris McDonough
``pyramid_routesalchemy`` template.
2010-11-20convert stray references to colon routing syntax to squiggly syntaxChris McDonough
2010-11-19- Remove calls to config.begin()/config.end() from startup config code inChris McDonough
tutorials and paster templates (no longer required).
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.