[Checkins] SVN: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/ changed (C) notice

Andreas Jung andreas at andreas-jung.com
Sat Mar 17 09:48:55 EDT 2007


Log message for revision 73282:
  changed (C) notice
  

Changed:
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/__init__.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/header.txt
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/interfaces.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/mapper.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/model.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/postgres.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/tests/__init__.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/tests/testSQLAlchemy.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/util.py
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/zope_mixin.py

-=-
Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/__init__.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/__init__.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/__init__.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,10 +1,9 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 
 

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,12 +1,12 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 
+
 import threading
 
 import sqlalchemy

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/header.txt
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/header.txt	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/header.txt	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,9 +1,8 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under der Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/interfaces.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/interfaces.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/interfaces.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,10 +1,9 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 
 

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/mapper.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/mapper.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/mapper.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,12 +1,12 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 
+
 """
 Utility methods for SqlAlchemy
 """

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/model.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/model.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/model.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,12 +1,12 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 
+
 """
 Optional Model support 
 """

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/postgres.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/postgres.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/postgres.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,10 +1,9 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 
 

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/tests/__init__.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/tests/__init__.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/tests/__init__.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,9 +1,8 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/tests/testSQLAlchemy.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/tests/testSQLAlchemy.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/tests/testSQLAlchemy.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -3,10 +3,9 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 
 

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/util.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/util.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/util.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,12 +1,12 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 
+
 """ 
 Some helper methods
 """

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/zope_mixin.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/zope_mixin.py	2007-03-17 11:04:28 UTC (rev 73281)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/zope_mixin.py	2007-03-17 13:48:55 UTC (rev 73282)
@@ -1,12 +1,12 @@
 ##########################################################################
 # z3c.sqlalchemy - A SQLAlchemy wrapper for Python/Zope
 #
-# (C) 2007, Haufe-Mediengruppe, Freiburg, Germany
-# (C) 2007, ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-# 
-# Published under the Zope Public License V 2.1 
+# (C) Zope Corporation and Contributor
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
 ##########################################################################
 
+
 import sys
 import threading
 



More information about the Checkins mailing list