summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2013-09-06 00:38:30 -0500
committerMichael Merickel <michael@merickel.org>2013-09-06 00:38:30 -0500
commit70784a80c07cc831ab20c2e22e82b14afe834feb (patch)
tree3b09803b8221680e09aa3eb602986e0bd445836b /docs
parent404b28ba2efb02d93777a3e01fd602c96af8c077 (diff)
downloadpyramid-70784a80c07cc831ab20c2e22e82b14afe834feb.tar.gz
pyramid-70784a80c07cc831ab20c2e22e82b14afe834feb.tar.bz2
pyramid-70784a80c07cc831ab20c2e22e82b14afe834feb.zip
fix some more broken references
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_tour.rst7
-rw-r--r--docs/tutorials/wiki/definingviews.rst4
-rw-r--r--docs/tutorials/wiki2/definingviews.rst4
-rw-r--r--docs/whatsnew-1.0.rst4
4 files changed, 10 insertions, 9 deletions
diff --git a/docs/quick_tour.rst b/docs/quick_tour.rst
index e55730a0d..9a354b009 100644
--- a/docs/quick_tour.rst
+++ b/docs/quick_tour.rst
@@ -250,8 +250,9 @@ Python, but instead, will use a templating language.
Pyramid doesn't mandate a particular database system, form library,
etc. It encourages replaceability. This applies equally to templating,
which is fortunate: developers have strong views about template
-languages. That said, Pyramid bundles Chameleon and Mako,
-so in this step, let's use Chameleon as an example:
+languages. That said, the Pylons Project officially supports bindings for
+Chameleon, Jinja2 and Mako, so in this step, let's use Chameleon as an
+example:
.. literalinclude:: quick_tour/templating/views.py
:start-after: Start View 1
@@ -271,7 +272,7 @@ we can use ``name`` as a variable in our template via
.. seealso:: See Also: :doc:`../narr/templates`,
:ref:`debugging_templates`, and
- :ref:`mako_templates`
+ :ref:`available_template_system_bindings`
Templating With ``jinja2``
==========================
diff --git a/docs/tutorials/wiki/definingviews.rst b/docs/tutorials/wiki/definingviews.rst
index 23ee142af..e06468267 100644
--- a/docs/tutorials/wiki/definingviews.rst
+++ b/docs/tutorials/wiki/definingviews.rst
@@ -306,9 +306,9 @@ by the view (row 45). The view will use the ``body`` and
none of our tutorial views return in their dictionary.
``request`` is one of several
names that are available "by default" in a template when a template
- renderer is used. See :ref:`chameleon_template_renderers` for
+ renderer is used. See :ref:`renderer_system_values` for
information about other names that are available by default
- when a Chameleon template is used as a renderer.
+ when a template is used as a renderer.
Static Assets
-------------
diff --git a/docs/tutorials/wiki2/definingviews.rst b/docs/tutorials/wiki2/definingviews.rst
index ea49d4733..49dbed50f 100644
--- a/docs/tutorials/wiki2/definingviews.rst
+++ b/docs/tutorials/wiki2/definingviews.rst
@@ -272,9 +272,9 @@ by the view (row 45). The view will use the ``body`` and
none of our tutorial views return in their dictionary.
``request`` is one of several
names that are available "by default" in a template when a template
- renderer is used. See :ref:`chameleon_template_renderers` for
+ renderer is used. See :ref:`renderer_system_values` for
information about other names that are available by default
- when a Chameleon template is used as a renderer.
+ when a template is used as a renderer.
Static Assets
-------------
diff --git a/docs/whatsnew-1.0.rst b/docs/whatsnew-1.0.rst
index d1f3046ca..de24838fb 100644
--- a/docs/whatsnew-1.0.rst
+++ b/docs/whatsnew-1.0.rst
@@ -203,8 +203,8 @@ Mako
~~~~
In addition to Chameleon templating, Pyramid now also provides built-in
-support for :term:`Mako` templating. See :ref:`mako_templates` for more
-information.
+support for :term:`Mako` templating. See
+:ref:`available_template_system_bindings` for more information.
URL Dispatch
~~~~~~~~~~~~