From: Armin Ronacher Date: Fri, 22 Jan 2010 08:41:48 +0000 (+0100) Subject: It's a new year X-Git-Tag: 2.3~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55494e4b40b4dfa4329f51b2ce8174c2139a8a89;p=thirdparty%2Fjinja.git It's a new year --HG-- branch : trunk --- diff --git a/jinja2/__init__.py b/jinja2/__init__.py index 41dd6151..ed91fc55 100644 --- a/jinja2/__init__.py +++ b/jinja2/__init__.py @@ -23,7 +23,7 @@ {% endblock %} - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ __docformat__ = 'restructuredtext en' diff --git a/jinja2/_ipysupport.py b/jinja2/_ipysupport.py index f7f807b5..61b5542a 100644 --- a/jinja2/_ipysupport.py +++ b/jinja2/_ipysupport.py @@ -6,7 +6,7 @@ IronPython support library. This library exports functionality from the CLR to Python that is normally available in the standard library. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD. """ from System import DateTime diff --git a/jinja2/bccache.py b/jinja2/bccache.py index 6415158f..93e1041e 100644 --- a/jinja2/bccache.py +++ b/jinja2/bccache.py @@ -11,7 +11,7 @@ Situations where this is useful are often forking web applications that are initialized on the first request. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD. """ from os import path, listdir diff --git a/jinja2/compiler.py b/jinja2/compiler.py index ab1afee7..59d06c74 100644 --- a/jinja2/compiler.py +++ b/jinja2/compiler.py @@ -5,7 +5,7 @@ Compiles nodes into python code. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD. """ from cStringIO import StringIO diff --git a/jinja2/constants.py b/jinja2/constants.py index 6e7ed906..d83e44bb 100644 --- a/jinja2/constants.py +++ b/jinja2/constants.py @@ -5,7 +5,7 @@ Various constants. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ diff --git a/jinja2/debug.py b/jinja2/debug.py index 6930d32b..08e828c4 100644 --- a/jinja2/debug.py +++ b/jinja2/debug.py @@ -7,7 +7,7 @@ ugly stuff with the Python traceback system in order to achieve tracebacks with correct line numbers, locals and contents. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import sys diff --git a/jinja2/defaults.py b/jinja2/defaults.py index 13e303b7..96d20b2f 100644 --- a/jinja2/defaults.py +++ b/jinja2/defaults.py @@ -5,7 +5,7 @@ Jinja default filters and tags. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ from jinja2.utils import generate_lorem_ipsum, Cycler, Joiner diff --git a/jinja2/environment.py b/jinja2/environment.py index d5a45153..89831238 100644 --- a/jinja2/environment.py +++ b/jinja2/environment.py @@ -5,7 +5,7 @@ Provides a class that holds runtime and parsing time options. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import sys diff --git a/jinja2/exceptions.py b/jinja2/exceptions.py index acb26dbb..37071ed0 100644 --- a/jinja2/exceptions.py +++ b/jinja2/exceptions.py @@ -5,7 +5,7 @@ Jinja exceptions. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ diff --git a/jinja2/ext.py b/jinja2/ext.py index 218fbace..0d6d609e 100644 --- a/jinja2/ext.py +++ b/jinja2/ext.py @@ -7,7 +7,7 @@ tags work. By default two example extensions exist: an i18n and a cache extension. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD. """ from collections import deque diff --git a/jinja2/filters.py b/jinja2/filters.py index 676627f3..4b85c308 100644 --- a/jinja2/filters.py +++ b/jinja2/filters.py @@ -5,7 +5,7 @@ Bundled jinja filters. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/jinja2/lexer.py b/jinja2/lexer.py index c9846aae..aa678969 100644 --- a/jinja2/lexer.py +++ b/jinja2/lexer.py @@ -11,7 +11,7 @@ operators we don't allow in templates. On the other hand it separates template code and python code in expressions. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/jinja2/loaders.py b/jinja2/loaders.py index feb4ff76..5d5723d7 100644 --- a/jinja2/loaders.py +++ b/jinja2/loaders.py @@ -5,7 +5,7 @@ Jinja loader classes. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ from os import path diff --git a/jinja2/meta.py b/jinja2/meta.py index 67113ab0..3a779a5e 100644 --- a/jinja2/meta.py +++ b/jinja2/meta.py @@ -6,7 +6,7 @@ This module implements various functions that exposes information about templates that might be interesting for various kinds of applications. - :copyright: (c) 2009 by the Jinja Team, see AUTHORS for more details. + :copyright: (c) 2010 by the Jinja Team, see AUTHORS for more details. :license: BSD, see LICENSE for more details. """ from jinja2 import nodes diff --git a/jinja2/nodes.py b/jinja2/nodes.py index 7c6c2301..5972139c 100644 --- a/jinja2/nodes.py +++ b/jinja2/nodes.py @@ -9,7 +9,7 @@ `get_nodes` used by the parser and translator in order to normalize python and jinja nodes. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import operator diff --git a/jinja2/optimizer.py b/jinja2/optimizer.py index 1831beb8..00eab115 100644 --- a/jinja2/optimizer.py +++ b/jinja2/optimizer.py @@ -13,7 +13,7 @@ The solution would be a second syntax tree that has the scoping rules stored. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD. """ from jinja2 import nodes diff --git a/jinja2/parser.py b/jinja2/parser.py index c94afb48..b8879f83 100644 --- a/jinja2/parser.py +++ b/jinja2/parser.py @@ -5,7 +5,7 @@ Implements the template parser. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ from jinja2 import nodes diff --git a/jinja2/runtime.py b/jinja2/runtime.py index b06b39cf..0064cd00 100644 --- a/jinja2/runtime.py +++ b/jinja2/runtime.py @@ -5,7 +5,7 @@ Runtime helpers. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD. """ import sys diff --git a/jinja2/sandbox.py b/jinja2/sandbox.py index f93219b2..98873102 100644 --- a/jinja2/sandbox.py +++ b/jinja2/sandbox.py @@ -9,7 +9,7 @@ The behavior can be changed by subclassing the environment. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD. """ import operator diff --git a/jinja2/tests.py b/jinja2/tests.py index 9fbf1639..2d72dcbe 100644 --- a/jinja2/tests.py +++ b/jinja2/tests.py @@ -5,7 +5,7 @@ Jinja test functions. Used with the "is" operator. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/jinja2/utils.py b/jinja2/utils.py index be8cd6d1..d0e83dfe 100644 --- a/jinja2/utils.py +++ b/jinja2/utils.py @@ -5,7 +5,7 @@ Utility functions. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD, see LICENSE for more details. """ import re diff --git a/jinja2/visitor.py b/jinja2/visitor.py index c27c24ce..413e7c30 100644 --- a/jinja2/visitor.py +++ b/jinja2/visitor.py @@ -5,7 +5,7 @@ This module implements a visitor for the nodes. - :copyright: (c) 2009 by the Jinja Team. + :copyright: (c) 2010 by the Jinja Team. :license: BSD. """ from jinja2.nodes import Node