summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2011-09-05readd aliases to environment tablesChris McDonough
2011-09-04provide links to implementations from glossary entries where possible. ↵Chris McDonough
Closes #142
2011-09-04Add Windows analogues to all command lines. Closes #144Chris McDonough
2011-09-04prep for 1.2a5Chris McDonough
2011-09-04remove documentation and todo mentions of zope.configurationChris McDonough
2011-09-03add a changelog entry for work done on this branchChris McDonough
2011-09-03Updated environment documentation to include an example of accessing the ↵Charlie Choiniere
settings dictionary inside an includeme function
2011-09-02prep for 1.2a4Chris McDonough
2011-09-02remove; too complex to document hereChris McDonough
2011-09-01- Added a "Fixing HTTP vs. HTTP When Deploying Behind a Proxy" section to theChris McDonough
"Virtual Hosting" chapter.
2011-08-31wrong path for logging.configChris McDonough
2011-08-31- Undeprecated ``pyramid.traversal.find_model``,Chris McDonough
``pyramid.traversal.model_path``, ``pyramid.traversal.model_path_tuple``, and ``pyramid.url.model_url``, which were all deprecated in Pyramid 1.0. There's just not much cost to keeping them around forever as aliases to their renamed ``resource_*`` prefixed functions. - Undeprecated ``pyramid.view.bfg_view``, which was deprecated in Pyramid 1.0. This is a low-cost alias to ``pyramid.view.view_config`` which we'll just keep around forever.
2011-08-31- The ``request_method`` predicate argument toChris McDonough
``pyramid.config.Configurator.add_view`` and ``pyramid.config.Configurator.add_route`` is now permitted to be a tuple of HTTP method names. Previously it was restricted to being a string representing a single HTTP method name. - Move add_view tests and tween tests to more reasonable places.
2011-08-31- Support an ``onerror`` keyword argument toChris McDonough
``pyramid.config.Configurator.scan()``. This onerror keyword argument is passed to ``venusian.Scanner.scan()`` to influence error behavior when an exception is raised during scanning. - Pyramid now requires Venusian 1.0a1 or better to support the ``onerror`` keyword argument to ``pyramid.config.Configurator.scan``. - Move test fixtures around so test_config tests are not looking "up" for fixtures.
2011-08-29add match_param to the narrative docsChris McDonough
2011-08-29prep for 1.2a3Chris McDonough
2011-08-29remove inappropriate ZCML usageChris McDonough
2011-08-28clean up inappropriate discussions of ZCMLChris McDonough
2011-08-27describe outputChris McDonough
2011-08-27rewordChris McDonough
2011-08-27prep for 1.2a2Chris McDonough
2011-08-27rewordChris McDonough
2011-08-25Merge pull request #257 from djay/masterChris McDonough
Included basic install steps on front page to make example complete
2011-08-26include install and move firstapp higher up indexDylan Jay
2011-08-25dont use duplicate targetChris McDonough
2011-08-25Added docs for some missing HTTP status' supported in httpexceptions.Michael Merickel
2011-08-25use Response; fix textChris McDonough
2011-08-25fix helloworld exampleDylan Jay
2011-08-25Merge branch 'master' of github.com:djay/pyramidDylan Jay
2011-08-25include rather than repeat helloworld.pyDylan Jay
2011-08-25use routes in firstapp as they are more familar to most and put hello world ↵Dylan Jay
on the front page to make grab framework shoppers attention.
2011-08-24prep for 1.2a1Chris McDonough
2011-08-23add explanationsChris McDonough
2011-08-23add changesChris McDonough
2011-08-22remove time bombsChris McDonough
2011-08-22fix stray inclusion of weberror; move manifest descriptionChris McDonough
2011-08-22cleanupsChris McDonough
2011-08-22- Use [app:main] instead of a pipeline in all scaffolds and tutorialsChris McDonough
and narrative docs. - Break out awkward description of PasteDeploy entry points from project chapter into its own Paste chapter.
2011-08-21bump conf.py version numChris McDonough
2011-08-21add a whatsnew-1.2 docChris McDonough
2011-08-20- Mention debug toolbar in tutorials.Chris McDonough
2011-08-20remove tween aliases as a conceptChris McDonough
2011-08-20add static_path function to url and static_path method to requestChris McDonough
2011-08-20- New request methods: ``current_route_url``, ``current_route_path``.Chris McDonough
- New function in ``pyramid.url``: ``current_route_path``.
2011-08-19review and fix configurator docs in random placesChris McDonough
2011-08-18- Pyramid no longer eagerly commits some default configuration statements atChris McDonough
Configurator construction time, which permits values passed in as constructor arguments (e.g. ``authentication_policy`` and ``authorization_policy``) to override the same settings obtained via an "include".
2011-08-16Added some docs for the new 'setup' option key in [pshell].Michael Merickel
2011-08-15- New methods of the ``pyramid.config.Configurator`` class:Chris McDonough
``set_authentication_policy`` and ``set_authorization_policy``. These are meant to be consumed mostly by add-on authors.
2011-08-14- The ZODB wiki tutorial now uses the ``pyramid_zodbconn`` package ratherChris McDonough
than the ``repoze.zodbconn`` package to provide ZODB integration. - The ZODB scaffold now uses the ``pyramid_zodbconn`` package rather than the ``repoze.zodbconn`` package to provide ZODB integration.
2011-08-14- All tutorials now use - The ``route_url``, ``route_path``,Chris McDonough
``resource_url``, ``static_url``, and ``current_route_url`` methods of the request rather than the function variants imported from ``pyramid.url``.