summaryrefslogtreecommitdiff
path: root/docs/narr/scaffolding.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-04-23 12:10:16 -0400
committerChris McDonough <chrism@plope.com>2013-04-23 12:10:16 -0400
commit47b8cf7e9b578464b533383083f7135271db0f9e (patch)
tree724c40d50f21773b6585ab7d9731b8bf7a93a71c /docs/narr/scaffolding.rst
parent2ae6f2cba5fc228e20c1ba26ad4f1411a63bbabb (diff)
parentdcaabcb87ca584c289efe70a604db0502838df3d (diff)
downloadpyramid-47b8cf7e9b578464b533383083f7135271db0f9e.tar.gz
pyramid-47b8cf7e9b578464b533383083f7135271db0f9e.tar.bz2
pyramid-47b8cf7e9b578464b533383083f7135271db0f9e.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/narr/scaffolding.rst')
-rw-r--r--docs/narr/scaffolding.rst12
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/narr/scaffolding.rst b/docs/narr/scaffolding.rst
index 9ac579a87..534b2caf4 100644
--- a/docs/narr/scaffolding.rst
+++ b/docs/narr/scaffolding.rst
@@ -74,10 +74,14 @@ concrete examples of scaffold directories (``zodb``, ``alchemy``, and
After you've created the template directory, add the following to the
``entry_points`` value of your distribution's ``setup.py``:
- [pyramid.scaffold]
- coolextension=coolextension.scaffolds:CoolExtensionTemplate
+.. code-block:: ini
+
+ [pyramid.scaffold]
+ coolextension=coolextension.scaffolds:CoolExtensionTemplate
-For example::
+For example:
+
+.. code-block:: python
def setup(
...,
@@ -95,7 +99,7 @@ because that's the name we gave it in the entry point setup. Running
output directory named ``MyStuff``.
See the module documentation for :mod:`pyramid.scaffolds` for information
-about the API of the :class:`pyramid.scaffolds.PyramidScaffold` class and
+about the API of the :class:`pyramid.scaffolds.Template` class and
related classes. You can override methods of this class to get special
behavior.