diff options
| author | Chris McDonough <chrism@plope.com> | 2011-08-22 02:16:55 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-08-22 02:16:55 -0400 |
| commit | 3d338ea5737b7c113b17120b40684e2694cf3fa9 (patch) | |
| tree | 4bbca1ffb7dfcc1570c6c8d06884832b0be70237 /docs/tutorials/wiki2/src/views | |
| parent | 6413015a8f5f4de675016f33640b483bb0ecb56f (diff) | |
| download | pyramid-3d338ea5737b7c113b17120b40684e2694cf3fa9.tar.gz pyramid-3d338ea5737b7c113b17120b40684e2694cf3fa9.tar.bz2 pyramid-3d338ea5737b7c113b17120b40684e2694cf3fa9.zip | |
- Use [app:main] instead of a pipeline in all scaffolds and tutorials
and narrative docs.
- Break out awkward description of PasteDeploy entry points from
project chapter into its own Paste chapter.
Diffstat (limited to 'docs/tutorials/wiki2/src/views')
| -rw-r--r-- | docs/tutorials/wiki2/src/views/development.ini | 6 | ||||
| -rw-r--r-- | docs/tutorials/wiki2/src/views/production.ini | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/docs/tutorials/wiki2/src/views/development.ini b/docs/tutorials/wiki2/src/views/development.ini index f93a88e6b..799ce7161 100644 --- a/docs/tutorials/wiki2/src/views/development.ini +++ b/docs/tutorials/wiki2/src/views/development.ini @@ -1,4 +1,4 @@ -[app:tutorial] +[app:main] use = egg:tutorial pyramid.reload_templates = true pyramid.debug_authorization = false @@ -11,10 +11,6 @@ pyramid.includes = pyramid_debugtoolbar sqlalchemy.url = sqlite:///%(here)s/tutorial.db -[pipeline:main] -pipeline = - tutorial - [server:main] use = egg:Paste#http host = 0.0.0.0 diff --git a/docs/tutorials/wiki2/src/views/production.ini b/docs/tutorials/wiki2/src/views/production.ini index 45ef791b7..df91d0b49 100644 --- a/docs/tutorials/wiki2/src/views/production.ini +++ b/docs/tutorials/wiki2/src/views/production.ini @@ -1,4 +1,4 @@ -[app:tutorial] +[app:main] use = egg:tutorial pyramid.reload_templates = false pyramid.debug_authorization = false @@ -10,10 +10,6 @@ pyramid.includes = pyramid_tm sqlalchemy.url = sqlite:///%(here)s/tutorial.db -[pipeline:main] -pipeline = - tutorial - [server:main] use = egg:Paste#http host = 0.0.0.0 |
