summaryrefslogtreecommitdiff
path: root/docs/narr/introspector.rst
AgeCommit message (Collapse)Author
2012-02-20FeaturesChris McDonough
-------- - Add an ``introspection`` boolean to the Configurator constructor. If this is ``True``, actions registered using the Configurator will be registered with the introspector. If it is ``False``, they won't. The default is ``True``. Setting it to ``False`` during action processing will prevent introspection for any following registration statements, and setting it to ``True`` will start them up again. This addition is to service a requirement that the debug toolbar's own views and methods not show up in the introspector. Backwards Incompatibilities --------------------------- - Remove ``pyramid.config.Configurator.with_context`` class method. It was never an API, it is only used by ``pyramid_zcml`` and its functionality has been moved to that package's latest release. This means that you'll need to use the latest release of ``pyramid_zcml`` with this release of Pyramid. - The ``introspector`` argument to the ``pyramid.config.Configurator`` constructor API has been removed. It has been replaced by the boolean ``introspection`` flag. - The ``pyramid.registry.noop_introspector`` API object has been removed.
2012-02-18move add_traverser and add_resource_url_adapter to adaptersChris McDonough
2012-02-15- Add ``pyramid.config.Configurator.set_traverser`` API method. See theChris McDonough
Hooks narrative documentation section entitled "Changing the Traverser" for more information. This is not a new feature, it just provides an API for adding a traverser without needing to use the ZCA API.
2011-12-09add static views introspection categoryChris McDonough
2011-12-05too many pregenerator?Steve Piercy
2011-12-05grammarSteve Piercy
2011-12-05grammar correctionSteve Piercy
2011-12-03wordingChris McDonough
2011-12-03make add_route generate the right request methods introspection valueChris McDonough
2011-12-03add a noop introspector (allow introspection to be turned off)Chris McDonough
2011-12-03flesh out categories moreChris McDonough
2011-12-03add more content to the introspectables narr chapter; adjust introspection ↵Chris McDonough
registrations while doing so
2011-12-03add skeleton for using introspection chapterChris McDonough