summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2011-07-30 00:58:18 -0600
committerMichael Merickel <michael@merickel.org>2011-07-30 00:58:18 -0600
commit7ca77391bcebc92ff432c99afc6da1664626dbf6 (patch)
tree1a6cb48d625365ad2a36d5d6ffe9577934526a66
parent1a45b444d28041c06a188800af1bf918bf26a3d7 (diff)
downloadpyramid-7ca77391bcebc92ff432c99afc6da1664626dbf6.tar.gz
pyramid-7ca77391bcebc92ff432c99afc6da1664626dbf6.tar.bz2
pyramid-7ca77391bcebc92ff432c99afc6da1664626dbf6.zip
Updated the scaffold settings to use the 'pyramid.' prefix.
-rw-r--r--pyramid/scaffolds/alchemy/development.ini_tmpl14
-rw-r--r--pyramid/scaffolds/alchemy/production.ini_tmpl14
-rw-r--r--pyramid/scaffolds/routesalchemy/development.ini_tmpl14
-rw-r--r--pyramid/scaffolds/routesalchemy/production.ini_tmpl14
-rw-r--r--pyramid/scaffolds/starter/development.ini_tmpl13
-rw-r--r--pyramid/scaffolds/starter/production.ini_tmpl13
-rw-r--r--pyramid/scaffolds/zodb/development.ini_tmpl14
-rw-r--r--pyramid/scaffolds/zodb/production.ini_tmpl14
8 files changed, 62 insertions, 48 deletions
diff --git a/pyramid/scaffolds/alchemy/development.ini_tmpl b/pyramid/scaffolds/alchemy/development.ini_tmpl
index accec1718..06c29069d 100644
--- a/pyramid/scaffolds/alchemy/development.ini_tmpl
+++ b/pyramid/scaffolds/alchemy/development.ini_tmpl
@@ -1,11 +1,13 @@
[app:{{project}}]
use = egg:{{project}}
-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
+
sqlalchemy.url = sqlite:///%(here)s/{{project}}.db
[pipeline:main]
diff --git a/pyramid/scaffolds/alchemy/production.ini_tmpl b/pyramid/scaffolds/alchemy/production.ini_tmpl
index 0deb1dd5f..6025d9a14 100644
--- a/pyramid/scaffolds/alchemy/production.ini_tmpl
+++ b/pyramid/scaffolds/alchemy/production.ini_tmpl
@@ -1,11 +1,13 @@
[app:{{project}}]
use = egg:{{project}}
-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
+
sqlalchemy.url = sqlite:///%(here)s/{{project}}.db
[filter:weberror]
diff --git a/pyramid/scaffolds/routesalchemy/development.ini_tmpl b/pyramid/scaffolds/routesalchemy/development.ini_tmpl
index accec1718..06c29069d 100644
--- a/pyramid/scaffolds/routesalchemy/development.ini_tmpl
+++ b/pyramid/scaffolds/routesalchemy/development.ini_tmpl
@@ -1,11 +1,13 @@
[app:{{project}}]
use = egg:{{project}}
-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
+
sqlalchemy.url = sqlite:///%(here)s/{{project}}.db
[pipeline:main]
diff --git a/pyramid/scaffolds/routesalchemy/production.ini_tmpl b/pyramid/scaffolds/routesalchemy/production.ini_tmpl
index 0deb1dd5f..6025d9a14 100644
--- a/pyramid/scaffolds/routesalchemy/production.ini_tmpl
+++ b/pyramid/scaffolds/routesalchemy/production.ini_tmpl
@@ -1,11 +1,13 @@
[app:{{project}}]
use = egg:{{project}}
-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
+
sqlalchemy.url = sqlite:///%(here)s/{{project}}.db
[filter:weberror]
diff --git a/pyramid/scaffolds/starter/development.ini_tmpl b/pyramid/scaffolds/starter/development.ini_tmpl
index 60e52da57..1239dca3f 100644
--- a/pyramid/scaffolds/starter/development.ini_tmpl
+++ b/pyramid/scaffolds/starter/development.ini_tmpl
@@ -1,11 +1,12 @@
[app:{{project}}]
use = egg:{{project}}
-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
[pipeline:main]
pipeline =
diff --git a/pyramid/scaffolds/starter/production.ini_tmpl b/pyramid/scaffolds/starter/production.ini_tmpl
index dea0ef2c6..4ddb3f954 100644
--- a/pyramid/scaffolds/starter/production.ini_tmpl
+++ b/pyramid/scaffolds/starter/production.ini_tmpl
@@ -1,11 +1,12 @@
[app:{{project}}]
use = egg:{{project}}
-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
[filter:weberror]
use = egg:WebError#error_catcher
diff --git a/pyramid/scaffolds/zodb/development.ini_tmpl b/pyramid/scaffolds/zodb/development.ini_tmpl
index ae9584690..730300a82 100644
--- a/pyramid/scaffolds/zodb/development.ini_tmpl
+++ b/pyramid/scaffolds/zodb/development.ini_tmpl
@@ -1,11 +1,13 @@
[app:{{project}}]
use = egg:{{project}}
-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/pyramid/scaffolds/zodb/production.ini_tmpl b/pyramid/scaffolds/zodb/production.ini_tmpl
index ff52a0585..9fe8f4741 100644
--- a/pyramid/scaffolds/zodb/production.ini_tmpl
+++ b/pyramid/scaffolds/zodb/production.ini_tmpl
@@ -1,11 +1,13 @@
[app:{{project}}]
use = egg:{{project}}
-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]