summaryrefslogtreecommitdiff
path: root/docs/narr/project.rst
AgeCommit message (Collapse)Author
2009-05-11- Added a ``routesalchemy`` Paster template. This paster templateChris McDonough
sets up a BFG project that uses SQAlchemy (with SQLite) and uses Routes exclusively to resolve URLs (no traversal root factory is used). This template can be used via ``paster create -t bfg_routesalchemy``.
2009-05-01Merge "c-free" branch to trunk.Chris McDonough
2009-01-26Make renderable.Chris McDonough
2009-01-25Root factory nomenclature.Chris McDonough
2009-01-17Update docs with new default project stuff.Chris McDonough
2009-01-11Fix docs and templates to account for deprecation of get_options.Chris McDonough
2009-01-07(no commit message)Chris McDonough
2009-01-07Note existence of the ZODB template.Chris McDonough
2009-01-06Prepare for additional paster templates.Tres Seaver
2008-12-21 - Updated paster template "ez_setup.py" to one that requiresChris McDonough
setuptools 0.6c9. - Turn ``view_execution_permitted`` from the :mod:`repoze.bfg.view` module into a documented API. - Doc cleanups.
2008-11-17Continue the charade of telling people where to invoke things from.Chris McDonough
2008-11-17Explain in terms of virtualenv.Chris McDonough
2008-11-14 - Change the default paster template to register its single viewChris McDonough
against a class rather than an interface.
2008-11-14 - Change paster template ``tests.py`` to include a true unit test.Chris McDonough
Retain old test as an integration test. Update documentation.
2008-11-01 - Change default paster template generator to use ``Paste#http``Chris McDonough
server rather than ``PasteScript#cherrpy`` server. The cherrypy server has a security risk in it when ``REMOTE_USER`` is trusted by the downstream application.
2008-10-31Changes from jpcw.Chris McDonough
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-09-26Move to Chameleon.Chris McDonough
2008-09-16Document url dispatch in narrative form.Chris McDonough
2008-09-03 - Add startup process docs.Chris McDonough
2008-08-30Note non-interactive way to create a project.Chris McDonough
2008-08-24More case changes.Chris McDonough
2008-08-24Get it right.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-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.
2008-07-31Document setup.py and myproject.ini.Chris McDonough
2008-07-28Tweaks.Chris McDonough
2008-07-26Tweaks.Chris McDonough
2008-07-25(no commit message)Chris McDonough
2008-07-25Tweaks.Chris McDonough
2008-07-24More glossary, add some text to project explanationPaul Everitt
2008-07-24Change more occurrences to mod:repozePaul Everitt
2008-07-24Get rid of duplicate info in lxmlgraph tutorial.Chris McDonough
2008-07-24Move stuff from lxmlgraph to main docs.Chris McDonough
2008-07-20More docs; fix autogen app model root creation.Chris McDonough
2008-07-19Indicate how to run tests.Chris McDonough
2008-07-19Document project creation.Chris McDonough