| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-03-04 | point people at pylons-discuss rather than pylons-devel | Chris McDonough | |
| 2012-03-04 | garden titles of index | Chris McDonough | |
| 2012-01-30 | Hello world with traversal, linked from various places; plus some 'what this ↵ | Paul Winkler | |
| chapter is for' notes on the other traversal chapters. Hope this helps. | |||
| 2011-12-16 | - Removed the "Running Pyramid on Google App Engine" tutorial from the main | Chris 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-15 | we now use wsgiref which prints nothing | Chris McDonough | |
| 2011-12-14 | - Changed scaffolding machinery around a bit to make it easier for people who | Chris McDonough | |
| want to have extension scaffolds that can work across Pyramid 1.0.X, 1.1.X, 1.2.X and 1.3.X. See the new "Creating Pyramid Scaffolds" chapter in the narrative documentation for more info. - Added an API docs chapter for ``pyramid.scaffolds``. - Added a narrative docs chapter named "Creating Pyramid Scaffolds". - The ``template_renderer`` method of ``pyramid.scaffolds.PyramidScaffold`` was renamed to ``render_template``. If you were overriding it, you're a bad person, because it wasn't an API before now. But we're nice so we're letting you know. | |||
| 2011-12-05 | add whatsnew-1.3; garden | Chris McDonough | |
| 2011-12-03 | add skeleton for using introspection chapter | Chris McDonough | |
| 2011-12-03 | break out 'extending config' into exconfig and add stuff about the action ↵ | Chris McDonough | |
| method; move startup and router chapters to earlier in toc | |||
| 2011-09-29 | avoid warning for latexindex, foreword by putting them in a hidden toc | michr | |
| from now on complie docs strictly, turning warnings to errors exclude unnecssary static js files when compiling ePub | |||
| 2011-09-23 | fixed up all the warning dealing ..note and ..warn | michr | |
| added a hide toc for glossary to prevent warnings | |||
| 2011-09-08 | mention #pyramid irc channel | Michael | |
| 2011-08-27 | describe output | Chris McDonough | |
| 2011-08-27 | reword | Chris McDonough | |
| 2011-08-27 | reword | Chris McDonough | |
| 2011-08-25 | Merge pull request #257 from djay/master | Chris McDonough | |
| Included basic install steps on front page to make example complete | |||
| 2011-08-26 | include install and move firstapp higher up index | Dylan Jay | |
| 2011-08-25 | dont use duplicate target | Chris McDonough | |
| 2011-08-25 | use Response; fix text | Chris McDonough | |
| 2011-08-25 | include rather than repeat helloworld.py | Dylan Jay | |
| 2011-08-25 | use routes in firstapp as they are more familar to most and put hello world ↵ | Dylan Jay | |
| on the front page to make grab framework shoppers attention. | |||
| 2011-08-22 | - Use [app:main] instead of a pipeline in all scaffolds and tutorials | Chris McDonough | |
| and narrative docs. - Break out awkward description of PasteDeploy entry points from project chapter into its own Paste chapter. | |||
| 2011-08-21 | add a whatsnew-1.2 doc | Chris McDonough | |
| 2011-08-13 | - Added a Logging chapter to the narrative docs (based on the Pylons logging | Chris 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-07-16 | ordering | Chris McDonough | |
| 2011-07-13 | move all paster commands to a separate chapter | Chris McDonough | |
| 2011-05-14 | add 'What's new In Pyramid 1.1' document | Chris McDonough | |
| 2011-03-19 | update description of shootout | Chris McDonough | |
| 2011-03-15 | Restructured the routes wiki tutorial to make it easier to follow along. ↵ | Carlos de la Guardia | |
| Moved the routes tutorial above the traversal tutorial. | |||
| 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 a | Chris McDonough | |
| better place to put it. | |||
| 2011-01-20 | add first cut of whatsnew document | Chris McDonough | |
| 2011-01-19 | get rid of annoying note about bfg | Chris McDonough | |
| 2011-01-19 | handlers are no longer a part of the package | Chris McDonough | |
| 2011-01-18 | Merge https://github.com/Pylons/pyramid | Casey Duncan | |
| 2011-01-18 | - Most references to ZCML in narrative chapters have been removed or | Chris 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-15 | break out handlers into their own chapt once more | Casey Duncan | |
| 2011-01-12 | Changed some references from pylonshq.com to pylonsproject.org | Blaise Laflamme | |
| 2011-01-05 | combine flash and csrf into sessions chapt | Casey Duncan | |
| 2011-01-03 | add placeholder form handling chapt, may move to cookbook | Casey Duncan | |
| 2011-01-02 | Split view chapter, move view config after templates, some reordering in ↵ | Casey Duncan | |
| view config | |||
| 2010-12-31 | Remove 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-31 | Merge https://github.com/Pylons/pyramid | Casey Duncan | |
| 2010-12-31 | add Much ado about traversal chapter from Rob Miller, with light ↵ | Casey Duncan | |
| adaptations. Also remove some now redundant overview content in the Traversal chapter, which is now only details. | |||
| 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-26 | - Merge "Static Assets" chapter into the "Assets" chapter. | Chris McDonough | |
| 2010-12-24 | - Added "Advanced Configuration" narrative chapter which documents how to | Chris McDonough | |
| deal with configuration conflicts, two-phase configuration, ``include`` and ``commit``. | |||
| 2010-12-22 | - Added CSRF token generation, as described in the narrative chapter entitled | Chris McDonough | |
| "Preventing Cross-Site Request Forgery Attacks". | |||
