summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-01-19clarifyChris McDonough
2011-01-19add more thanksChris McDonough
2011-01-19four->threeChris 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-19reformatChris McDonough
2011-01-19Add changelog entry about merging caseman-masterChris McDonough
2011-01-19handlers are no longer a part of the packageChris McDonough
2011-01-19Merge branch 'caseman-master'Chris McDonough
2011-01-18Merge https://github.com/Pylons/pyramidCasey Duncan
2011-01-18gardenChris McDonough
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-18get rid of __version__ indirectionChris McDonough
2011-01-18gardenChris McDonough
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-18get maillist link rightChris McDonough
2011-01-18prep for 1.0a10Chris McDonough
2011-01-18modernize design defense after zcml externalizationChris McDonough
2011-01-18Merge branch 'zcmlless'Chris McDonough
2011-01-18- Most references to ZCML in narrative chapters have been removed orChris McDonough
redirected to ``pyramid_zcml`` locations.
2011-01-18chameleon needs a threadlocal registry for looking up translationsChris McDonough
2011-01-18readd coverage for code that was only exercised by zcml integration testsChris McDonough
2011-01-18descriptionsChris McDonough
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-16remove references to pylons paster templatesChris McDonough
2011-01-16remove handler reference from latexindexChris McDonough
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-16Remove configurator.add_handler, handler-related functions and methods from ↵Chris McDonough
pyramid.view, handler ZCML directive. This functionality is to be moved to a "pyramid_handlers" package. Fix add_directive to properly persist directives across configurator creations.
2011-01-16document 'includeme'Chris McDonough
2011-01-16gardenChris McDonough
2011-01-16- When ``Configurator.include`` is passed a *module* as an argument, itChris McDonough
defaults to attempting to find and use a callable named ``includeme`` within that module. This makes it possible to use ``config.include('some.module')`` rather than ``config.include('some.module.somefunc')`` as long as the include function within ``some.module`` is named ``includeme``.
2011-01-16gardenChris McDonough
2011-01-16use correct renderingChris 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-16- Add ``add_directive`` method to configurator, which allows frameworkChris McDonough
extenders to add methods to the configurator (ala ZCML directives).
2011-01-16Merge branch 'gawel-config_extend'Chris McDonough
2011-01-16simplify slightlyChris McDonough
2011-01-15clarify by promoting long parenthetical to its own sentenceCasey Duncan
2011-01-15add missing wordCasey Duncan