summaryrefslogtreecommitdiff
path: root/docs/tutorials
AgeCommit message (Collapse)Author
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-17paster templates now use the name "main" to represent the function that ↵d2m
returns a WSGI application
2010-11-12fix tutorial to not update the context with the content of ↵Chris McDonough
request.matchdict, unnecessary and breaks now that request has a matchdict of None
2010-11-11point at pyramid_viewgroup, todo gardeningChris McDonough
2010-11-11- SQLAlchemy+urldispach wiki (``wiki2``) tutorial updated due to changes toChris McDonough
``pyramid_routesalchemy`` paster template.
2010-11-10fix wiki tutorial based on changes to zodb paster templateChris 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-09be helpful about which tutorial to point people atChris McDonough
2010-11-08Merge branch 'loginx-master'Chris McDonough
2010-11-08 * Removed redundant doc sectionXavier Spriet
2010-11-08tutorial.ini -> development.iniChris McDonough
2010-11-07Merge branch 'mgedmin-master'Chris McDonough
2010-11-07 * Use edit.pt instead of view.pt for the add_page view callable in the wiki ↵Xavier Spriet
tutorial.
2010-11-07 * Use edit.pt instead of view.pt for the add_page view callable in the wiki ↵Xavier Spriet
tutorial.
2010-11-07Fix file type for literalinclude.Marius Gedminas
2010-11-05use the latest pylons.css for all tutorialsChris McDonough
2010-11-05fix url to sourceChris McDonough
2010-11-04Added missing style.css file to tutorialsBlaise Laflamme
2010-11-04- Move static dir from pkg/templates/ to /pkg/ in pyramid_* paster templates.Chris McDonough
2010-11-04Updated starter page in tutorialsBlaise Laflamme
2010-11-04fix wiki2 tutorial (it was busted)Chris McDonough
2010-11-04- The SQL Wiki tutorial was updated to take into account changes to theChris McDonough
``pyramid_routesalchemy`` paster template.
2010-11-04update tutorials to account for paster template changesChris McDonough
2010-11-04remove r.b.skins reference, note that we need an analogue for r.b.viewgroupChris McDonough
2010-11-04bfg->pyramid, account for paster template changesChris McDonough
2010-11-04- The ZODB Wiki tutorial was updated to take into account changes to theChris McDonough
``pyramid_zodb`` paster template.
2010-11-02discuss->develChris McDonough
2010-10-29- The ``bfgshell`` paster command is now named ``pshell``.Chris McDonough
2010-10-29repoze.bfg -> pyramidChris McDonough
2010-10-29bfg_view -> view_configChris McDonough
2010-10-26readd make_app (karl depends on it)Chris McDonough
2010-10-25add httpexceptions docsChris McDonough
2010-10-25qualify development typeChris McDonough
2010-10-25spelingChris McDonough
2010-10-25wordingChris McDonough
2010-10-25add a tutorial for converting BFG apps to pyramidChris McDonough
2010-10-25convert more docs from bfg to pyramidChris McDonough
2010-10-25convert remainder of docs to use pyramid instead of repoze.bfgChris McDonough
2010-10-25remove bfgwiki2 old dirChris McDonough
2010-10-25adjust wiki2 tutorial for pyramidChris McDonough
2010-10-25rename bfgwiki to wikiChris McDonough
2010-10-25rename bfgwiki to wikiChris McDonough
2010-10-25convert bfgwiki tutorial to pyramidChris McDonough
2010-10-25first cut at converting bfg to pyramidChris McDonough
2010-10-14long linesChris McDonough
2010-10-14updateChris McDonough
2010-10-13merge tutorialfix branchChris McDonough
2010-10-12double howeverChris McDonough
2010-09-09fix typoDavid Glick
2010-09-08- The ``repoze.bfg.urldispatch.Route`` constructor (not an API) nowChris McDonough
accepts a different ordering of arguments. Previously it was ``(pattern, name, factory=None, predicates=())``. It is now ``(name, pattern, factory=None, predicates=())``. This is in support of consistency with ``configurator.add_route``. - The ``repoze.bfg.urldispatch.RoutesMapper.connect`` method (not an API) now accepts a different ordering of arguments. Previously it was ``(pattern, name, factory=None, predicates=())``. It is now ``(name, pattern, factory=None, predicates=())``. This is in support of consistency with ``configurator.add_route``. - The ``repoze.bfg.urldispatch.RoutesMapper`` object now has a ``get_route`` method which returns a single Route object or ``None``. - A new interface ``repoze.bfg.interfaces.IRoute`` was added. The ``repoze.bfg.urldispatch.Route`` object implements this interface. - The canonical attribute for accessing the routing pattern from a route object is now ``pattern`` rather than ``path``. - The argument to ``repoze.bfg.configuration.Configurator.add_route`` which was previously called ``path`` is now called ``pattern`` for better explicability. For backwards compatibility purposes, passing a keyword argument named ``path`` to ``add_route`` will still work indefinitely. - The ``path`` attribute to the ZCML ``route`` directive is now named ``pattern`` for better explicability. The older ``path`` attribute will continue to work indefinitely. - All narrative, API, and tutorial docs which referred to a route pattern as a ``path`` have now been updated to refer to them as a ``pattern``. - The routesalchemy template has been updated to use ``pattern`` in its route declarations rather than ``path``.