[Zope3-checkins] CVS: Packages/ZConfig - datatypes.py:1.1.2.4 info.py:1.1.2.5 loader.py:1.1.2.8 matcher.py:1.1.2.6 schema.py:1.1.2.5

Fred L. Drake, Jr. fred@zope.com
Wed, 11 Dec 2002 15:18:16 -0500


Update of /cvs-repository/Packages/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv21799

Modified Files:
      Tag: zconfig-schema-devel-branch
	datatypes.py info.py loader.py matcher.py schema.py 
Log Message:
Add missing ZPL boilerplate to Python files.

=== Packages/ZConfig/datatypes.py 1.1.2.3 => 1.1.2.4 ===
--- Packages/ZConfig/datatypes.py:1.1.2.3	Wed Dec 11 15:03:40 2002
+++ Packages/ZConfig/datatypes.py	Wed Dec 11 15:18:15 2002
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (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.
+#
+##############################################################################
 """Selection of standard datatypes for ZConfig."""
 
 import re


=== Packages/ZConfig/info.py 1.1.2.4 => 1.1.2.5 ===
--- Packages/ZConfig/info.py:1.1.2.4	Wed Dec 11 01:10:36 2002
+++ Packages/ZConfig/info.py	Wed Dec 11 15:18:15 2002
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (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.
+#
+##############################################################################
 """Objects that can describe a ZConfig schema."""
 
 import ZConfig


=== Packages/ZConfig/loader.py 1.1.2.7 => 1.1.2.8 ===
--- Packages/ZConfig/loader.py:1.1.2.7	Tue Dec 10 18:25:01 2002
+++ Packages/ZConfig/loader.py	Wed Dec 11 15:18:15 2002
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (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.
+#
+##############################################################################
 """Schema loader utility."""
 
 import os.path


=== Packages/ZConfig/matcher.py 1.1.2.5 => 1.1.2.6 ===
--- Packages/ZConfig/matcher.py:1.1.2.5	Wed Dec 11 01:10:36 2002
+++ Packages/ZConfig/matcher.py	Wed Dec 11 15:18:15 2002
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (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.
+#
+##############################################################################
 """Utility that manages the binding of configuration data to a section."""
 
 import types


=== Packages/ZConfig/schema.py 1.1.2.4 => 1.1.2.5 ===
--- Packages/ZConfig/schema.py:1.1.2.4	Wed Dec 11 13:41:05 2002
+++ Packages/ZConfig/schema.py	Wed Dec 11 15:18:15 2002
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (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.
+#
+##############################################################################
 """Parser for ZConfig schemas."""
 
 import xml.sax