summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2008-10-03 Docs Chris McDonough
- An "Environment and Configuration" chapter was added to the narrative portion of the documentation. Features - Ensure bfg doesn't generate warnings when running under Python 2.6. - The environment variable ``BFG_RELOAD_TEMPLATES`` is now available (serves the same purpose as ``reload_templates`` in the config file). - A new configuration file option ``debug_authorization`` was added. This turns on printing of security authorization debug statements to ``sys.stderr``. The ``BFG_DEBUG_AUTHORIZATION`` environment variable was also added; this performs the same duty. Bug Fixes - The environment variable ``BFG_SECURITY_DEBUG`` did not always work. It has been renamed to ``BFG_DEBUG_AUTHORIZATION`` and fixed. Deprecations - A deprecation warning is now issued when old API names from the ``repoze.bfg.templates`` module are imported. Backwards incompatibilities - The ``BFG_SECURITY_DEBUG`` environment variable was renamed to ``BFG_DEBUG_AUTHORIZATION``.
2008-10-03Note Python 2.6 compat.Chris McDonough
2008-09-28(no commit message)Chris McDonough
2008-09-28Prep for 0.3.9 release.Chris McDonough
2008-09-28 FeaturesChris McDonough
- A ``repoze.bfg.location`` API module was added. Backwards incompatibilities - Applications must now use the ``repoze.bfg.interfaces.ILocation`` interface rather than ``zope.location.interfaces.ILocation`` to represent that a model object is "location-aware". We've removed a dependency on ``zope.location`` for cleanliness purposes: as new versions of zope libraries are released which have improved dependency information, getting rid of our dependence on ``zope.location`` will prevent a newly installed repoze.bfg application from requiring the ``zope.security``, egg, which not truly used at all in a "stock" repoze.bfg setup. These dependencies are still required by the stack at this time; this is purely a futureproofing move. The security and model documentation for previous versions of ``repoze.bfg`` recommended using the ``zope.location.interfaces.ILocation`` interface to represent that a model object is "location-aware". This documentation has been changed to reflect that this interface should now be imported from ``repoze.bfg.interfaces.ILocation`` instead.
2008-09-26(no commit message)Chris McDonough
2008-09-26Move to Chameleon.Chris McDonough
2008-09-21Rendering fixes.Chris McDonough
2008-09-21Add workflow chapter, fix renderings.Chris McDonough
2008-09-21Tweakage.Chris McDonough
2008-09-21Add actions chapter.Chris McDonough
2008-09-21Add skins chapter.Chris McDonough
2008-09-21Add docs about cataloging.Chris McDonough
2008-09-21 - Add ``principals_allowed_by_permission`` API to security module.Chris McDonough
2008-09-19Begin CMF migration documentation.Chris McDonough
2008-09-16typo.Chris McDonough
2008-09-16Document url dispatch in narrative form.Chris McDonough
2008-09-090.3.7.Chris McDonough
2008-09-06Note done.Chris McDonough
2008-09-06Define ACE.Chris McDonough
2008-09-06Dollar.Chris McDonough
2008-09-06Info about debugging security failures.Chris McDonough
2008-09-04Prep for 0.3.6.Chris McDonough
2008-09-03(no commit message)Chris McDonough
2008-09-03Fux bigs.Chris McDonough
2008-09-03 - Add startup process docs.Chris McDonough
2008-09-01Prep for 0.3.5.Chris McDonough
2008-09-01Add render_view function.Chris McDonough
2008-09-01 - New API module: ``repoze.bfg.view``. This module contains the functionsChris McDonough
named ``render_view_to_response``, ``render_view_to_iterable`` and ``is_response``, which are documented in the API docs. These features aid programmatic (non-request-driven) view execution.
2008-08-30(no commit message)Chris McDonough
2008-08-30Fix project docs.Chris McDonough
2008-08-30Note non-interactive way to create a project.Chris McDonough
2008-08-30Get the libraries we install right.Chris McDonough
2008-08-29Rejigger and document wsgi app created event.Chris McDonough
2008-08-29(no commit message)Chris McDonough
2008-08-29Prep for 0.3.4.Chris McDonough
2008-08-29model_path and *backwards incompatible change* removing "make_app" and ↵Chris McDonough
"get_options" from __init__.py of repoze.bfg; use repoze.bfg.router:make_app and repoze.bfg.registry:get_options instead.
2008-08-26Current releases do support METAL.Malthe Borch
2008-08-24Sigh.Chris McDonough
2008-08-24More case changes.Chris McDonough
2008-08-24Get it right.Chris McDonough
2008-08-24Prep for 0.3.2.Chris McDonough
2008-08-24Second checkin using StudlyCaps version of MyProject.Chris McDonough
2008-08-24First checkin using StudlyCaps MyProject.Chris McDonough
2008-08-23Prevent usage of wsgiapp decorator from foiling actions pickling.Chris McDonough
Add Django attribution, contributors file.
2008-08-20Add change history.Chris McDonough
2008-08-20Note repoze.who integrations where useful.Chris McDonough
2008-08-18 - Generated application differences: ``make_app`` entry pointChris McDonough
renamed to ``app`` in order to have a different name than the bfg function of the same name, to prevent confusion. - Add "options" processing to bfg's ``make_app`` to support runtime options. A new API function named ``get_options`` was added to the registry module. This function is typically used in an application's ``app`` entry point. The Paste config file section for the app can now supply the ``reload_templates`` option, which, if true, will prevent the need to restart the appserver in order for ``z3c.pt`` or XSLT template changes to be detected. - Use only the module name in generated project's "test_suite" (run all tests found in the package). - Default port for generated apps changed from 5432 to 6543 (Postgres default port is 6543).
2008-08-17Rendering.Chris McDonough
2008-08-17 - Add ``<bfg:settings>`` directive. This directive currently allowsChris McDonough
only one attribute: ``reload_templates``. If e.g.:: <bfg:settings reload_templates="true"/> is in your application's ZCML, you will not need to restart the appserver in order for ``z3c.pt`` or XSLT template changes to be detected and displayed.