summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-06-02 17:04:16 -0700
committerSteve Piercy <web@stevepiercy.com>2016-06-02 17:04:16 -0700
commita954081ea6fdb3cc276e0a258f133310cb0c4ddb (patch)
tree48992f2dd361555cf6ce6f6fdca18271a6e9c59d
parentf7236f8300cf38e7930a93f16a05e9ea132bad0f (diff)
downloadpyramid-a954081ea6fdb3cc276e0a258f133310cb0c4ddb.tar.gz
pyramid-a954081ea6fdb3cc276e0a258f133310cb0c4ddb.tar.bz2
pyramid-a954081ea6fdb3cc276e0a258f133310cb0c4ddb.zip
fix broken links in msg and update summary in scaffold base class PyramidTemplate.
- Closes #2604
-rw-r--r--pyramid/scaffolds/__init__.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/pyramid/scaffolds/__init__.py b/pyramid/scaffolds/__init__.py
index 4e811a42b..62c3eeecc 100644
--- a/pyramid/scaffolds/__init__.py
+++ b/pyramid/scaffolds/__init__.py
@@ -35,11 +35,10 @@ class PyramidTemplate(Template):
msg = dedent(
"""
%(separator)s
- Tutorials: http://docs.pylonsproject.org/projects/pyramid_tutorials
- Documentation: http://docs.pylonsproject.org/projects/pyramid
-
- Twitter (tips & updates): http://twitter.com/pylons
- Mailing List: http://groups.google.com/group/pylons-discuss
+ Tutorials: http://docs.pylonsproject.org/projects/pyramid_tutorials/en/latest/
+ Documentation: http://docs.pylonsproject.org/projects/pyramid/en/latest/
+ Twitter: https://twitter.com/trypyramid
+ Mailing List: https://groups.google.com/forum/#!forum/pylons-discuss
Welcome to Pyramid. Sorry for the convenience.
%(separator)s
@@ -53,12 +52,13 @@ class PyramidTemplate(Template):
class StarterProjectTemplate(PyramidTemplate):
_template_dir = 'starter'
- summary = 'Pyramid starter project'
+ summary = 'Pyramid starter project using URL dispatch and Chameleon'
class ZODBProjectTemplate(PyramidTemplate):
_template_dir = 'zodb'
- summary = 'Pyramid ZODB project using traversal'
+ summary = 'Pyramid project using ZODB, traversal, and Chameleon'
class AlchemyProjectTemplate(PyramidTemplate):
_template_dir = 'alchemy'
- summary = 'Pyramid SQLAlchemy project using url dispatch'
+ summary = 'Pyramid project using SQLAlchemy, SQLite, URL dispatch, and'
+ ' Chameleon'