summaryrefslogtreecommitdiff
path: root/docs/narr
AgeCommit message (Collapse)Author
2011-01-18- Most references to ZCML in narrative chapters have been removed orChris 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-17fix merge conflictCasey Duncan
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-16document 'includeme'Chris McDonough
2011-01-16remove reference to obsolete begin() methodCasey Duncan
2011-01-16simplify and shorten long sentenceCasey Duncan
2011-01-16move however for better flowCasey Duncan
2011-01-16add a note explaining why you might want to use envarsCasey Duncan
2011-01-16clarifyCasey Duncan
2011-01-15promote event listener config topics to subheadings. Topic formatting is too ↵Casey Duncan
distracting imo
2011-01-15clarify by promoting long parenthetical to its own sentenceCasey Duncan
2011-01-15add missing wordCasey Duncan
2011-01-15XXX explain the authentication/authorization separate in pyramid. Confirm ↵Casey Duncan
this is correct XXX
2011-01-15slight clarificationCasey Duncan
2011-01-15reword security intro paragraphCasey Duncan
2011-01-15our => theCasey Duncan
2011-01-15break out handlers into their own chapt once moreCasey Duncan
2011-01-15Docs updateRalph Bean
- One small typo fix - Added mention of MANIFEST.in for bundling non-Python-source files
2011-01-13rendering fixesChris McDonough
2011-01-13First pass at documenting the __action_decorator__ feature of a view handler.Rob Miller
2011-01-12Minor edits, typo fixes, term consistency changes.Rob Miller
2011-01-12Reformatted myproject mytemplate.ptBlaise Laflamme
2011-01-12Changed google font link and use request.static_url in myprojectBlaise Laflamme
2011-01-12Changed some references from pylonshq.com to pylonsproject.orgBlaise Laflamme
2011-01-12fix pathChris McDonough
2011-01-12- Document the ``request.override_renderer`` attribute within the narrativeChris McDonough
"Renderers" chapter in a section named "Overriding A Renderer at Runtime".
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-09add reference targetChris McDonough
2011-01-08Merge branch '1.0a8' of https://github.com/tomlikestorock/pyramid into ↵Chris McDonough
tomlikestorock-1.0a8
2011-01-08fixing typotomlikestorock
2011-01-08redocument relationship between get_csrf_token and new_csrf_tokenChris McDonough
2011-01-08fix renderingsChris McDonough
2011-01-07- Document ``Configurator.set_view_mapper``.Chris McDonough
- Document ``__view_mapper__`` attribute and ``mapper`` argument to view configuration for view callable view mapper preference.
2011-01-07- Allow ``decorator`` and ``mapper`` arguments to view ZCML directive.Chris McDonough
- Document ``decorator`` and ``mapper`` arguments in various places.
2011-01-06get rid of incorrect usage of threadlocals during configuration in venusian ↵Chris McDonough
example
2011-01-06Typo: python setup.py develop.py shouldn't have that .py at the end.Marius Gedminas
2011-01-06remove comment, it's more or less answeredCasey Duncan
2011-01-06clarify by promoting parenthetical, add comment requesting some adviceCasey Duncan
2011-01-06clarifyCasey Duncan
2011-01-05add parens to method referencesCasey Duncan
2011-01-05forgot an important session feature in summaryCasey Duncan
2011-01-05add summary paragraph to tie things together betterCasey Duncan
2011-01-05incorporate return type and queue semantics into same paragraphCasey Duncan
2011-01-05clarify behavior of allow_duplicateCasey Duncan
2011-01-05remove redundant sentenceCasey Duncan
2011-01-05add parens to method referencesCasey Duncan
2011-01-05don't need linenos for one lineCasey Duncan
2011-01-05combine flash and csrf into sessions chaptCasey Duncan
2011-01-05reduce strength of assertionCasey Duncan