summaryrefslogtreecommitdiff
path: root/docs/narr
AgeCommit message (Collapse)Author
2011-01-28convert 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-27remove bacticks from interface descriptionChris McDonough
2011-01-27module name contractionsChris McDonough
2011-01-27spell out 20Chris McDonough
2011-01-27this line is too long to fit in the book; cheatChris McDonough
2011-01-27method name contractionsChris McDonough
2011-01-27method name contractions; move details of view lookup to endChris McDonough
2011-01-27fix dangling referencesChris McDonough
2011-01-27- Beef up documentation related to ``set_default_permission``: explicitlyChris McDonough
mention that default permissions also protect exception views.
2011-01-26fix typo in "URL Dispatch section mentioned by some on mailing list: ↵michr
https://groups.google.com/group/pylons-devel/browse_thread/thread/511291709aec2b4a
2011-01-25- Use © instead of copyright symbol in paster templates / tutorialChris McDonough
templates for the benefit of folks who cutnpaste and save to a non-UTF8 format.
2011-01-24apply recomenndations from grahamChris McDonough
2011-01-21- Minimally explain usage of custom regular expressions in URL dispatchChris McDonough
replacement markers within URL Dispatch chapter.
2011-01-21include txt, mako, xml, htmlChris 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-21point at Pyramid Cookbook explicitlyChris McDonough
2011-01-21depend on intersphinx to point at Mako i18n recipeChris McDonough
2011-01-21- Slightly improved interface docs for ``IAuthorizationPolicy``.Chris McDonough
2011-01-21- Move content of "Forms" chapter back to "Views" chapter; I can't think of aChris McDonough
better place to put it.
2011-01-21Incorporate suggestions from https://github.com/Pylons/pyramid/issues/#issue/57Chris McDonough
2011-01-21- Added "What's New in Pyramid 1.0" chapter to HTML rendering ofChris McDonough
documentation.
2011-01-21- Add (minimal) documentation about using I18N within Mako templates toChris McDonough
"Internationalization and Localization" narrative chapter.
2011-01-21mention pyramid_sqlaChris McDonough
2011-01-21add caveat for PyPy and Jython usersChris McDonough
2011-01-21yes, reallyChris McDonough
2011-01-21- Add docs for ``add_finished_callback``, ``add_response_callback``,Chris McDonough
``route_path``, ``route_url``, and ``static_url`` methods to ``pyramid.request.Request`` API docs.
2011-01-21deal with the addition of production.iniChris McDonough
2011-01-19- Added "Adding Methods to the Configurator via ``add_directive``" section toChris McDonough
Advanced Configuration narrative chapter.
2011-01-19- Fix deprecated example showing ``chameleon_zpt`` API call in testingChris McDonough
narrative chapter.
2011-01-19resource->assetChris McDonough
2011-01-19point to pyramid_zcmlChris McDonough
2011-01-19inappropriate indentationChris McDonough
2011-01-19point at pyramid_zcmlChris McDonough
2011-01-19add Python to identify kind of packageChris McDonough
2011-01-19clarifyChris McDonough
2011-01-19- When a ``pyramid.exceptions.Forbidden`` error is raised, its status codeChris McDonough
now ``403 Forbidden``. It was previously ``401 Unauthorized``, for backwards compatibility purposes with ``repoze.bfg``. This change will cause problems for users of Pyramid with ``repoze.who``, which intercepts ``401 Unauthorized`` by default, but allows ``403 Forbidden`` to pass through. Those deployments will need to configure ``repoze.who`` to also react to ``403 Forbidden``.
2011-01-19handlers are no longer a part of the packageChris McDonough
2011-01-18Merge https://github.com/Pylons/pyramidCasey Duncan
2011-01-18add word that to clarifyCasey Duncan
2011-01-18fix typooCasey Duncan
2011-01-18resource => assetCasey Duncan
2011-01-18resource => assetCasey Duncan
2011-01-18they => theCasey Duncan
2011-01-18remove empty See AlsoCasey Duncan
2011-01-18add word chapterCasey Duncan
2011-01-18fix spacingCasey Duncan
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.