[z3-checkins] r5216 - in z3/sqlos/trunk: . auth container ftests interfaces services transaction

dreamcatcher at codespeak.net dreamcatcher at codespeak.net
Mon Jun 21 20:33:07 MEST 2004


Author: dreamcatcher
Date: Mon Jun 21 20:33:07 2004
New Revision: 5216

Modified:
   z3/sqlos/trunk/__init__.py
   z3/sqlos/trunk/adapter.py
   z3/sqlos/trunk/annotations.py
   z3/sqlos/trunk/attributeannotations.py
   z3/sqlos/trunk/auth/__init__.py
   z3/sqlos/trunk/container/__init__.py
   z3/sqlos/trunk/factory.py
   z3/sqlos/trunk/ftests/__init__.py
   z3/sqlos/trunk/ftests/test_transaction.py
   z3/sqlos/trunk/interfaces/__init__.py
   z3/sqlos/trunk/interfaces/auth.py
   z3/sqlos/trunk/interfaces/container.py
   z3/sqlos/trunk/interfaces/services.py
   z3/sqlos/trunk/services/__init__.py
   z3/sqlos/trunk/services/classservice.py
   z3/sqlos/trunk/services/metaconfigure.py
   z3/sqlos/trunk/services/servicenames.py
   z3/sqlos/trunk/services/sqlfactoryservice.py
   z3/sqlos/trunk/transaction/__init__.py
   z3/sqlos/trunk/utils.py
   z3/sqlos/trunk/vocab.py
Log:
Add license

Modified: z3/sqlos/trunk/__init__.py
==============================================================================
--- z3/sqlos/trunk/__init__.py	(original)
+++ z3/sqlos/trunk/__init__.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """

Modified: z3/sqlos/trunk/adapter.py
==============================================================================
--- z3/sqlos/trunk/adapter.py	(original)
+++ z3/sqlos/trunk/adapter.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """

Modified: z3/sqlos/trunk/annotations.py
==============================================================================
--- z3/sqlos/trunk/annotations.py	(original)
+++ z3/sqlos/trunk/annotations.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""
 from sqlobject import *
 
 class Annotations(SQLObject):

Modified: z3/sqlos/trunk/attributeannotations.py
==============================================================================
--- z3/sqlos/trunk/attributeannotations.py	(original)
+++ z3/sqlos/trunk/attributeannotations.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""
 import pickle
 
 from zodb.btrees.OOBTree import OOBTree

Modified: z3/sqlos/trunk/auth/__init__.py
==============================================================================
--- z3/sqlos/trunk/auth/__init__.py	(original)
+++ z3/sqlos/trunk/auth/__init__.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""
 __metaclass__ = type
 
 from persistent import Persistent

Modified: z3/sqlos/trunk/container/__init__.py
==============================================================================
--- z3/sqlos/trunk/container/__init__.py	(original)
+++ z3/sqlos/trunk/container/__init__.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """

Modified: z3/sqlos/trunk/factory.py
==============================================================================
--- z3/sqlos/trunk/factory.py	(original)
+++ z3/sqlos/trunk/factory.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """

Modified: z3/sqlos/trunk/ftests/__init__.py
==============================================================================
--- z3/sqlos/trunk/ftests/__init__.py	(original)
+++ z3/sqlos/trunk/ftests/__init__.py	Mon Jun 21 20:33:07 2004
@@ -0,0 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""

Modified: z3/sqlos/trunk/ftests/test_transaction.py
==============================================================================
--- z3/sqlos/trunk/ftests/test_transaction.py	(original)
+++ z3/sqlos/trunk/ftests/test_transaction.py	Mon Jun 21 20:33:07 2004
@@ -1,7 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """
-
 import unittest
 from transaction import get_transaction
 

Modified: z3/sqlos/trunk/interfaces/__init__.py
==============================================================================
--- z3/sqlos/trunk/interfaces/__init__.py	(original)
+++ z3/sqlos/trunk/interfaces/__init__.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""
 from zope.schema import TextLine
 from zope.interface import Interface, Attribute
 from sqlobject import NoDefault

Modified: z3/sqlos/trunk/interfaces/auth.py
==============================================================================
--- z3/sqlos/trunk/interfaces/auth.py	(original)
+++ z3/sqlos/trunk/interfaces/auth.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""
 from zope.app.pluggableauth.interfaces import IPrincipalSource
 
 class ISQLObjectPrincipalSource(IPrincipalSource):

Modified: z3/sqlos/trunk/interfaces/container.py
==============================================================================
--- z3/sqlos/trunk/interfaces/container.py	(original)
+++ z3/sqlos/trunk/interfaces/container.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""
 from zope.interface import Interface
 from zope.schema import Choice
 from zope.app.i18n import ZopeMessageIDFactory as _

Modified: z3/sqlos/trunk/interfaces/services.py
==============================================================================
--- z3/sqlos/trunk/interfaces/services.py	(original)
+++ z3/sqlos/trunk/interfaces/services.py	Mon Jun 21 20:33:07 2004
@@ -1,7 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """
-
 from zope.interface import Interface
 from zope.schema import Choice
 

Modified: z3/sqlos/trunk/services/__init__.py
==============================================================================
--- z3/sqlos/trunk/services/__init__.py	(original)
+++ z3/sqlos/trunk/services/__init__.py	Mon Jun 21 20:33:07 2004
@@ -1 +1,11 @@
-# import this
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""

Modified: z3/sqlos/trunk/services/classservice.py
==============================================================================
--- z3/sqlos/trunk/services/classservice.py	(original)
+++ z3/sqlos/trunk/services/classservice.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""
 from zope.interface import implements
 from sqlos.interfaces.services import IGlobalClassService
 from zope.component.exceptions import ComponentLookupError

Modified: z3/sqlos/trunk/services/metaconfigure.py
==============================================================================
--- z3/sqlos/trunk/services/metaconfigure.py	(original)
+++ z3/sqlos/trunk/services/metaconfigure.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""
 from zope.component import getService
 
 def classhandler(_context, component, name=''):

Modified: z3/sqlos/trunk/services/servicenames.py
==============================================================================
--- z3/sqlos/trunk/services/servicenames.py	(original)
+++ z3/sqlos/trunk/services/servicenames.py	Mon Jun 21 20:33:07 2004
@@ -1,5 +1,12 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """
-
 SQLObjectFactory = 'SQLObjectFactory'

Modified: z3/sqlos/trunk/services/sqlfactoryservice.py
==============================================================================
--- z3/sqlos/trunk/services/sqlfactoryservice.py	(original)
+++ z3/sqlos/trunk/services/sqlfactoryservice.py	Mon Jun 21 20:33:07 2004
@@ -1,7 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """
-
 __metaclass__ = type
 
 from persistent import Persistent

Modified: z3/sqlos/trunk/transaction/__init__.py
==============================================================================
--- z3/sqlos/trunk/transaction/__init__.py	(original)
+++ z3/sqlos/trunk/transaction/__init__.py	Mon Jun 21 20:33:07 2004
@@ -1,7 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """
-
 __metaclass__ = type
 
 # The next import is needed so we don't shadow

Modified: z3/sqlos/trunk/utils.py
==============================================================================
--- z3/sqlos/trunk/utils.py	(original)
+++ z3/sqlos/trunk/utils.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,11 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
 """
 $Id$
 """

Modified: z3/sqlos/trunk/vocab.py
==============================================================================
--- z3/sqlos/trunk/vocab.py	(original)
+++ z3/sqlos/trunk/vocab.py	Mon Jun 21 20:33:07 2004
@@ -1,3 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2004 sqlos Contributors. All rights reserved.
+#
+# This software is distributed under the terms of the Zope Public
+# License (ZPL) v2.1. See COPYING.txt for more information.
+#
+##############################################################################
+"""
+$Id: adapter.py 5212 2004-06-21 18:09:05Z philikon $
+"""
 from zope.app import zapi
 from sqlos.utils import fromItems
 


More information about the z3-checkins mailing list