[Checkins] SVN: z3c.schema/trunk/src/z3c/schema/ changed license header which I added earlier

Roger Ineichen roger at projekt01.ch
Sun Sep 14 18:39:35 EDT 2008


Log message for revision 91149:
  changed license header which I added earlier

Changed:
  U   z3c.schema/trunk/src/z3c/schema/baseurl/field.py
  U   z3c.schema/trunk/src/z3c/schema/baseurl/tests.py
  U   z3c.schema/trunk/src/z3c/schema/dateselect/field.py
  U   z3c.schema/trunk/src/z3c/schema/dateselect/interfaces.py
  U   z3c.schema/trunk/src/z3c/schema/email/interfaces.py
  U   z3c.schema/trunk/src/z3c/schema/hostname/field.py
  U   z3c.schema/trunk/src/z3c/schema/hostname/tests.py
  U   z3c.schema/trunk/src/z3c/schema/ip/field.py
  U   z3c.schema/trunk/src/z3c/schema/ip/interfaces.py
  U   z3c.schema/trunk/src/z3c/schema/optchoice/field.py
  U   z3c.schema/trunk/src/z3c/schema/optchoice/tests.py
  U   z3c.schema/trunk/src/z3c/schema/payments/field.py
  U   z3c.schema/trunk/src/z3c/schema/payments/interfaces.py
  U   z3c.schema/trunk/src/z3c/schema/payments/tests.py
  U   z3c.schema/trunk/src/z3c/schema/regex/field.py
  U   z3c.schema/trunk/src/z3c/schema/regex/interfaces.py

-=-
Modified: z3c.schema/trunk/src/z3c/schema/baseurl/field.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/baseurl/field.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/baseurl/field.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,12 +1,19 @@
-###############################################################################
+##############################################################################
 #
-# Copyright 2006 by refline (Schweiz) AG, CH-5630 Muri
+# Copyright (c) 2008 Zope Foundation and Contributors.
+# All Rights Reserved.
 #
-###############################################################################
-"""Special Fields
-
-$Id$
+# 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.
+#
+##############################################################################
 """
+$Id:$
+"""
 __docformat__ = "reStructuredText"
 
 import re

Modified: z3c.schema/trunk/src/z3c/schema/baseurl/tests.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/baseurl/tests.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/baseurl/tests.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,13 +1,20 @@
-###############################################################################
+##############################################################################
 #
-# Copyright 2006 by refline (Schweiz) AG, CH-5630 Muri
+# Copyright (c) 2008 Zope Foundation and Contributors.
+# All Rights Reserved.
 #
-###############################################################################
-"""Refline Recruiter Tests
-
-$Id$
+# 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.
+#
+##############################################################################
 """
-__docformat__ = 'restructuredtext'
+$Id:$
+"""
+__docformat__ = "reStructuredText"
 
 import unittest
 from zope.schema.interfaces import RequiredMissing

Modified: z3c.schema/trunk/src/z3c/schema/dateselect/field.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/dateselect/field.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/dateselect/field.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -16,11 +16,13 @@
 $Id$
 """
 __docformat__ = "reStructuredText"
+
 import zope.interface
 import zope.schema
 
 from z3c.schema.dateselect import interfaces
 
+
 class DateSelect(zope.schema.Date):
     zope.interface.implements(interfaces.IDateSelect)
 

Modified: z3c.schema/trunk/src/z3c/schema/dateselect/interfaces.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/dateselect/interfaces.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/dateselect/interfaces.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -19,6 +19,7 @@
 
 import zope.schema.interfaces
 
+
 class IDateSelect(zope.schema.interfaces.IDate):
 
     yearRange = zope.interface.Attribute(u"Year range.")

Modified: z3c.schema/trunk/src/z3c/schema/email/interfaces.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/email/interfaces.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/email/interfaces.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -18,6 +18,7 @@
 
 import zope.schema
 import zope.schema.interfaces
+
 from z3c.schema.i18n import MessageFactory as _
 
 

Modified: z3c.schema/trunk/src/z3c/schema/hostname/field.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/hostname/field.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/hostname/field.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,12 +1,19 @@
-###############################################################################
+##############################################################################
 #
-# Copyright 2006 by refline (Schweiz) AG, CH-5630 Muri
+# Copyright (c) 2008 Zope Foundation and Contributors.
+# All Rights Reserved.
 #
-###############################################################################
-"""Special Fields
-
-$Id$
+# 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.
+#
+##############################################################################
 """
+$Id:$
+"""
 __docformat__ = "reStructuredText"
 
 import re

Modified: z3c.schema/trunk/src/z3c/schema/hostname/tests.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/hostname/tests.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/hostname/tests.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,13 +1,20 @@
-###############################################################################
+##############################################################################
 #
-# Copyright 2006 by refline (Schweiz) AG, CH-5630 Muri
+# Copyright (c) 2008 Zope Foundation and Contributors.
+# All Rights Reserved.
 #
-###############################################################################
-"""Refline Recruiter Tests
-
-$Id$
+# 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.
+#
+##############################################################################
 """
-__docformat__ = 'restructuredtext'
+$Id:$
+"""
+__docformat__ = "reStructuredText"
 
 import unittest
 from zope.schema.interfaces import RequiredMissing

Modified: z3c.schema/trunk/src/z3c/schema/ip/field.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/ip/field.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/ip/field.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -15,6 +15,7 @@
 $Id$
 """
 __docformat__ = "reStructuredText"
+
 import zope.interface
 import zope.schema
 

Modified: z3c.schema/trunk/src/z3c/schema/ip/interfaces.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/ip/interfaces.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/ip/interfaces.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -19,6 +19,7 @@
 
 import zope.schema
 import zope.schema.interfaces
+
 from z3c.schema.i18n import MessageFactory as _
 
 class IIPAddress(zope.schema.interfaces.IBytesLine):

Modified: z3c.schema/trunk/src/z3c/schema/optchoice/field.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/optchoice/field.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/optchoice/field.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,13 +1,21 @@
-###############################################################################
+##############################################################################
 #
-# Copyright 2006 by refline (Schweiz) AG, CH-5630 Muri
+# Copyright (c) 2008 Zope Foundation and Contributors.
+# All Rights Reserved.
 #
-###############################################################################
-"""Special Fields
-
-$Id$
+# 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.
+#
+##############################################################################
 """
+$Id:$
+"""
 __docformat__ = "reStructuredText"
+
 import zope.interface
 import zope.schema
 from zope.schema.interfaces import IField, ValidationError

Modified: z3c.schema/trunk/src/z3c/schema/optchoice/tests.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/optchoice/tests.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/optchoice/tests.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,13 +1,20 @@
-###############################################################################
+##############################################################################
 #
-# Copyright 2006 by refline (Schweiz) AG, CH-5630 Muri
+# Copyright (c) 2008 Zope Foundation and Contributors.
+# All Rights Reserved.
 #
-###############################################################################
-"""Refline Recruiter Tests
-
-$Id$
+# 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.
+#
+##############################################################################
 """
-__docformat__ = 'restructuredtext'
+$Id:$
+"""
+__docformat__ = "reStructuredText"
 
 import unittest
 from zope.testing import doctest

Modified: z3c.schema/trunk/src/z3c/schema/payments/field.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/payments/field.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/payments/field.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Foundation and Contributors.
+# Copyright (c) 2008 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -12,8 +12,9 @@
 #
 ##############################################################################
 """
-$Id$
+$Id:$
 """
+__docformat__ = "reStructuredText"
 
 import zope.interface
 import interfaces

Modified: z3c.schema/trunk/src/z3c/schema/payments/interfaces.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/payments/interfaces.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/payments/interfaces.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Foundation and Contributors.
+# Copyright (c) 2008 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -12,15 +12,16 @@
 #
 ##############################################################################
 """
-$Id$
+$Id:$
 """
-
 __docformat__ = "reStructuredText"
 
 import zope.schema
 import zope.schema.interfaces
+
 from z3c.schema.i18n import MessageFactory as _
 
+
 class IISO7812CreditCard(zope.schema.interfaces.ITextLine):
     """A credit card with a valid check digit"""
     

Modified: z3c.schema/trunk/src/z3c/schema/payments/tests.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/payments/tests.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/payments/tests.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Foundation and Contributors.
+# Copyright (c) 2008 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -12,9 +12,8 @@
 #
 ##############################################################################
 """
-$Id$
+$Id:$
 """
-
 __docformat__ = "reStructuredText"
 
 import unittest

Modified: z3c.schema/trunk/src/z3c/schema/regex/field.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/regex/field.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/regex/field.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -1,19 +1,28 @@
-###############################################################################
+##############################################################################
 #
-# Copyright 2006 by refline (Schweiz) AG, CH-5630 Muri
+# Copyright (c) 2008 Zope Foundation and Contributors.
+# All Rights Reserved.
 #
-###############################################################################
-"""Special Fields
-
-$Id$
+# 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.
+#
+##############################################################################
 """
+$Id:$
+"""
 __docformat__ = "reStructuredText"
 
 import re
 import zope.interface
 import zope.schema
+
 from z3c.schema.regex import interfaces
 
+
 class Regex(zope.schema.ASCIILine):
     """Regex schema field.
 

Modified: z3c.schema/trunk/src/z3c/schema/regex/interfaces.py
===================================================================
--- z3c.schema/trunk/src/z3c/schema/regex/interfaces.py	2008-09-14 19:35:00 UTC (rev 91148)
+++ z3c.schema/trunk/src/z3c/schema/regex/interfaces.py	2008-09-14 22:39:34 UTC (rev 91149)
@@ -21,6 +21,7 @@
 
 from z3c.schema.i18n import MessageFactory as _
 
+
 class IRegex(zope.schema.interfaces.IASCIILine):
     """Regular Expression field"""
 



More information about the Checkins mailing list