| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-03 | modified MyProject src | Blaise Laflamme | |
| 2013-09-05 | update the MyProject example app to use pyramid_chameleon | Michael Merickel | |
| 2013-08-03 | "Web Application Development Framework" -> "Web Framework". Yay. | Paul Everitt | |
| 2013-03-04 | fix #311 | Tshepang Lekhonkhobe | |
| 2012-11-29 | Sync MyProject files with the starter scaffold | Patricio Paez | |
| - Line numbers are mentioned only in the Creating a Pyramid Project chapter; those that are affected were updated. | |||
| 2012-07-29 | prettify CSS stored in docs tutorials | David Gay | |
| 2012-03-17 | - Remove references to do-nothing ``pyramid.debug_templates`` setting in all | Chris McDonough | |
| Pyramid-provided ``.ini`` files. This setting previously told Chameleon to render better exceptions; now Chameleon always renders nice exceptions regardless of the value of this setting. Fixes #491. | |||
| 2012-02-19 | - Put ``pyramid.includes`` targets within ini files in scaffolds on separate | Chris McDonough | |
| lines in order to be able to tell people to comment out only the ``pyramid_debugtoolbar`` line when they want to disable the toolbar. | |||
| 2012-01-02 | have sample scaffold depend on waitress | Chris McDonough | |
| 2012-01-02 | - Use the ``waitress`` WSGI server instead of ``wsgiref`` in scaffolding. | Chris McDonough | |
| 2011-12-09 | fix links again | Chris McDonough | |
| 2011-12-09 | fix template links | Chris McDonough | |
| 2011-12-05 | the starter scaffold now uses url dispatch; add a minimal section about ↵ | Chris McDonough | |
| using another WSGI server; random docs fixes | |||
| 2011-11-26 | fix to match starter package | Chris McDonough | |
| 2011-11-12 | make myproject project relocatable (as per Ken's changes) | Chris McDonough | |
| 2011-10-06 | remove stray references to Paste | Chris McDonough | |
| 2011-10-06 | remove all reference to the paster command-line utility | Chris McDonough | |
| 2011-08-22 | fix stray inclusion of weberror; move manifest description | Chris McDonough | |
| 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-13 | - Projects created via a scaffold no longer depend on the ``WebError`` | Chris McDonough | |
| package at all; configuration in the ``production.ini`` file which used to require its ``error_catcher`` middleware has been removed. Configuring error catching / email sending is now the domain of the ``pyramid_exclog`` package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/). | |||
| 2011-08-11 | fix docs, scaffolds, and tutorials to use pyramid.includes | Chris McDonough | |
| 2011-08-09 | fix project.rst to deal with scaffold changes | Chris McDonough | |
| 2011-07-30 | Updated all of the docs to reflect the new pyramid.* settings prefix. | Michael Merickel | |
| 2011-07-21 | - Change all scaffolding templates that point to docs.pylonsproject.org to | Chris McDonough | |
| use ``/projects/pyramid/current`` rather than ``/projects/pyramid/dev``. | |||
| 2011-01-28 | convert all tabs to spaces in templates (sorry, blaise, i may have to use an ↵ | Chris McDonough | |
| older version of sphinx which doesnt respect tab-width) | |||
| 2011-01-27 | this line is too long to fit in the book; cheat | Chris McDonough | |
| 2011-01-25 | - Use © instead of copyright symbol in paster templates / tutorial | Chris McDonough | |
| templates for the benefit of folks who cutnpaste and save to a non-UTF8 format. | |||
| 2011-01-21 | include txt, mako, xml, html | Chris McDonough | |
| 2011-01-21 | - Add a ``MANIFEST.in`` file to each paster template. See | Chris McDonough | |
| https://github.com/Pylons/pyramid/issues#issue/95 Closes issue #95. | |||
| 2011-01-21 | deal with the addition of production.ini | Chris McDonough | |
| 2011-01-12 | Reformatted myproject mytemplate.pt | Blaise Laflamme | |
| 2011-01-12 | Changed google font link and use request.static_url in myproject | Blaise Laflamme | |
| 2011-01-12 | Changed some references from pylonshq.com to pylonsproject.org | Blaise Laflamme | |
| 2011-01-12 | Features | Chris 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()``. | |||
| 2010-12-19 | fix startup chapter | Chris McDonough | |
| 2010-12-18 | model -> resource | Chris McDonough | |
| 2010-12-18 | model -> resource | 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-09 | fix docs: pyramid.configuration -> pyramid.config | Chris McDonough | |
| 2010-11-28 | Narrative doc cleanup | Blaise Laflamme | |
| 2010-11-27 | Updated MyProject template + snapshot in narrative doc | Blaise Laflamme | |
| 2010-11-21 | - Add logging configuration to all paster templates. | Chris McDonough | |
| - ``pyramid_alchemy``, ``pyramid_routesalchemy``, and ``pylons_sqla`` paster templates now use idiomatic SQLAlchemy configuration in their respective ``.ini`` files and Python code. | |||
| 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-10 | fix project chapter to deal with paster template changes | Chris McDonough | |
| 2010-11-04 | - Move static dir from pkg/templates/ to /pkg/ in pyramid_* paster templates. | Chris McDonough | |
| 2010-11-04 | fix project documentation to account for starter paster template changes | Chris McDonough | |
| 2010-11-04 | fix project documentation to account for starter paster template changes | Chris McDonough | |
| 2010-10-25 | convert narrative docs to Pyramid | Chris McDonough | |
| 2010-10-25 | first cut at converting bfg to pyramid | Chris McDonough | |
