summaryrefslogtreecommitdiff
path: root/docs/narr/project.rst
AgeCommit message (Collapse)Author
2011-12-05add whatsnew-1.3; gardenChris McDonough
2011-12-05the starter scaffold now uses url dispatch; add a minimal section about ↵Chris McDonough
using another WSGI server; random docs fixes
2011-11-12- The ``alchemy`` scaffold has been removed.Chris McDonough
- The ``routesalchemy`` scaffold has been renamed ``alchemy``.
2011-11-12make myproject project relocatable (as per Ken's changes)Chris McDonough
2011-10-17fix note renderingChris McDonough
2011-10-06remove stray references to PasteChris McDonough
2011-10-06remove all reference to the paster command-line utilityChris McDonough
2011-09-23fixed up all the warning dealing ..note and ..warnmichr
added a hide toc for glossary to prevent warnings
2011-09-05add explanation of why to use production.iniChris McDonough
2011-09-04Add Windows analogues to all command lines. Closes #144Chris McDonough
2011-08-22fix stray inclusion of weberror; move manifest descriptionChris McDonough
2011-08-22cleanupsChris McDonough
2011-08-22- Use [app:main] instead of a pipeline in all scaffolds and tutorialsChris McDonough
and narrative docs. - Break out awkward description of PasteDeploy entry points from project chapter into its own Paste chapter.
2011-08-20- Mention debug toolbar in tutorials.Chris McDonough
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-11fix docs, scaffolds, and tutorials to use pyramid.includesChris McDonough
2011-08-09instructions about how to turn the toolbar offChris McDonough
2011-08-09fix project.rst to deal with scaffold changesChris McDonough
2011-07-30Updated all of the docs to reflect the new pyramid.* settings prefix.Michael Merickel
2011-07-24missing wordCarlos de la Guardia
2011-07-24Removed extra 'if'Carlos de la Guardia
2011-07-24typoCarlos de la Guardia
2011-07-24extra 's' removedCarlos de la Guardia
2011-07-23replace extra 'the' with 'be'Carlos de la Guardia
2011-07-23Removed repetitive and badly formed sentenceCarlos de la Guardia
2011-07-20add more index markersChris McDonough
2011-07-13move all paster commands to a separate chapterChris McDonough
2011-07-12add docs about logging configChris McDonough
2011-07-10add info to changes.txt and whatsnew about pshell changes; removed unused ↵Chris McDonough
import and unwrap string
2011-07-07Added/updated documentation for the new interactive shell.Michael Merickel
2011-06-02Fix wrong parameter name.Christoph Zwerschke
2011-05-26Fix typo to close issue 196.Carlos de la Guardia
2011-04-11pyramid_sqla -> akhetChris McDonough
2011-04-11add description of MANIFEST.inChris McDonough
2011-04-11make prettierChris McDonough
2011-03-25Moved the content that was put into whatsnew-1.0.rst into the CHANGES.txtJoe Dallago
file, b/c the terminology change doesn't apply to version 1.0. Also changed the output of the paster create command in project.rst back to its original state.
2011-03-24It was decided that pyramid would undergo a terminology change.Joe Dallago
'Paster templates' will now be refered to as 'scaffolds,' while 'rendered templates' will remain as 'templates.' I have changed the docs to reflect this change in terminology.
2011-02-12fix typoChris McDonough
2011-01-29no longer brokenChris McDonough
2011-01-29renderingsChris McDonough
2011-01-21- Add a ``MANIFEST.in`` file to each paster template. SeeChris McDonough
https://github.com/Pylons/pyramid/issues#issue/95 Closes issue #95.
2011-01-21mention pyramid_sqlaChris McDonough
2011-01-21add caveat for PyPy and Jython usersChris McDonough
2011-01-21deal with the addition of production.iniChris McDonough
2011-01-19add Python to identify kind of packageChris McDonough
2011-01-18- Most references to ZCML in narrative chapters have been removed orChris McDonough
redirected to ``pyramid_zcml`` locations.
2011-01-16- The ``pylons_minimal``, ``pylons_basic`` and ``pylons_sqla`` pasterChris McDonough
templates were removed. Use ``pyramid_sqla`` (available from PyPI) as a generic replacement for Pylons-esque development. - All references to ``add_handler`` and the ``handler`` ZCML directive have been removed from the docs, and stubs which point to ``pylons_handlers`` package have replaced them.
2011-01-15Docs updateRalph Bean
- One small typo fix - Added mention of MANIFEST.in for bundling non-Python-source files
2011-01-12FeaturesChris 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()``.
2011-01-06Typo: python setup.py develop.py shouldn't have that .py at the end.Marius Gedminas