summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-03-17 14:48:01 -0400
committerChris McDonough <chrism@plope.com>2012-03-17 14:48:01 -0400
commit343fb59c318e35c656611b58e7fe870373e33452 (patch)
tree4fc46e150d936ccf8647abe80b439debc77bffd3
parentfcd8eb4e797e88c8899eea938a4bbfe391d6940e (diff)
downloadpyramid-343fb59c318e35c656611b58e7fe870373e33452.tar.gz
pyramid-343fb59c318e35c656611b58e7fe870373e33452.tar.bz2
pyramid-343fb59c318e35c656611b58e7fe870373e33452.zip
- Remove references to do-nothing ``pyramid.debug_templates`` setting in all
Pyramid-provided ``.ini`` files. This setting previously told Chameleon to render better exceptions; now Chameleon always renders nice exceptions regardless of the value of this setting. Fixes #491.
-rw-r--r--CHANGES.txt5
-rw-r--r--docs/narr/MyProject/development.ini1
-rw-r--r--docs/narr/MyProject/production.ini1
-rw-r--r--docs/tutorials/wiki/src/authorization/development.ini1
-rw-r--r--docs/tutorials/wiki/src/authorization/production.ini1
-rw-r--r--docs/tutorials/wiki/src/basiclayout/development.ini1
-rw-r--r--docs/tutorials/wiki/src/basiclayout/production.ini1
-rw-r--r--docs/tutorials/wiki/src/models/development.ini1
-rw-r--r--docs/tutorials/wiki/src/models/production.ini1
-rw-r--r--docs/tutorials/wiki/src/tests/development.ini1
-rw-r--r--docs/tutorials/wiki/src/tests/production.ini1
-rw-r--r--docs/tutorials/wiki/src/views/development.ini1
-rw-r--r--docs/tutorials/wiki/src/views/production.ini1
-rw-r--r--docs/tutorials/wiki2/src/authorization/development.ini1
-rw-r--r--docs/tutorials/wiki2/src/authorization/production.ini1
-rw-r--r--docs/tutorials/wiki2/src/basiclayout/development.ini1
-rw-r--r--docs/tutorials/wiki2/src/basiclayout/production.ini1
-rw-r--r--docs/tutorials/wiki2/src/models/development.ini1
-rw-r--r--docs/tutorials/wiki2/src/models/production.ini1
-rw-r--r--docs/tutorials/wiki2/src/tests/development.ini1
-rw-r--r--docs/tutorials/wiki2/src/tests/production.ini1
-rw-r--r--docs/tutorials/wiki2/src/views/development.ini1
-rw-r--r--docs/tutorials/wiki2/src/views/production.ini1
-rw-r--r--pyramid/scaffolds/alchemy/development.ini_tmpl1
-rw-r--r--pyramid/scaffolds/alchemy/production.ini_tmpl1
-rw-r--r--pyramid/scaffolds/starter/development.ini_tmpl1
-rw-r--r--pyramid/scaffolds/starter/production.ini_tmpl1
-rw-r--r--pyramid/scaffolds/zodb/development.ini_tmpl1
-rw-r--r--pyramid/scaffolds/zodb/production.ini_tmpl1
29 files changed, 5 insertions, 28 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 33db7b956..ac7dcaee3 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,6 +7,11 @@ Bug Fixes
- ``config.add_view(<aninstancemethod>)`` raised AttributeError involving
``__text__``. See https://github.com/Pylons/pyramid/issues/461
+- Remove references to do-nothing ``pyramid.debug_templates`` setting in all
+ Pyramid-provided ``.ini`` files. This setting previously told Chameleon to
+ render better exceptions; now Chameleon always renders nice exceptions
+ regardless of the value of this setting.
+
Scaffolds
---------
diff --git a/docs/narr/MyProject/development.ini b/docs/narr/MyProject/development.ini
index 3c38e3805..84e08c2d0 100644
--- a/docs/narr/MyProject/development.ini
+++ b/docs/narr/MyProject/development.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/narr/MyProject/production.ini b/docs/narr/MyProject/production.ini
index 43ea1d140..3396125f2 100644
--- a/docs/narr/MyProject/production.ini
+++ b/docs/narr/MyProject/production.ini
@@ -5,7 +5,6 @@ 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
[server:main]
diff --git a/docs/tutorials/wiki/src/authorization/development.ini b/docs/tutorials/wiki/src/authorization/development.ini
index 74781caed..996caa741 100644
--- a/docs/tutorials/wiki/src/authorization/development.ini
+++ b/docs/tutorials/wiki/src/authorization/development.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki/src/authorization/production.ini b/docs/tutorials/wiki/src/authorization/production.ini
index 2da493def..ca8107802 100644
--- a/docs/tutorials/wiki/src/authorization/production.ini
+++ b/docs/tutorials/wiki/src/authorization/production.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/docs/tutorials/wiki/src/basiclayout/development.ini b/docs/tutorials/wiki/src/basiclayout/development.ini
index 5a3dba52a..f637ebaa6 100644
--- a/docs/tutorials/wiki/src/basiclayout/development.ini
+++ b/docs/tutorials/wiki/src/basiclayout/development.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki/src/basiclayout/production.ini b/docs/tutorials/wiki/src/basiclayout/production.ini
index 2da493def..ca8107802 100644
--- a/docs/tutorials/wiki/src/basiclayout/production.ini
+++ b/docs/tutorials/wiki/src/basiclayout/production.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/docs/tutorials/wiki/src/models/development.ini b/docs/tutorials/wiki/src/models/development.ini
index 74781caed..996caa741 100644
--- a/docs/tutorials/wiki/src/models/development.ini
+++ b/docs/tutorials/wiki/src/models/development.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki/src/models/production.ini b/docs/tutorials/wiki/src/models/production.ini
index 2da493def..ca8107802 100644
--- a/docs/tutorials/wiki/src/models/production.ini
+++ b/docs/tutorials/wiki/src/models/production.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/docs/tutorials/wiki/src/tests/development.ini b/docs/tutorials/wiki/src/tests/development.ini
index 74781caed..996caa741 100644
--- a/docs/tutorials/wiki/src/tests/development.ini
+++ b/docs/tutorials/wiki/src/tests/development.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki/src/tests/production.ini b/docs/tutorials/wiki/src/tests/production.ini
index 2da493def..ca8107802 100644
--- a/docs/tutorials/wiki/src/tests/production.ini
+++ b/docs/tutorials/wiki/src/tests/production.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/docs/tutorials/wiki/src/views/development.ini b/docs/tutorials/wiki/src/views/development.ini
index 5a3dba52a..f637ebaa6 100644
--- a/docs/tutorials/wiki/src/views/development.ini
+++ b/docs/tutorials/wiki/src/views/development.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki/src/views/production.ini b/docs/tutorials/wiki/src/views/production.ini
index 2da493def..ca8107802 100644
--- a/docs/tutorials/wiki/src/views/production.ini
+++ b/docs/tutorials/wiki/src/views/production.ini
@@ -4,7 +4,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/docs/tutorials/wiki2/src/authorization/development.ini b/docs/tutorials/wiki2/src/authorization/development.ini
index 06c51fb12..38738f3c6 100644
--- a/docs/tutorials/wiki2/src/authorization/development.ini
+++ b/docs/tutorials/wiki2/src/authorization/development.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki2/src/authorization/production.ini b/docs/tutorials/wiki2/src/authorization/production.ini
index cefb5c231..c4034abad 100644
--- a/docs/tutorials/wiki2/src/authorization/production.ini
+++ b/docs/tutorials/wiki2/src/authorization/production.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/docs/tutorials/wiki2/src/basiclayout/development.ini b/docs/tutorials/wiki2/src/basiclayout/development.ini
index 06c51fb12..38738f3c6 100644
--- a/docs/tutorials/wiki2/src/basiclayout/development.ini
+++ b/docs/tutorials/wiki2/src/basiclayout/development.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki2/src/basiclayout/production.ini b/docs/tutorials/wiki2/src/basiclayout/production.ini
index cefb5c231..c4034abad 100644
--- a/docs/tutorials/wiki2/src/basiclayout/production.ini
+++ b/docs/tutorials/wiki2/src/basiclayout/production.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/docs/tutorials/wiki2/src/models/development.ini b/docs/tutorials/wiki2/src/models/development.ini
index 06c51fb12..38738f3c6 100644
--- a/docs/tutorials/wiki2/src/models/development.ini
+++ b/docs/tutorials/wiki2/src/models/development.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki2/src/models/production.ini b/docs/tutorials/wiki2/src/models/production.ini
index cefb5c231..c4034abad 100644
--- a/docs/tutorials/wiki2/src/models/production.ini
+++ b/docs/tutorials/wiki2/src/models/production.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/docs/tutorials/wiki2/src/tests/development.ini b/docs/tutorials/wiki2/src/tests/development.ini
index 06c51fb12..38738f3c6 100644
--- a/docs/tutorials/wiki2/src/tests/development.ini
+++ b/docs/tutorials/wiki2/src/tests/development.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki2/src/tests/production.ini b/docs/tutorials/wiki2/src/tests/production.ini
index cefb5c231..c4034abad 100644
--- a/docs/tutorials/wiki2/src/tests/production.ini
+++ b/docs/tutorials/wiki2/src/tests/production.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/docs/tutorials/wiki2/src/views/development.ini b/docs/tutorials/wiki2/src/views/development.ini
index 06c51fb12..38738f3c6 100644
--- a/docs/tutorials/wiki2/src/views/development.ini
+++ b/docs/tutorials/wiki2/src/views/development.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/docs/tutorials/wiki2/src/views/production.ini b/docs/tutorials/wiki2/src/views/production.ini
index cefb5c231..c4034abad 100644
--- a/docs/tutorials/wiki2/src/views/production.ini
+++ b/docs/tutorials/wiki2/src/views/production.ini
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/pyramid/scaffolds/alchemy/development.ini_tmpl b/pyramid/scaffolds/alchemy/development.ini_tmpl
index 17ef89856..bcba06c1c 100644
--- a/pyramid/scaffolds/alchemy/development.ini_tmpl
+++ b/pyramid/scaffolds/alchemy/development.ini_tmpl
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/pyramid/scaffolds/alchemy/production.ini_tmpl b/pyramid/scaffolds/alchemy/production.ini_tmpl
index 7bce40176..dc9145d12 100644
--- a/pyramid/scaffolds/alchemy/production.ini_tmpl
+++ b/pyramid/scaffolds/alchemy/production.ini_tmpl
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_tm
diff --git a/pyramid/scaffolds/starter/development.ini_tmpl b/pyramid/scaffolds/starter/development.ini_tmpl
index 4510074da..c92e13906 100644
--- a/pyramid/scaffolds/starter/development.ini_tmpl
+++ b/pyramid/scaffolds/starter/development.ini_tmpl
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/pyramid/scaffolds/starter/production.ini_tmpl b/pyramid/scaffolds/starter/production.ini_tmpl
index 2712d2e39..28957b5c1 100644
--- a/pyramid/scaffolds/starter/production.ini_tmpl
+++ b/pyramid/scaffolds/starter/production.ini_tmpl
@@ -5,7 +5,6 @@ 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
[server:main]
diff --git a/pyramid/scaffolds/zodb/development.ini_tmpl b/pyramid/scaffolds/zodb/development.ini_tmpl
index f24583cbf..1260b4db3 100644
--- a/pyramid/scaffolds/zodb/development.ini_tmpl
+++ b/pyramid/scaffolds/zodb/development.ini_tmpl
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_debugtoolbar
diff --git a/pyramid/scaffolds/zodb/production.ini_tmpl b/pyramid/scaffolds/zodb/production.ini_tmpl
index b38252d8f..1640009fa 100644
--- a/pyramid/scaffolds/zodb/production.ini_tmpl
+++ b/pyramid/scaffolds/zodb/production.ini_tmpl
@@ -5,7 +5,6 @@ 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
pyramid.includes =
pyramid_tm