| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-11-17 | - Removed ``zodbsessions`` tutorial chapter. It's still useful, but we now | Chris McDonough | |
| have a SessionFactory abstraction which competes with it, and maintaining documentation on both ways to do it is a distraction. | |||
| 2010-11-17 | paster templates now use the name "main" to represent the function that ↵ | d2m | |
| returns a WSGI application | |||
| 2010-11-12 | fix 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-11 | point at pyramid_viewgroup, todo gardening | Chris McDonough | |
| 2010-11-11 | - SQLAlchemy+urldispach wiki (``wiki2``) tutorial updated due to changes to | Chris McDonough | |
| ``pyramid_routesalchemy`` paster template. | |||
| 2010-11-10 | fix wiki tutorial based on changes to zodb paster template | Chris 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-09 | be helpful about which tutorial to point people at | Chris McDonough | |
| 2010-11-08 | Merge branch 'loginx-master' | Chris McDonough | |
| 2010-11-08 | * Removed redundant doc section | Xavier Spriet | |
| 2010-11-08 | tutorial.ini -> development.ini | Chris McDonough | |
| 2010-11-07 | Merge 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-07 | Fix file type for literalinclude. | Marius Gedminas | |
| 2010-11-05 | use the latest pylons.css for all tutorials | Chris McDonough | |
| 2010-11-05 | fix url to source | Chris McDonough | |
| 2010-11-04 | Added missing style.css file to tutorials | Blaise Laflamme | |
| 2010-11-04 | - Move static dir from pkg/templates/ to /pkg/ in pyramid_* paster templates. | Chris McDonough | |
| 2010-11-04 | Updated starter page in tutorials | Blaise Laflamme | |
| 2010-11-04 | fix wiki2 tutorial (it was busted) | Chris McDonough | |
| 2010-11-04 | - The SQL Wiki tutorial was updated to take into account changes to the | Chris McDonough | |
| ``pyramid_routesalchemy`` paster template. | |||
| 2010-11-04 | update tutorials to account for paster template changes | Chris McDonough | |
| 2010-11-04 | remove r.b.skins reference, note that we need an analogue for r.b.viewgroup | Chris McDonough | |
| 2010-11-04 | bfg->pyramid, account for paster template changes | Chris McDonough | |
| 2010-11-04 | - The ZODB Wiki tutorial was updated to take into account changes to the | Chris McDonough | |
| ``pyramid_zodb`` paster template. | |||
| 2010-11-02 | discuss->devel | Chris McDonough | |
| 2010-10-29 | - The ``bfgshell`` paster command is now named ``pshell``. | Chris McDonough | |
| 2010-10-29 | repoze.bfg -> pyramid | Chris McDonough | |
| 2010-10-29 | bfg_view -> view_config | Chris McDonough | |
| 2010-10-26 | readd make_app (karl depends on it) | Chris McDonough | |
| 2010-10-25 | add httpexceptions docs | Chris McDonough | |
| 2010-10-25 | qualify development type | Chris McDonough | |
| 2010-10-25 | speling | Chris McDonough | |
| 2010-10-25 | wording | Chris McDonough | |
| 2010-10-25 | add a tutorial for converting BFG apps to pyramid | Chris McDonough | |
| 2010-10-25 | convert more docs from bfg to pyramid | Chris McDonough | |
| 2010-10-25 | convert remainder of docs to use pyramid instead of repoze.bfg | Chris McDonough | |
| 2010-10-25 | remove bfgwiki2 old dir | Chris McDonough | |
| 2010-10-25 | adjust wiki2 tutorial for pyramid | Chris McDonough | |
| 2010-10-25 | rename bfgwiki to wiki | Chris McDonough | |
| 2010-10-25 | rename bfgwiki to wiki | Chris McDonough | |
| 2010-10-25 | convert bfgwiki tutorial to pyramid | Chris McDonough | |
| 2010-10-25 | first cut at converting bfg to pyramid | Chris McDonough | |
| 2010-10-14 | long lines | Chris McDonough | |
| 2010-10-14 | update | Chris McDonough | |
| 2010-10-13 | merge tutorialfix branch | Chris McDonough | |
| 2010-10-12 | double however | Chris McDonough | |
| 2010-09-09 | fix typo | David Glick | |
| 2010-09-08 | - The ``repoze.bfg.urldispatch.Route`` constructor (not an API) now | Chris 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``. | |||
