diff options
author | Armin Ronacher <armin.ronacher@active-4.com> | 2010-01-22 09:41:48 +0100 |
---|---|---|
committer | Armin Ronacher <armin.ronacher@active-4.com> | 2010-01-22 09:41:48 +0100 |
commit | 55494e4b40b4dfa4329f51b2ce8174c2139a8a89 (patch) | |
tree | dfb91eb42e8320243907bdcbfa896c744e6a49b1 | |
parent | ef18944317d79cd4919561f29c9f772869e88443 (diff) | |
download | jinja2-55494e4b40b4dfa4329f51b2ce8174c2139a8a89.tar.gz |
It's a new year
--HG--
branch : trunk
-rw-r--r-- | jinja2/__init__.py | 2 | ||||
-rw-r--r-- | jinja2/_ipysupport.py | 2 | ||||
-rw-r--r-- | jinja2/bccache.py | 2 | ||||
-rw-r--r-- | jinja2/compiler.py | 2 | ||||
-rw-r--r-- | jinja2/constants.py | 2 | ||||
-rw-r--r-- | jinja2/debug.py | 2 | ||||
-rw-r--r-- | jinja2/defaults.py | 2 | ||||
-rw-r--r-- | jinja2/environment.py | 2 | ||||
-rw-r--r-- | jinja2/exceptions.py | 2 | ||||
-rw-r--r-- | jinja2/ext.py | 2 | ||||
-rw-r--r-- | jinja2/filters.py | 2 | ||||
-rw-r--r-- | jinja2/lexer.py | 2 | ||||
-rw-r--r-- | jinja2/loaders.py | 2 | ||||
-rw-r--r-- | jinja2/meta.py | 2 | ||||
-rw-r--r-- | jinja2/nodes.py | 2 | ||||
-rw-r--r-- | jinja2/optimizer.py | 2 | ||||
-rw-r--r-- | jinja2/parser.py | 2 | ||||
-rw-r--r-- | jinja2/runtime.py | 2 | ||||
-rw-r--r-- | jinja2/sandbox.py | 2 | ||||
-rw-r--r-- | jinja2/tests.py | 2 | ||||
-rw-r--r-- | jinja2/utils.py | 2 | ||||
-rw-r--r-- | jinja2/visitor.py | 2 |
22 files changed, 22 insertions, 22 deletions
diff --git a/jinja2/__init__.py b/jinja2/__init__.py index 41dd615..ed91fc5 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 f7f807b..61b5542 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 6415158..93e1041 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 ab1afee..59d06c7 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 6e7ed90..d83e44b 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 6930d32..08e828c 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 13e303b..96d20b2 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 d5a4515..8983123 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 acb26db..37071ed 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 218fbac..0d6d609 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 676627f..4b85c30 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 c9846aa..aa67896 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 feb4ff7..5d5723d 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 67113ab..3a779a5 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 7c6c230..5972139 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 1831beb..00eab11 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 c94afb4..b8879f8 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 b06b39c..0064cd0 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 f93219b..9887310 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 9fbf163..2d72dcb 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 be8cd6d..d0e83df 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 c27c24c..413e7c3 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 |