| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-01-15 | General reformatting of the wiki and wiki2 tutorials to eliminate | John 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-06 | Added missing images | Blaise Laflamme | |
| 2011-01-06 | Added small header support to css paster templates, using small header for ↵ | Blaise Laflamme | |
| wiki tutorial | |||
| 2011-01-06 | Updated wiki tutorial docs | Blaise Laflamme | |
| 2011-01-06 | Removed login option from tutorial defining views templates | Blaise Laflamme | |
| 2011-01-05 | Updated 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-03 | Merge branch 'master' of https://github.com/nek4life/pyramid into ↵ | Chris McDonough | |
| nek4life-master | |||
| 2010-12-30 | Renamed '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 been | Chris McDonough | |
| removed from the tutorials section. It was moved to the ``pyramid_tutorials`` Github repository. | |||
| 2010-12-23 | specify ordering unimportance | Chris McDonough | |
| 2010-12-23 | tutorial accuracy and wording improvements | Chris McDonough | |
| 2010-12-23 | fix awkward wording | Chris McDonough | |
| 2010-12-23 | fix references | Chris McDonough | |
| 2010-12-22 | right example language | Chris McDonough | |
| 2010-12-22 | amend decisions | Chris McDonough | |
| 2010-12-22 | - The ``pyramid_zodb`` Paster template no longer employs ZCML. Instead, it | Chris McDonough | |
| is based on scanning. - Changed the "ZODB + Traversal Wiki Tutorial" based on changes to ``pyramid_zodb`` Paster template. | |||
| 2010-12-19 | explain terminological and envvar differences from BFG | Chris McDonough | |
| 2010-12-18 | title normalization | Chris McDonough | |
| 2010-12-18 | resource/asset normalization | Chris McDonough | |
| 2010-12-18 | model->resource; make docs render without warnings | Chris McDonough | |
| 2010-12-16 | Features | Chris 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-16 | Added debug_matched configuration setting. | Joachim Krebs | |
| 2010-12-15 | - Fix reference to ``repoze.bfg.traversalwrapper`` in "Models" chapter (point | Chris McDonough | |
| at ``pyramid_traversalwrapper`` instead). | |||
| 2010-12-15 | - If you followed it to-the-letter, the ZODB+Traversal Wiki tutorial would | Chris 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-15 | closes #66 | Chris McDonough | |
| 2010-12-09 | Merge branch 'twophase' | Chris McDonough | |
| Conflicts: pyramid/configuration.py | |||
| 2010-12-09 | fix docs: pyramid.configuration -> pyramid.config | Chris McDonough | |
| 2010-12-05 | Updated references to 'app' by 'main'. | Bertrand Janin | |
| 2010-11-28 | remove awkward wording | Chris McDonough | |
| 2010-11-27 | bfg -> pyramid | Chris McDonough | |
| 2010-11-21 | - SQLAlchemy+URLDispatch tutorial updated to integrate changes to | Chris McDonough | |
| ``pyramid_routesalchemy`` template. | |||
| 2010-11-20 | convert stray references to colon routing syntax to squiggly syntax | Chris McDonough | |
| 2010-11-19 | - Remove calls to config.begin()/config.end() from startup config code in | Chris McDonough | |
| tutorials and paster templates (no longer required). | |||
| 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 | |
