| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-09-04 | prep for 1.2a5 | Chris McDonough | |
| 2011-09-04 | remove documentation and todo mentions of zope.configuration | Chris McDonough | |
| 2011-09-03 | add a changelog entry for work done on this branch | Chris McDonough | |
| 2011-09-03 | Updated environment documentation to include an example of accessing the ↵ | Charlie Choiniere | |
| settings dictionary inside an includeme function | |||
| 2011-09-02 | prep for 1.2a4 | Chris McDonough | |
| 2011-09-02 | remove; too complex to document here | Chris McDonough | |
| 2011-09-01 | - Added a "Fixing HTTP vs. HTTP When Deploying Behind a Proxy" section to the | Chris McDonough | |
| "Virtual Hosting" chapter. | |||
| 2011-08-31 | wrong path for logging.config | Chris 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 to | Chris 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 to | Chris 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-29 | add match_param to the narrative docs | Chris McDonough | |
| 2011-08-29 | prep for 1.2a3 | Chris McDonough | |
| 2011-08-29 | remove inappropriate ZCML usage | Chris McDonough | |
| 2011-08-28 | clean up inappropriate discussions of ZCML | Chris McDonough | |
| 2011-08-27 | describe output | Chris McDonough | |
| 2011-08-27 | reword | Chris McDonough | |
| 2011-08-27 | prep for 1.2a2 | Chris McDonough | |
| 2011-08-27 | reword | Chris McDonough | |
| 2011-08-25 | Merge pull request #257 from djay/master | Chris McDonough | |
| Included basic install steps on front page to make example complete | |||
| 2011-08-26 | include install and move firstapp higher up index | Dylan Jay | |
| 2011-08-25 | dont use duplicate target | Chris McDonough | |
| 2011-08-25 | Added docs for some missing HTTP status' supported in httpexceptions. | Michael Merickel | |
| 2011-08-25 | use Response; fix text | Chris McDonough | |
| 2011-08-25 | fix helloworld example | Dylan Jay | |
| 2011-08-25 | Merge branch 'master' of github.com:djay/pyramid | Dylan Jay | |
| 2011-08-25 | include rather than repeat helloworld.py | Dylan Jay | |
| 2011-08-25 | use 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-24 | prep for 1.2a1 | Chris McDonough | |
| 2011-08-23 | add explanations | Chris McDonough | |
| 2011-08-23 | add changes | Chris McDonough | |
| 2011-08-22 | remove time bombs | Chris McDonough | |
| 2011-08-22 | fix stray inclusion of weberror; move manifest description | Chris McDonough | |
| 2011-08-22 | cleanups | Chris McDonough | |
| 2011-08-22 | - Use [app:main] instead of a pipeline in all scaffolds and tutorials | Chris McDonough | |
| and narrative docs. - Break out awkward description of PasteDeploy entry points from project chapter into its own Paste chapter. | |||
| 2011-08-21 | bump conf.py version num | Chris McDonough | |
| 2011-08-21 | add a whatsnew-1.2 doc | Chris McDonough | |
| 2011-08-20 | - Mention debug toolbar in tutorials. | Chris McDonough | |
| 2011-08-20 | remove tween aliases as a concept | Chris McDonough | |
| 2011-08-20 | add static_path function to url and static_path method to request | Chris 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-19 | review and fix configurator docs in random places | Chris McDonough | |
| 2011-08-18 | - Pyramid no longer eagerly commits some default configuration statements at | Chris 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-16 | Added 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 rather | Chris 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``. | |||
| 2011-08-14 | - The ``route_url``, ``route_path``, ``resource_url``, ``static_url``, and | Chris McDonough | |
| ``current_route_url`` functions in the ``pyramid.url`` package now delegate to a method on the request they've been passed, instead of the other way around. The pyramid.request.Request object now inherits from a mixin named pyramid.url.URLMethodsMixin to make this possible, and all url/path generation logic is embedded in this mixin. - Narrative and API documentation which used the ``route_url``, ``route_path``, ``resource_url``, ``static_url``, and ``current_route_url`` functions in the ``pyramid.url`` package have now been changed to use eponymous methods of the request instead. | |||
| 2011-08-14 | - Added the ``pyramid.interfaces.IDict`` interface representing the methods | Chris McDonough | |
| of a dictionary, for documentation purposes only (IMultiDict and IBeforeRender inherit from it). - Previously the ``pyramid.events.BeforeRender`` event *wrapped* a dictionary (it addressed it as its ``_system`` attribute). Now it *is* a dictionary (it inherits from ``dict``), and it's the value that is passed to templates as a top-level dictionary. | |||
| 2011-08-13 | Require that tween_factory argument to add_tween be a dotted name. | Chris McDonough | |
