summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-09-26Quick Tour: shorten the setup part and point to Quick Tutorial Requirements ↵Paul Everitt
for more explanation. Cross link each Quick Tour section with its Quick Tutorial match.
2013-09-25Get pyramid_chameleon added to the quick tutorial, plus some other fixes for ↵Paul Everitt
Python 3.
2013-09-25Add some more of the up-front packages.Paul Everitt
2013-09-25Oops, need a $VENV path to easy_installPaul Everitt
2013-09-25Quick Tutorial: Improve the setup instructions (adapted from Steve Piercy's ↵Paul Everitt
work), particularly for Windows. Change all the steps to use $VENV/bin prefixes on commands (don't presume that they have done source env/bin/activate).
2013-09-24Merge branch 'docs.quicktutorial'Paul Everitt
2013-09-24add mention of PEP 453Steve Piercy
2013-09-24Change python version to 3.3Steve Piercy
2013-09-24Added a note to CHANGES.txt, push the quick tutorial.Paul Everitt
2013-09-24Update Requirements sectionSteve Piercy
2013-09-24Merge branch 'master' of https://github.com/Pylons/pyramidPaul Everitt
2013-09-22try to clarify the docs to avoid "if '__main__'" confusionMichael Merickel
2013-09-22better description of mako/chameleon bw incompat in changelog, update ↵Chris McDonough
whatsnew for 1.5
2013-09-22typoMichael Merickel
2013-09-20subrepo danceChris McDonough
2013-09-16Merge branch 'docs.quicktutorial'Paul Everitt
2013-09-16make example links clickable, for convenienceTshepang Lekhonkhobe
2013-09-16s/env/venv just for sake of consistencyTshepang Lekhonkhobe
2013-09-15Double 'instead' removed.Carlos de la Guardia
2013-09-15typoCarlos de la Guardia
2013-09-15typoCarlos de la Guardia
2013-09-14"useful...than" made no sense.Carlos de la Guardia
2013-09-14The sentence needed a conjunction.Carlos de la Guardia
2013-09-14rename ref mako_templates to available_template_system_bindingsSteve Piercy
2013-09-14use most recent version of themeChris McDonough
2013-09-13Fix naming of virtualenv prefix.Paul Everitt
2013-09-13All the references re-wired.Paul Everitt
2013-09-13First cut at import of quick tutorial.Paul Everitt
2013-09-11appeaseChris McDonough
2013-09-09Update theme.Tres Seaver
2013-09-09update docs page numbers (whimper)Chris McDonough
2013-09-09wordingChris McDonough
2013-09-09update numbers in pyramid-is-too-big sectionChris McDonough
2013-09-09remove self-flagellation about number of dependenciesChris McDonough
2013-09-08- The ``renderer_globals_factory`` argument to theChris McDonough
``pyramid.config.Configurator` constructor and its ``setup_registry`` method has been removed. The ``set_renderer_globals_factory`` method of ``pyramid.config.Configurator`` has also been removed. The (internal) ``pyramid.interfaces.IRendererGlobals`` interface was also removed. These arguments, methods and interfaces had been deprecated since 1.1. Use a ``BeforeRender`` event subscriber as documented in the "Hooks" chapter of the Pyramid narrative documentation instead of providing renderer globals values to the configurator.
2013-09-08- Removed the ability to pass the following arguments toChris McDonough
``pyramid.config.Configurator.add_route``: `view``, ``view_context``. ``view_for``, ``view_permission``, ``view_renderer``, and ``view_attr``. Using these arguments had been deprecated since Pyramid 1.1. Instead of passing view-related arguments to ``add_route``, use a separate call to ``pyramid.config.Configurator.add_view`` to associate a view with a route using its ``route_name`` argument. Note that this impacts the ``pyramid.config.Configurator.add_static_view`` function too, because it delegates to ``add_route``.
2013-09-08- Removed the ``pyramid.view.is_response`` function that had been deprecatedChris McDonough
since Pyramid 1.1. Use the ``pyramid.request.Request.is_response`` method instead.
2013-09-08- Removed the class named ``pyramid.view.static`` that had been deprecatedChris McDonough
since Pyramid 1.1. Instead use ``pyramid.static.static_view`` with ``use_subpath=True`` argument.
2013-09-08Update documentation to reflect the dotted python nameBert JW Regeer
2013-09-08fix docs after removing bfg conversion chapter, add a prominent link to the ↵Chris McDonough
quick tour
2013-09-08remove bfg conversion chapterChris McDonough
2013-09-08fix merge conflictChris McDonough
2013-09-07- The ``pyramid.events.NewResponse`` event is now sent **after** responseChris McDonough
callbacks are executed. It previously executed before response callbacks were executed. Rationale: it's more useful to be able to inspect the response after response callbacks have done their jobs instead of before. Closes #1116.
2013-09-06Update line numbers as appropriateBert JW Regeer
Removing __init__ moved some code around, update the line numbers as appropriate so that the right sections of code get highlighted.
2013-09-06Add small note showing example usage of MyModelBert JW Regeer
2013-09-06changed the explanation of the (now missing) __init__ methodsergey.volobuev
2013-09-06removed __init__ methods from SQLAlchemy models in the documentation because ↵sergey.volobuev
the latter generates a default constructor
2013-09-06apostropheMichael Merickel
2013-09-06fix some more broken referencesMichael Merickel
2013-09-06update the code in the wiki and wiki2 tutorials to use pyramid_chameleonMichael Merickel