summaryrefslogtreecommitdiff
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
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.
-rw-r--r--CHANGES.txt13
-rw-r--r--docs/narr/project.rst4
-rw-r--r--docs/narr/templates.rst14
3 files changed, 25 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 461cbc560..95e6be8b3 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -10,6 +10,19 @@ Documentation
- Added glossary entry for "root factory".
+- Noted existence of ``repoze.bfg.pagetemplate`` template bindings in
+ "Available Add On Template System Bindings" in Templates chapter in
+ narrative docs.
+
+Features
+--------
+
+- Courtesty Carlos de la Guardia, added an ``alchemy`` Paster
+ template. This paster template sets up a BFG project that uses
+ SQAlchemy (with SQLite) and uses traversal to resolve URLs. (no
+ Routes areused). This template can be used via ``paster create -t
+ bfg_alchemy``.
+
0.8a6 (2009-05-11)
==================
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/>`_.
+