Copyright switch to "The Jinja Team".

--HG--
branch : trunk
diff --git a/jinja2/__init__.py b/jinja2/__init__.py
index 95b2d5b..b7a14f7 100644
--- a/jinja2/__init__.py
+++ b/jinja2/__init__.py
@@ -23,7 +23,7 @@
         {% endblock %}
 
 
-    :copyright: 2008 by Armin Ronacher, Christoph Hack.
+    :copyright: (c) 2009 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 22ae823..f7f807b 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: Copyright 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD.
 """
 from System import DateTime
diff --git a/jinja2/_speedups.c b/jinja2/_speedups.c
index cce9dfb..c8ef9af 100644
--- a/jinja2/_speedups.c
+++ b/jinja2/_speedups.c
@@ -8,7 +8,7 @@
  * implementation of `tb_set_next` and Python implementations of the other
  * functions are used.
  *
- * :copyright: 2008 by Armin Ronacher, Mickaël Guérin.
+ * :copyright: (c) 2009 by the Jinja Team.
  * :license: BSD.
  */
 
diff --git a/jinja2/bccache.py b/jinja2/bccache.py
index 2c57616..2786082 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: Copyright 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD.
 """
 from os import path, listdir
diff --git a/jinja2/compiler.py b/jinja2/compiler.py
index e17aa1d..0e74faf 100644
--- a/jinja2/compiler.py
+++ b/jinja2/compiler.py
@@ -5,7 +5,7 @@
 
     Compiles nodes into python code.
 
-    :copyright: Copyright 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD.
 """
 from cStringIO import StringIO
diff --git a/jinja2/constants.py b/jinja2/constants.py
index c471e79..6e7ed90 100644
--- a/jinja2/constants.py
+++ b/jinja2/constants.py
@@ -5,7 +5,7 @@
 
     Various constants.
 
-    :copyright: 2007 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD, see LICENSE for more details.
 """
 
diff --git a/jinja2/debug.py b/jinja2/debug.py
index 53dac4d..38fa012 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: Copyright 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD.
 """
 import sys
diff --git a/jinja2/defaults.py b/jinja2/defaults.py
index 3e24e7d..aacd32b 100644
--- a/jinja2/defaults.py
+++ b/jinja2/defaults.py
@@ -5,7 +5,7 @@
 
     Jinja default filters and tags.
 
-    :copyright: 2007-2008 by Armin Ronacher.
+    :copyright: (c) 2009 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 9d43339..3c53fbd 100644
--- a/jinja2/environment.py
+++ b/jinja2/environment.py
@@ -5,7 +5,7 @@
 
     Provides a class that holds runtime and parsing time options.
 
-    :copyright: 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD, see LICENSE for more details.
 """
 import sys
diff --git a/jinja2/exceptions.py b/jinja2/exceptions.py
index 5bfca66..c40f7de 100644
--- a/jinja2/exceptions.py
+++ b/jinja2/exceptions.py
@@ -5,7 +5,7 @@
 
     Jinja exceptions.
 
-    :copyright: 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD, see LICENSE for more details.
 """
 
diff --git a/jinja2/ext.py b/jinja2/ext.py
index 353f265..cc8f431 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: Copyright 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD.
 """
 from collections import deque
diff --git a/jinja2/filters.py b/jinja2/filters.py
index afa7667..553ce6e 100644
--- a/jinja2/filters.py
+++ b/jinja2/filters.py
@@ -5,7 +5,7 @@
 
     Bundled jinja filters.
 
-    :copyright: 2008 by Armin Ronacher, Christoph Hack.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD, see LICENSE for more details.
 """
 import re
diff --git a/jinja2/lexer.py b/jinja2/lexer.py
index 6b26983..19509ac 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: 2007-2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD, see LICENSE for more details.
 """
 import re
diff --git a/jinja2/loaders.py b/jinja2/loaders.py
index c61cd84..b5817c7 100644
--- a/jinja2/loaders.py
+++ b/jinja2/loaders.py
@@ -5,7 +5,7 @@
 
     Jinja loader classes.
 
-    :copyright: 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD, see LICENSE for more details.
 """
 from os import path
diff --git a/jinja2/nodes.py b/jinja2/nodes.py
index 9d78b25..483366b 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: 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD, see LICENSE for more details.
 """
 import operator
diff --git a/jinja2/optimizer.py b/jinja2/optimizer.py
index 43065df..1831beb 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: Copyright 2008 by Christoph Hack, Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD.
 """
 from jinja2 import nodes
diff --git a/jinja2/parser.py b/jinja2/parser.py
index e8f07c5..5aa720e 100644
--- a/jinja2/parser.py
+++ b/jinja2/parser.py
@@ -5,7 +5,7 @@
 
     Implements the template parser.
 
-    :copyright: 2008 by Armin Ronacher.
+    :copyright: (c) 2009 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 87c2354..60a9035 100644
--- a/jinja2/runtime.py
+++ b/jinja2/runtime.py
@@ -5,7 +5,7 @@
 
     Runtime helpers.
 
-    :copyright: Copyright 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD.
 """
 import sys
diff --git a/jinja2/sandbox.py b/jinja2/sandbox.py
index 7b28273..c29bdea 100644
--- a/jinja2/sandbox.py
+++ b/jinja2/sandbox.py
@@ -9,7 +9,7 @@
 
     The behavior can be changed by subclassing the environment.
 
-    :copyright: Copyright 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD.
 """
 import operator
diff --git a/jinja2/tests.py b/jinja2/tests.py
index 6873b5a..58dc0c0 100644
--- a/jinja2/tests.py
+++ b/jinja2/tests.py
@@ -5,7 +5,7 @@
 
     Jinja test functions. Used with the "is" operator.
 
-    :copyright: 2007 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD, see LICENSE for more details.
 """
 import re
diff --git a/jinja2/utils.py b/jinja2/utils.py
index 45be2c2..5e31779 100644
--- a/jinja2/utils.py
+++ b/jinja2/utils.py
@@ -5,7 +5,7 @@
 
     Utility functions.
 
-    :copyright: 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD, see LICENSE for more details.
 """
 import re
diff --git a/jinja2/visitor.py b/jinja2/visitor.py
index ad11108..c27c24c 100644
--- a/jinja2/visitor.py
+++ b/jinja2/visitor.py
@@ -5,7 +5,7 @@
 
     This module implements a visitor for the nodes.
 
-    :copyright: Copyright 2008 by Armin Ronacher.
+    :copyright: (c) 2009 by the Jinja Team.
     :license: BSD.
 """
 from jinja2.nodes import Node