summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/src/views
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-02-19 11:05:33 -0500
committerChris McDonough <chrism@plope.com>2012-02-19 11:05:33 -0500
commitd21ba4b61e901b27ceae36f29dac23387a8129d5 (patch)
tree48159d69072d9c3f3e9b54ecc1f666c09debe056 /docs/tutorials/wiki2/src/views
parent7f89e2d6c727d3022b38f09d72921afd9302a39c (diff)
downloadpyramid-d21ba4b61e901b27ceae36f29dac23387a8129d5.tar.gz
pyramid-d21ba4b61e901b27ceae36f29dac23387a8129d5.tar.bz2
pyramid-d21ba4b61e901b27ceae36f29dac23387a8129d5.zip
- Put ``pyramid.includes`` targets within ini files in scaffolds on separate
lines in order to be able to tell people to comment out only the ``pyramid_debugtoolbar`` line when they want to disable the toolbar.
Diffstat (limited to 'docs/tutorials/wiki2/src/views')
-rw-r--r--docs/tutorials/wiki2/src/views/development.ini5
-rw-r--r--docs/tutorials/wiki2/src/views/production.ini3
2 files changed, 5 insertions, 3 deletions
diff --git a/docs/tutorials/wiki2/src/views/development.ini b/docs/tutorials/wiki2/src/views/development.ini
index 2bb74454c..06c51fb12 100644
--- a/docs/tutorials/wiki2/src/views/development.ini
+++ b/docs/tutorials/wiki2/src/views/development.ini
@@ -7,8 +7,9 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.includes = pyramid_debugtoolbar
- pyramid_tm
+pyramid.includes =
+ pyramid_debugtoolbar
+ pyramid_tm
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
diff --git a/docs/tutorials/wiki2/src/views/production.ini b/docs/tutorials/wiki2/src/views/production.ini
index ec6dea135..cefb5c231 100644
--- a/docs/tutorials/wiki2/src/views/production.ini
+++ b/docs/tutorials/wiki2/src/views/production.ini
@@ -7,7 +7,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
-pyramid.includes = pyramid_tm
+pyramid.includes =
+ pyramid_tm
sqlalchemy.url = sqlite:///%(here)s/tutorial.db