diff options
| author | Chris McDonough <chrism@plope.com> | 2011-08-11 23:38:34 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-08-11 23:38:34 -0400 |
| commit | efd07ccf6889e965f67b1dd0ef1a09f0efacbf2f (patch) | |
| tree | a87a09954031e5ca66521ce239ef81232b99b8b6 /docs/tutorials/wiki2/src/models | |
| parent | 8cd013ed14f22b85096784ace1bac480f3825414 (diff) | |
| download | pyramid-efd07ccf6889e965f67b1dd0ef1a09f0efacbf2f.tar.gz pyramid-efd07ccf6889e965f67b1dd0ef1a09f0efacbf2f.tar.bz2 pyramid-efd07ccf6889e965f67b1dd0ef1a09f0efacbf2f.zip | |
fix docs, scaffolds, and tutorials to use pyramid.includes
Diffstat (limited to 'docs/tutorials/wiki2/src/models')
| -rw-r--r-- | docs/tutorials/wiki2/src/models/development.ini | 9 | ||||
| -rw-r--r-- | docs/tutorials/wiki2/src/models/production.ini | 7 |
2 files changed, 5 insertions, 11 deletions
diff --git a/docs/tutorials/wiki2/src/models/development.ini b/docs/tutorials/wiki2/src/models/development.ini index bd71cdba5..f93a88e6b 100644 --- a/docs/tutorials/wiki2/src/models/development.ini +++ b/docs/tutorials/wiki2/src/models/development.ini @@ -6,18 +6,15 @@ pyramid.debug_notfound = false pyramid.debug_routematch = false pyramid.debug_templates = true pyramid.default_locale_name = en +pyramid.includes = pyramid_debugtoolbar + pyramid_tm + sqlalchemy.url = sqlite:///%(here)s/tutorial.db [pipeline:main] pipeline = - egg:WebError#evalerror - tm tutorial -[filter:tm] -use = egg:repoze.tm2#tm -commit_veto = repoze.tm:default_commit_veto - [server:main] use = egg:Paste#http host = 0.0.0.0 diff --git a/docs/tutorials/wiki2/src/models/production.ini b/docs/tutorials/wiki2/src/models/production.ini index ed8eadacc..c80a0a216 100644 --- a/docs/tutorials/wiki2/src/models/production.ini +++ b/docs/tutorials/wiki2/src/models/production.ini @@ -6,6 +6,8 @@ pyramid.debug_notfound = false pyramid.debug_routematch = false pyramid.debug_templates = false pyramid.default_locale_name = en +pyramid.includes = pyramid_tm + sqlalchemy.url = sqlite:///%(here)s/tutorial.db [filter:weberror] @@ -22,14 +24,9 @@ debug = false ;smtp_use_tls = ;error_message = -[filter:tm] -use = egg:repoze.tm2#tm -commit_veto = repoze.tm:default_commit_veto - [pipeline:main] pipeline = weberror - tm tutorial [server:main] |
