summaryrefslogtreecommitdiff
path: root/repoze/bfg/sampleapp
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-08-18 04:06:35 +0000
committerChris McDonough <chrism@agendaless.com>2008-08-18 04:06:35 +0000
commite35dc1a58a4e91977dc9819c80259f09800a0b58 (patch)
treee90fea96be6f491becd5399f177057f1feeadf68 /repoze/bfg/sampleapp
parent0235914a7c520e20dafcfc251237deddedaf3d80 (diff)
downloadpyramid-e35dc1a58a4e91977dc9819c80259f09800a0b58.tar.gz
pyramid-e35dc1a58a4e91977dc9819c80259f09800a0b58.tar.bz2
pyramid-e35dc1a58a4e91977dc9819c80259f09800a0b58.zip
- Generated application differences: ``make_app`` entry point
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).
Diffstat (limited to 'repoze/bfg/sampleapp')
-rw-r--r--repoze/bfg/sampleapp/configure.zcml3
-rw-r--r--repoze/bfg/sampleapp/run.py2
2 files changed, 1 insertions, 4 deletions
diff --git a/repoze/bfg/sampleapp/configure.zcml b/repoze/bfg/sampleapp/configure.zcml
index d20d7d8f9..a5f27595e 100644
--- a/repoze/bfg/sampleapp/configure.zcml
+++ b/repoze/bfg/sampleapp/configure.zcml
@@ -4,9 +4,6 @@
<include package="repoze.bfg" />
- <bfg:settings
- reload_templates="true"/>
-
<utility
provides="repoze.bfg.interfaces.ISecurityPolicy"
factory="repoze.bfg.security.RemoteUserACLSecurityPolicy"
diff --git a/repoze/bfg/sampleapp/run.py b/repoze/bfg/sampleapp/run.py
index 6c36c430e..df2ceca39 100644
--- a/repoze/bfg/sampleapp/run.py
+++ b/repoze/bfg/sampleapp/run.py
@@ -3,7 +3,7 @@ from repoze.bfg import sampleapp
from repoze.bfg.sampleapp.models import get_root
def main():
- app = make_app(get_root, sampleapp)
+ app = make_app(get_root, sampleapp, options={'reload_templates':True})
from paste import httpserver
httpserver.serve(app, host='0.0.0.0', port='5432')