fixed a few broken license declarations. should have been BSD not GPL
authorArmin Ronacher <armin.ronacher@active-4.com>
Mon, 14 Jul 2008 22:11:14 +0000 (00:11 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Mon, 14 Jul 2008 22:11:14 +0000 (00:11 +0200)
--HG--
branch : trunk

LICENSE
jinja2/compiler.py
jinja2/optimizer.py
jinja2/runtime.py
jinja2/visitor.py
tests/test_lrucache.py

diff --git a/LICENSE b/LICENSE
index 687b8482bc1af7d60d763c947bd75d9bf6dbf62a..859db46b2ffc6c2587938d0591cff1df660c477f 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2006 by the respective authors (see AUTHORS file).\r
+Copyright (c) 2006-2008 by the respective authors (see AUTHORS file).\r
 All rights reserved.\r
 \r
 Redistribution and use in source and binary forms, with or without\r
index 2d96d0d432d1ee443090151acc855ec9ad27c8aa..f1e182b2fff54f6e5566931a7c32a24ab8cfceaf 100644 (file)
@@ -6,7 +6,7 @@
     Compiles nodes into python code.
 
     :copyright: Copyright 2008 by Armin Ronacher.
-    :license: GNU GPL.
+    :license: BSD.
 """
 from copy import copy
 from keyword import iskeyword
index 4838971cee2b2b2a383ae89df46ac0ecf43c13eb..43065df6c94286aaa62ec0925a81dcfb0021563b 100644 (file)
@@ -14,7 +14,7 @@
     The solution would be a second syntax tree that has the scoping rules stored.
 
     :copyright: Copyright 2008 by Christoph Hack, Armin Ronacher.
-    :license: GNU GPL.
+    :license: BSD.
 """
 from jinja2 import nodes
 from jinja2.visitor import NodeTransformer
index d6c555357495e946588ad49a68ecff73dd29815d..496b484a66f1d9726f004e4b7b2072428438bf56 100644 (file)
@@ -6,7 +6,7 @@
     Runtime helpers.
 
     :copyright: Copyright 2008 by Armin Ronacher.
-    :license: GNU GPL.
+    :license: BSD.
 """
 import sys
 from types import FunctionType, MethodType
index 8c94803f7a5bbb457baf845fa3c0e63f526f3485..ad111088954bd5bb4bd875de988814502144e7d4 100644 (file)
@@ -6,7 +6,7 @@
     This module implements a visitor for the nodes.
 
     :copyright: Copyright 2008 by Armin Ronacher.
-    :license: GNU GPL.
+    :license: BSD.
 """
 from jinja2.nodes import Node
 
index 0f93f7b71febd8e794c5968c3263e3a5af1c14c0..c53505a398ccb59a048970062fc8ea02ca25085e 100644 (file)
@@ -6,7 +6,7 @@
     This module tests the LRU Cache
 
     :copyright: Copyright 2008 by Armin Ronacher.
-    :license: GNU GPL.
+    :license: BSD.
 """
 import thread
 import time