diff options
| author | Steve Piercy <web@stevepiercy.com> | 2015-05-26 13:12:01 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2015-05-26 13:12:01 -0700 |
| commit | a940e1ccaa6c3ca81b1dec6ba2e505af9b792222 (patch) | |
| tree | 774e367ef7cb2c5411b014a68f6829a274d1cc31 /docs/tutorials/wiki/src/models | |
| parent | 5a679cbc019905a2d57c8cac14af9e0e7f3a90bd (diff) | |
| download | pyramid-a940e1ccaa6c3ca81b1dec6ba2e505af9b792222.tar.gz pyramid-a940e1ccaa6c3ca81b1dec6ba2e505af9b792222.tar.bz2 pyramid-a940e1ccaa6c3ca81b1dec6ba2e505af9b792222.zip | |
- clean up and make defininingviews consistent between two wiki tutorials
- sort imports to be consistent with scaffold setup.py
- update templates, static assets
Diffstat (limited to 'docs/tutorials/wiki/src/models')
| -rw-r--r-- | docs/tutorials/wiki/src/models/setup.py | 4 | ||||
| -rw-r--r-- | docs/tutorials/wiki/src/models/tutorial/templates/mytemplate.pt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorials/wiki/src/models/setup.py b/docs/tutorials/wiki/src/models/setup.py index da79881ab..58a454f80 100644 --- a/docs/tutorials/wiki/src/models/setup.py +++ b/docs/tutorials/wiki/src/models/setup.py @@ -11,10 +11,10 @@ with open(os.path.join(here, 'CHANGES.txt')) as f: requires = [ 'pyramid', 'pyramid_chameleon', + 'pyramid_debugtoolbar', + 'pyramid_tm', 'pyramid_zodbconn', 'transaction', - 'pyramid_tm', - 'pyramid_debugtoolbar', 'ZODB3', 'waitress', ] diff --git a/docs/tutorials/wiki/src/models/tutorial/templates/mytemplate.pt b/docs/tutorials/wiki/src/models/tutorial/templates/mytemplate.pt index 29dacef19..1b30f42b6 100644 --- a/docs/tutorials/wiki/src/models/tutorial/templates/mytemplate.pt +++ b/docs/tutorials/wiki/src/models/tutorial/templates/mytemplate.pt @@ -8,7 +8,7 @@ <meta name="author" content="Pylons Project"> <link rel="shortcut icon" href="${request.static_url('tutorial:static/pyramid-16x16.png')}"> - <title>Alchemy Scaffold for The Pyramid Web Framework</title> + <title>ZODB Scaffold for The Pyramid Web Framework</title> <!-- Bootstrap core CSS --> <link href="//oss.maxcdn.com/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"> |
