diff options
| author | Michael Merickel <michael@merickel.org> | 2011-07-30 01:50:24 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2011-07-30 01:50:24 -0600 |
| commit | 875ded31e7fdd0c85d1c91458248581b9dd729d7 (patch) | |
| tree | 2063e301734ef5a79e308f67a126df48546acf07 /docs/tutorials/wiki/src/basiclayout | |
| parent | e1b25974a4dcc9eb9ceab70ec2276043de775f82 (diff) | |
| download | pyramid-875ded31e7fdd0c85d1c91458248581b9dd729d7.tar.gz pyramid-875ded31e7fdd0c85d1c91458248581b9dd729d7.tar.bz2 pyramid-875ded31e7fdd0c85d1c91458248581b9dd729d7.zip | |
Updated all of the docs to reflect the new pyramid.* settings prefix.
Diffstat (limited to 'docs/tutorials/wiki/src/basiclayout')
| -rw-r--r-- | docs/tutorials/wiki/src/basiclayout/development.ini | 12 | ||||
| -rw-r--r-- | docs/tutorials/wiki/src/basiclayout/production.ini | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/docs/tutorials/wiki/src/basiclayout/development.ini b/docs/tutorials/wiki/src/basiclayout/development.ini index 555010bed..04e341f2e 100644 --- a/docs/tutorials/wiki/src/basiclayout/development.ini +++ b/docs/tutorials/wiki/src/basiclayout/development.ini @@ -1,11 +1,11 @@ [app:tutorial] use = egg:tutorial -reload_templates = true -debug_authorization = false -debug_notfound = false -debug_routematch = false -debug_templates = true -default_locale_name = en +pyramid.reload_templates = true +pyramid.debug_authorization = false +pyramid.debug_notfound = false +pyramid.debug_routematch = false +pyramid.debug_templates = true +pyramid.default_locale_name = en zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000 [pipeline:main] diff --git a/docs/tutorials/wiki/src/basiclayout/production.ini b/docs/tutorials/wiki/src/basiclayout/production.ini index 5c47ade9b..217bdd260 100644 --- a/docs/tutorials/wiki/src/basiclayout/production.ini +++ b/docs/tutorials/wiki/src/basiclayout/production.ini @@ -1,11 +1,11 @@ [app:tutorial] use = egg:tutorial -reload_templates = false -debug_authorization = false -debug_notfound = false -debug_routematch = false -debug_templates = false -default_locale_name = en +pyramid.reload_templates = false +pyramid.debug_authorization = false +pyramid.debug_notfound = false +pyramid.debug_routematch = false +pyramid.debug_templates = false +pyramid.default_locale_name = en zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000 [filter:weberror] |
