summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-05-14 03:04:06 +0000
committerChris McDonough <chrism@agendaless.com>2009-05-14 03:04:06 +0000
commit853f43626e678ad665c436c0bf5e1e7c05fac6df (patch)
tree313e71e271ea3375ad5f436840caf3daefca9bdf /docs
parent023386183022230fd1386a504e87015003957ca6 (diff)
downloadpyramid-853f43626e678ad665c436c0bf5e1e7c05fac6df.tar.gz
pyramid-853f43626e678ad665c436c0bf5e1e7c05fac6df.tar.bz2
pyramid-853f43626e678ad665c436c0bf5e1e7c05fac6df.zip
- Noted existence of ``repoze.bfg.pagetemplate`` template bindings in
"Available Add On Template System Bindings" in Templates chapter in narrative docs. - Noted existence of ``alchemy`` paster template.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/project.rst4
-rw-r--r--docs/narr/templates.rst14
2 files changed, 12 insertions, 6 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index f29d67099..c43f1f77e 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -92,7 +92,9 @@ application's Python code and templates.
<http://www.sqlalchemy.org/>`_ also exist. Use ``paster create -t
bfg_zodb`` to create a project that depends on ZODB. Use ``paster
create -t bfg_routesalchemy`` to create a project that depends on
- SQLAlchemy+Routes.
+ SQLAlchemy+Routes. Use ``paster create -t bfg_alchemy`` to create
+ a project that depends on SQLAlchemy but not Routes (uses traversal
+ instead of URL dispatch).
Installing your Newly Created Project for Development
-----------------------------------------------------
diff --git a/docs/narr/templates.rst b/docs/narr/templates.rst
index 985e1e237..775529f3c 100644
--- a/docs/narr/templates.rst
+++ b/docs/narr/templates.rst
@@ -202,16 +202,14 @@ installed, here's an example of using Mako from within a
.. note:: It's reasonably easy to write custom templating system
binding packages for use under :mod:`repoze.bfg`. See
- `repoze.bfg.jinja2
- <http://svn.repoze.org/repoze.bfg.jinja2/trunk/>`_ for an example
- of one such package. This particular one creates
- :mod:`repoze.bfg`-style bindings for the `Jinja2
- <http://jinja.pocoo.org/2/documentation>`_ templating system.
+ :ref:`available_template_system_bindings` for example packages.
Note that if you use third-party templating languages, the
auto-template-reload strategy explained in
:ref:`reload_templates_section` will not be available.
+.. _available_template_system_bindings:
+
Available Add-On Template System Bindings
-----------------------------------------
@@ -229,3 +227,9 @@ Jinja2 template bindings are available for :mod:`repoze.bfg` in the
:mod:`repoze.bfg.jinja2` package. It lives in the Repoze Subversion
repository at `http://svn.repoze.org/repoze.bfg.jinja2
<http://svn.repoze.org/repoze.bfg.jinja2>`_.
+
+Courtesty of Carlos de la Guardia, bindings for the Zope
+``zope.pagetemplate`` package ("old TAL") are available from
+`http://svn.repoze.org/repoze.bfg.zopepagetemplate/
+<http://svn.repoze.org/repoze.bfg.zopepagetemplate/>`_.
+