some small documentation fixes
authorArmin Ronacher <armin.ronacher@active-4.com>
Sun, 18 May 2008 18:29:32 +0000 (20:29 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sun, 18 May 2008 18:29:32 +0000 (20:29 +0200)
--HG--
branch : trunk

docs/extensions.rst
docs/integration.rst
docs/switching.rst
docs/tricks.rst

index 9d9bea0811b58ab3607345f7bc2d12f1eba39fcc..65f0082b8a19134591f7446898f8ef17b9524fc4 100644 (file)
@@ -79,7 +79,7 @@ installed for a French community) may load the translations once and add the
 translation methods to the environment at environment generation time::
 
     translations = get_gettext_translations()
-    env = Environment(extensions=['jinja.ext.i18n'])
+    env = Environment(extensions=['jinja2.ext.i18n'])
     env.install_gettext_translations(translations)
 
 The `get_gettext_translations` function would return the translator for the
index 64620f7de52a6e1fc5196b1ef63f4eb571baa2ab..1875711df49143b38b880111ef2cbb4ae01c979f 100644 (file)
@@ -21,7 +21,7 @@ in its Babel extraction method `mapping file`_:
 
 .. sourcecode:: ini
 
-    [jinja: **/templates/**.html]
+    [jinja2: **/templates/**.html]
     encoding = utf-8
 
 The syntax related options of the :class:`Environment` are also available as
@@ -30,7 +30,7 @@ that templates use ``%`` as `line_statement_prefix` you can use this code:
 
 .. sourcecode:: ini
 
-    [jinja: **/templates/**.html]
+    [jinja2: **/templates/**.html]
     encoding = utf-8
     line_statement_prefix = %
 
index 71ee7d832bc67fa77dd8e6b16af89c57c6aac108..98303fe79d688fc3d483e20461e6e6e1b3862cfd 100644 (file)
@@ -70,26 +70,15 @@ Filters and Tests
 Templates
 ~~~~~~~~~
 
-Jinja2 has mostly the same syntax as Jinja1.  The only difference is that
-assigning variables doesn't use `set` as keyword now.  The following
-example shows a Jinja1 variable assignment::
+Jinja2 has mostly the same syntax as Jinja1.  What's different is that
+macros require parentheses around the argument list now.
 
-    {% set foo = 42 %}
-
-In Jinja2 the `set` is ommited::
-
-    {% foo = 42 %}
-
-Additionally macros require parentheses around the argument list now.
-
-Jinja2 allows dynamic inheritance now and dynamic includes.  The old helper
-function `rendertemplate` is gone now, `include` can be used instead.
-Additionally includes no longer import macros and variable assignments, for
+Additionally Jinja2 allows dynamic inheritance now and dynamic includes.
+The old helper function `rendertemplate` is gone now, `include` can be used
+instead.  Includes no longer import macros and variable assignments, for
 that the new `import` tag is used.  This concept is explained in the
 :ref:`import` documentation.
 
-Currently there is no support for the `recursive` modifier of for loops!
-
 
 Django
 ------
index 1cfdaa883ec90dedc1f9e5783fc8e7e656563de5..051c6fa5511239fbf5b81b13ead631a7ffdfcb0a 100644 (file)
@@ -1,9 +1,9 @@
-Tipps and Tricks
-================
+Tips and Tricks
+===============
 
 .. highlight:: html+jinja
 
-This part of the documentation shows some tipps and tricks for Jinja2
+This part of the documentation shows some tips and tricks for Jinja2
 templates.