| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-12-28 | When using the auth_tkt authentication plugin accept a ``tokens`` parameter ↵ | Wichert Akkerman | |
| in emember. | |||
| 2010-12-28 | - The ``proutes`` command tried too hard to resolve the view for printing, | Chris McDonough | |
| resulting in exceptions when an exceptional root factory was encountered. Instead of trying to resolve the view, if it cannot, it will now just print ``<unknown>``. | |||
| 2010-12-28 | back to development | Chris McDonough | |
| 2010-12-27 | Prep for 1.0a8. | Chris McDonough | |
| 2010-12-27 | - Add ``paster proute`` command which displays a summary of the routing | Chris McDonough | |
| table. See the narrative documentation section within the "URL Dispatch" chapter entitled "Displaying All Application Routes". - Added narrative documentation section within the "URL Dispatch" chapter entitled "Displaying All Application Routes" (for ``paster proutes`` command). | |||
| 2010-12-26 | - Merge "Static Assets" chapter into the "Assets" chapter. | Chris McDonough | |
| 2010-12-26 | - Move ZCML usage in Hooks chapter to Declarative Configuration chapter. | Chris McDonough | |
| 2010-12-25 | - Prevent misunderstanding of how the ``view`` and ``view_permission`` | Chris McDonough | |
| arguments to add_route work by raising an exception during configuration if view-related arguments exist but no ``view`` argument is passed. | |||
| 2010-12-24 | - Changed "Static Assets" narrative chapter: clarify that ``name`` represents | Chris McDonough | |
| a prefix unless it's a URL, added an example of a root-relative static view fallback for URL dispatch, added an example of creating a simple view that returns the body of a file. | |||
| 2010-12-24 | note timtowti | Chris McDonough | |
| 2010-12-24 | - Added "Advanced Configuration" narrative chapter which documents how to | Chris McDonough | |
| deal with configuration conflicts, two-phase configuration, ``include`` and ``commit``. | |||
| 2010-12-24 | - Fix API documentation rendering for ``pyramid.view.static`` | Chris McDonough | |
| 2010-12-23 | - The name ``registry`` was not available in the ``paster pshell`` | Chris McDonough | |
| environment under IPython. | |||
| 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 | - 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-20 | back to development | Chris McDonough | |
| 2010-12-20 | prep for 1.0a7 | Chris McDonough | |
| 2010-12-20 | BFG_ -> PYRAMID_ | Jamaludin Ahmad | |
| 2010-12-19 | - Split off "Renderers" as its own chapter from "Views" chapter in narrative | Chris McDonough | |
| documentation. | |||
| 2010-12-19 | rearrange | Chris McDonough | |
| 2010-12-19 | add functional testing example | 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 | - 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-18 | resource/asset normalization | Chris McDonough | |
| 2010-12-18 | spacing, note | Chris McDonough | |
| 2010-12-18 | spacing | Chris McDonough | |
| 2010-12-18 | summarize asset/resource/model changes | Chris McDonough | |
| 2010-12-16 | - Direct Jython users to Mako rather than Jinja2 in "Install" narrative | Chris McDonough | |
| chapter. | |||
| 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 | mention paster templates | Chris McDonough | |
| 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 | Added debug_matched configuration setting. | Joachim Krebs | |
| 2010-12-15 | note work done to make nosetests pass | Chris McDonough | |
| 2010-12-15 | back to development | Chris McDonough | |
| 2010-12-15 | prep for 1.0a6 | Chris McDonough | |
| 2010-12-15 | - Fix reference to ``repoze.bfg.traversalwrapper`` in "Models" chapter (point | Chris McDonough | |
| at ``pyramid_traversalwrapper`` instead). | |||
| 2010-12-15 | - If you followed it to-the-letter, the ZODB+Traversal Wiki tutorial would | Chris McDonough | |
| instruct you to run a test which would fail because the view callable generated by the ``pyramid_zodb`` tutorial used a one-arg view callable, but the test in the sample code used a two-arg call. - Updated ZODB+Traversal tutorial setup.py of all steps to match what's generated by ``pyramid_zodb``. | |||
| 2010-12-15 | - Tests now pass on Windows (no bugs found, but a few tests in the test suite | Chris McDonough | |
| assumed UNIX path segments in filenames). | |||
| 2010-12-15 | gardening | Chris McDonough | |
| 2010-12-15 | more specificity | Chris McDonough | |
| 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-15 | back to development | Chris McDonough | |
| 2010-12-15 | prep for 1.0a5 | Chris McDonough | |
| 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 | note docs | Chris McDonough | |
| 2010-12-09 | - Add a ``handler`` ZCML directive. This directive does the same thing as | Chris McDonough | |
| ``pyramid.configuration.add_handler``. | |||
