summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-06-02 17:26:14 -0700
committerSteve Piercy <web@stevepiercy.com>2016-06-02 17:26:14 -0700
commit03301637f1069a084e539b04944eb45eec59628e (patch)
tree187d1e54a5c0054b3670ab4b11dd09893cd5474f
parent4e77a52559d5edaa73669c29bbcf3804689bcca2 (diff)
parenta954081ea6fdb3cc276e0a258f133310cb0c4ddb (diff)
downloadpyramid-03301637f1069a084e539b04944eb45eec59628e.tar.gz
pyramid-03301637f1069a084e539b04944eb45eec59628e.tar.bz2
pyramid-03301637f1069a084e539b04944eb45eec59628e.zip
Merge pull request #2618 from stevepiercy/master
fix broken links in msg and update summary in scaffold base class Pyr…
-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'