[Checkins] SVN: hurry.query/trunk/src/hurry/query/ Update license headers.

Martijn Faassen faassen at infrae.com
Tue Sep 16 18:01:45 EDT 2008


Log message for revision 91200:
  Update license headers.
  

Changed:
  U   hurry.query/trunk/src/hurry/query/__init__.py
  U   hurry.query/trunk/src/hurry/query/interfaces.py
  U   hurry.query/trunk/src/hurry/query/query.py
  U   hurry.query/trunk/src/hurry/query/tests.py
  U   hurry.query/trunk/src/hurry/query/value.py

-=-
Modified: hurry.query/trunk/src/hurry/query/__init__.py
===================================================================
--- hurry.query/trunk/src/hurry/query/__init__.py	2008-09-16 21:59:44 UTC (rev 91199)
+++ hurry.query/trunk/src/hurry/query/__init__.py	2008-09-16 22:01:45 UTC (rev 91200)
@@ -1,3 +1,15 @@
-# Copyright (c) 2007 Infrae. All rights reserved.
-# See also LICENSE.txt
+##############################################################################
+#
+# Copyright (c) 2005-2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
 from query import And, Or, Eq, NotEq, Between, In, Ge, Le, Text

Modified: hurry.query/trunk/src/hurry/query/interfaces.py
===================================================================
--- hurry.query/trunk/src/hurry/query/interfaces.py	2008-09-16 21:59:44 UTC (rev 91199)
+++ hurry.query/trunk/src/hurry/query/interfaces.py	2008-09-16 22:01:45 UTC (rev 91200)
@@ -1,5 +1,17 @@
-# Copyright (c) 2007 Infrae. All rights reserved.
-# See also LICENSE.txt
+##############################################################################
+#
+# Copyright (c) 2005-2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
 from zope.interface import Interface
 
 class IQuery(Interface):

Modified: hurry.query/trunk/src/hurry/query/query.py
===================================================================
--- hurry.query/trunk/src/hurry/query/query.py	2008-09-16 21:59:44 UTC (rev 91199)
+++ hurry.query/trunk/src/hurry/query/query.py	2008-09-16 22:01:45 UTC (rev 91200)
@@ -1,5 +1,17 @@
-# Copyright (c) 2007 Infrae. All rights reserved.
-# See also LICENSE.txt
+##############################################################################
+#
+# Copyright (c) 2005-2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
 from zope.interface import implements
 
 from zope.app import zapi

Modified: hurry.query/trunk/src/hurry/query/tests.py
===================================================================
--- hurry.query/trunk/src/hurry/query/tests.py	2008-09-16 21:59:44 UTC (rev 91199)
+++ hurry.query/trunk/src/hurry/query/tests.py	2008-09-16 22:01:45 UTC (rev 91200)
@@ -1,5 +1,17 @@
-# Copyright (c) 2007 Infrae. All rights reserved.
-# See also LICENSE.txt
+##############################################################################
+#
+# Copyright (c) 2005-2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
 import unittest
 from zope.testing import doctest
 

Modified: hurry.query/trunk/src/hurry/query/value.py
===================================================================
--- hurry.query/trunk/src/hurry/query/value.py	2008-09-16 21:59:44 UTC (rev 91199)
+++ hurry.query/trunk/src/hurry/query/value.py	2008-09-16 22:01:45 UTC (rev 91200)
@@ -1,5 +1,17 @@
-# Copyright (c) 2007 Infrae. All rights reserved.
-# See also LICENSE.txt
+##############################################################################
+#
+# Copyright (c) 2005-2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
 from zc.catalog.interfaces import IValueIndex
 from hurry.query import query
 



More information about the Checkins mailing list