| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-12-22 | Changed my mind. Never pop the CSRF token. Leave it around until | Chris McDonough | |
| a new one replaces it. | |||
| 2010-12-22 | - The ``pyramid_zodb`` Paster template no longer employs ZCML. Instead, it | Chris McDonough | |
| is based on scanning. - Changed the "ZODB + Traversal Wiki Tutorial" based on changes to ``pyramid_zodb`` Paster template. | |||
| 2010-12-22 | - Added CSRF token generation, as described in the narrative chapter entitled | Chris McDonough | |
| "Preventing Cross-Site Request Forgery Attacks". | |||
| 2010-12-22 | change flash API as per email convo with Ben and Mike | Chris McDonough | |
| 2010-12-22 | - Added flash messaging, as described in the "Flash Messaging" narrative | Chris McDonough | |
| documentation chapter. | |||
| 2010-12-21 | - Added "Finding the Root Resource" to Resources narrative chapter. | Chris McDonough | |
| - Added "Finding a Resource With a Class or Interface in Lineage" to Resources narrative chapter. | |||
| 2010-12-20 | - Added "Obtaining the Lineage of a Resource" to the Resources narrative | Chris McDonough | |
| chapter. - Added "Determining if a Resource is In The Lineage of Another Resource" to Resources narrative chapter. | |||
| 2010-12-20 | Features | Chris McDonough | |
| -------- - If a resource implements a ``__resource_url__`` method, it will be called as the result of invoking the ``pyramid.url.resource_url`` function to generate a URL, overriding the default logic. See the new "Generating The URL Of A Resource" section within the Resources narrative chapter. Documentation ------------- - Added "Generating The URL Of A Resource" section to the Resources narrative chapter (includes information about overriding URL generation using ``__resource_url__``). - Added "Generating the Path To a Resource" section to the Resources narrative chapter. - Added "Finding a Resource by Path" section to the Resources narrative chapter. | |||
| 2010-12-19 | add functional testing example | Chris McDonough | |
| 2010-12-19 | missed args | Chris McDonough | |
| 2010-12-19 | - All environment variables which used to be prefixed with ``BFG_`` are now | Chris McDonough | |
| prefixed with ``PYRAMID_`` (e.g. ``BFG_DEBUG_NOTFOUND`` is now ``PYRAMID_DEBUG_NOTFOUND``) | |||
| 2010-12-19 | Merge branch 'master' of github.com:Pylons/pyramid | Chris McDonough | |
| 2010-12-19 | - When a configuration conflict is encountered during scanning, the conflict | Chris McDonough | |
| exception now shows the decorator information that caused the conflict. - Depend on Venusian >= 0.5 (for scanning conflict exception decoration). | |||
| 2010-12-19 | typo fixes | Jamaludin Ahmad | |
| 2010-12-18 | Merge branch 'model2resource' | Chris McDonough | |
| Conflicts: docs/narr/views.rst | |||
| 2010-12-18 | resource/asset normalization | Chris McDonough | |
| 2010-12-18 | model->resource; make docs render without warnings | Chris McDonough | |
| 2010-12-18 | spacing, note | Chris McDonough | |
| 2010-12-18 | resource -> asset | Chris McDonough | |
| 2010-12-18 | resource -> asset | Chris McDonough | |
| 2010-12-18 | resource -> asset | Chris McDonough | |
| 2010-12-18 | model -> resource | Chris McDonough | |
| 2010-12-18 | model -> resource; resource -> asset | Chris McDonough | |
| 2010-12-17 | routes -> url dispatch | Chris McDonough | |
| 2010-12-16 | get rid of a autodoc warning when building sphinx docs | Chris McDonough | |
| 2010-12-16 | - The name ``registry`` is now available in a ``pshell`` environment by | Chris McDonough | |
| default. It is the application registry object. - Changed "Project" chapter slightly to expand on use of ``paster pshell``. | |||
| 2010-12-16 | Features | Chris McDonough | |
| -------- - Added ``debug_routematch`` configuration setting that logs matched routes (including the matchdict and predicates). Documentation ------------- - Added "Debugging Route Matching" section to the urldispatch narrative documentation chapter. - Added reference to ``BFG_DEBUG_ROUTEMATCH`` envvar and ``debug_routematch`` config file setting to the Environment narrative docs chapter. | |||
| 2010-12-16 | Moved test_static import to function scopes. | Joachim Krebs | |
| 2010-12-16 | Added debug_matched configuration setting. | Joachim Krebs | |
| 2010-12-15 | move imports to function scope (see ↵ | Chris McDonough | |
| http://docs.pylonshq.com/community/testing.html#guideline-minimize-module-scope-dependencies) | |||
| 2010-12-16 | Fixed relative path test for Mako templates, enabling non-setup.py test runners. | Joachim Krebs | |
| 2010-12-15 | Merge branch 'master' of https://github.com/jkrebs/pyramid into jkrebs-master | Chris McDonough | |
| 2010-12-15 | Made static tests pass on Windows. | Joachim Krebs | |
| 2010-12-15 | - 1.0a5 introduced a bug when ``pyramid.config.Configurator.scan`` was used. | Chris McDonough | |
| The symptoms were: lots of deprecation warnings printed to the console about imports of deprecated Pyramid functions and classes and non-detection of views decorated with ``view_config`` decorators. This has now been fixed. Closes #68. | |||
| 2010-12-14 | - Fix conflict exceptions so they have the right ``info`` when one | Chris McDonough | |
| configuration method is called from another. | |||
| 2010-12-13 | - When creating a Configurator from within a ``paster pshell`` session, you | Chris McDonough | |
| were required to pass a ``package`` argument although ``package`` is not actually required. If you didn't pass ``package``, you would receive an error something like ``KeyError: '__name__'`` emanating from the ``pyramid.path.caller_module`` function. This has now been fixed. | |||
| 2010-12-09 | To avoid breaking people's expectations of how ZCML works, we | Chris McDonough | |
| cannot autocommit ZCML actions incrementally. If we commit actions incrementally, configuration outcome will be controlled purely by ZCML directive execution order, which isn't what anyone who uses ZCML expects. So we don't autocommit each ZCML directive action while parsing is happening, but we do make sure to pass execute=self.autocommit to xmlconfig.file below, which will cause the actions implied by the ZCML that was parsed to be committed right away once parsing is finished if autocommit is True. | |||
| 2010-12-09 | fix example | Chris McDonough | |
| 2010-12-09 | docs fixes; simplify include implementation | Chris McDonough | |
| 2010-12-09 | fix bug in zcml handler directive | Chris McDonough | |
| 2010-12-09 | - Add a ``handler`` ZCML directive. This directive does the same thing as | Chris McDonough | |
| ``pyramid.configuration.add_handler``. | |||
| 2010-12-09 | Merge branch 'twophase' | Chris McDonough | |
| Conflicts: pyramid/configuration.py | |||
| 2010-12-09 | docs fixes | Chris McDonough | |
| 2010-12-09 | fix docs: pyramid.configuration -> pyramid.config | Chris McDonough | |
| 2010-12-09 | get rid of explicit call to commit in all paster templates | Chris McDonough | |
| 2010-12-09 | get rid of config_method decorator; rename _action to action | Chris McDonough | |
| 2010-12-09 | use pyramid.config.Configurator instead of pyramid.configuration.Configurator | Chris McDonough | |
| 2010-12-08 | configuration.Config->config.Configurator | Chris McDonough | |
| 2010-12-08 | create a context only as necessary (speed) | Chris McDonough | |
| 2010-12-08 | deprecate Configurator, add Config | Chris McDonough | |
