| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-11-23 | Tweaks. | Chris McDonough | |
| 2009-11-22 | Add Trove classifiers added by Martin. | Chris McDonough | |
| 2009-11-22 | Renderings. | Chris McDonough | |
| 2009-11-22 | Rendering. | Chris McDonough | |
| 2009-11-22 | Rendering tweaks. | Chris McDonough | |
| 2009-11-22 | some suggestions for alternative wording on the introduction. The second and ↵ | Carlos de la Guardia | |
| third paragraphs were very redundant. | |||
| 2009-11-22 | Docs tweaks. | Chris McDonough | |
| 2009-11-22 | Test load_zcml. | Chris McDonough | |
| 2009-11-22 | Murg 2. | Chris McDonough | |
| 2009-11-22 | Murg. | Chris McDonough | |
| 2009-11-21 | Typo. | Chris McDonough | |
| 2009-11-21 | Add meager API docs for Configurator. | Chris McDonough | |
| 2009-11-21 | Note unreleasedness. | Chris McDonough | |
| 2009-11-21 | Use a sidebar. | Chris McDonough | |
| 2009-11-21 | Beginnings of explaining configuration modes. | Chris McDonough | |
| 2009-11-21 | Name. | Chris McDonough | |
| 2009-11-21 | Minor idiom cleanups. | Chris McDonough | |
| 2009-11-21 | No wrappers need a registry. | Chris McDonough | |
| 2009-11-21 | _owrap_view doesn't need the registry. | Chris McDonough | |
| 2009-11-21 | _map_view doesn't need a registry argument. | Chris McDonough | |
| 2009-11-21 | Changelog. | Chris McDonough | |
| 2009-11-21 | - "Hybrid mode" applications (applications which explicitly used | Chris McDonough | |
| traversal *after* url dispatch via ``<route>`` paths containing the ``*traverse`` element) were broken in 1.1-final and all 1.1 alpha and beta releases. Views registered without a ``route_name`` route shadowed views registered with a ``route_name`` inappropriately. | |||
| 2009-11-21 | Turn wrapper methods back into functions to avoid keeping around references | Chris McDonough | |
| to Configurator in closures. | |||
| 2009-11-20 | Hack to support KARL unit tests. | Chris McDonough | |
| 2009-11-20 | Passable stab at supporting an imperative mode. | Chris McDonough | |
| ZCML directives which accept paths now register absolute paths, while imperative registrations now register resource specifications. | |||
| 2009-11-19 | If pkg_or_module is None, treat it as the __main__ package. | Chris McDonough | |
| 2009-11-19 | Try it. | Chris McDonough | |
| 2009-11-19 | Try it. | Chris McDonough | |
| 2009-11-19 | Unused. | Chris McDonough | |
| 2009-11-19 | Rendering. | Chris McDonough | |
| 2009-11-19 | Formatting and grammar. | Chris McDonough | |
| 2009-11-19 | Fixtures required by new tests. | Chris McDonough | |
| 2009-11-19 | Coverage masked by zcml tests. | Chris McDonough | |
| 2009-11-19 | 100% coverage. | Chris McDonough | |
| 2009-11-19 | Coverage. | Chris McDonough | |
| 2009-11-19 | Move renderer tests from zcml tests to configure tests. | Chris McDonough | |
| 2009-11-19 | - Each of the ``repoze.bfg.view.render_view``, | Chris McDonough | |
| ``repoze.bfg.view.render_view_to_iterable``, ``repoze.bfg.view.render_view_to_response``, ``repoze.bfg.view.append_slash_notfound_view``, ``repoze.bfg.view.default_notfound_view``, ``repoze.bfg.view.default_forbidden_view``, and the ``repoze.bfg.configuration.rendered_response`` functions now expects to be called with a request object that has a ``registry`` attribute which represents the current ZCA registry. This should only be a problem when passing a custom request object to code which ends up calling these functions in a unit test. To retrofit tests that end up calling these functions which expect to be able to use a non-registry-aware request object, use the ``repoze.bfg.threadlocal.get_current_request`` API in the test to create the request; this will return a ``repoze.bfg.testing.DummyRequest`` that has the current registry as its ``registry`` attribute. Alternatively, use the ``repoze.bfg.threadlocal.get_current_registry`` API: call this function and add an attribute to your unit test request object named ``registry`` with the result. - The ``repoze.bfg.view.derive_view`` callable has been removed. Use ``repoze.bfg.configuration.Configurator.derive_view`` instead (still not an API, however). | |||
| 2009-11-19 | Reword notfound and forbidden view handlers. | Chris McDonough | |
| 2009-11-19 | Typo. | Chris McDonough | |
| 2009-11-19 | - The ACL authorization policy debugging output when | Chris McDonough | |
| ``debug_authorization`` consule debugging output was turned on wasn't as clear as it could have been when a view execution was denied due to an authorization failure resulting from the set of principals passed never having matched any ACE in any ACL in the lineage. Now in this case, we report ``<default deny>`` as the ACE value and either the root ACL or ``<No ACL found on any object in model lineage>`` if no ACL was found. | |||
| 2009-11-19 | Call order. | Chris McDonough | |
| 2009-11-19 | Fix links. | Chris McDonough | |
| 2009-11-19 | Namespace packaging. | Chris McDonough | |
| 2009-11-19 | Add configurator static tests. | Chris McDonough | |
| 2009-11-19 | Test make_wsgi_app. | Chris McDonough | |
| 2009-11-19 | - The ``repoze.bfg.view.rendered_response`` function has been moved to | Chris McDonough | |
| ``repoze.bfg.configuration.rendered_response``. - The ``repoze.bfg.view.decorate_view`` function has been moved to ``repoze.bfg.configuration.decorate_view``. - The ``repoze.bfg.view.MultiView`` class has been moved to ``repoze.bfg.configuration.MultiView``. - Fix argument ordering bug in r.b.configuration.Configurator.resource. | |||
| 2009-11-19 | Rearrange things to try to avoid circular import deps. | Chris McDonough | |
| 2009-11-19 | Get rid of get_options. | Chris McDonough | |
| Shuffle Configurator around so that not passing a registry makes a default one. | |||
| 2009-11-19 | Foo. | Chris McDonough | |
| 2009-11-19 | Checkpoint: move most zcml route and view directive tests to test_configuration. | Chris McDonough | |
