SVN: PluginRegistry/branches/1.0/ Merge changes made in 1.0.1 release to 1.0 branch.

Tres Seaver <[email protected]>
Newsgroups gmane.comp.web.zope.public-cvs
Message-ID <[email protected]>
Log message for revision 39935:
  Merge changes made in 1.0.1 release to 1.0 branch.

Changed:
  U   PluginRegistry/branches/1.0/PluginRegistry.py
  U   PluginRegistry/branches/1.0/__init__.py
  U   PluginRegistry/branches/1.0/interfaces/__init__.py
  U   PluginRegistry/branches/1.0/interfaces/plugins.py
  U   PluginRegistry/branches/1.0/tests/__init__.py
  U   PluginRegistry/branches/1.0/tests/test_PluginRegistry.py
  U   PluginRegistry/branches/1.0/utils.py

-=-
Modified: PluginRegistry/branches/1.0/PluginRegistry.py
===================================================================
--- PluginRegistry/branches/1.0/PluginRegistry.py	2005-11-05 20:10:53 UTC (rev 39934)
+++ PluginRegistry/branches/1.0/PluginRegistry.py	2005-11-05 20:25:48 UTC (rev 39935)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 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
+#
+##############################################################################
 """ Classes: PluginRegistry
 
 $Id$

Modified: PluginRegistry/branches/1.0/__init__.py
===================================================================
--- PluginRegistry/branches/1.0/__init__.py	2005-11-05 20:10:53 UTC (rev 39934)
+++ PluginRegistry/branches/1.0/__init__.py	2005-11-05 20:25:48 UTC (rev 39935)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 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
+#
+##############################################################################
 """ PluginRegistry product initialization.
 
 $Id$

Modified: PluginRegistry/branches/1.0/interfaces/__init__.py
===================================================================
--- PluginRegistry/branches/1.0/interfaces/__init__.py	2005-11-05 20:10:53 UTC (rev 39934)
+++ PluginRegistry/branches/1.0/interfaces/__init__.py	2005-11-05 20:25:48 UTC (rev 39935)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 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
+#
+##############################################################################
 """ PluginRegistry interface declarations
 
 $Id$

Modified: PluginRegistry/branches/1.0/interfaces/plugins.py
===================================================================
--- PluginRegistry/branches/1.0/interfaces/plugins.py	2005-11-05 20:10:53 UTC (rev 39934)
+++ PluginRegistry/branches/1.0/interfaces/plugins.py	2005-11-05 20:25:48 UTC (rev 39935)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 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
+#
+##############################################################################
 """ Interfaces:  IPluginRegistry
 
 $Id$

Modified: PluginRegistry/branches/1.0/tests/__init__.py
===================================================================
--- PluginRegistry/branches/1.0/tests/__init__.py	2005-11-05 20:10:53 UTC (rev 39934)
+++ PluginRegistry/branches/1.0/tests/__init__.py	2005-11-05 20:25:48 UTC (rev 39935)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 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
+#
+##############################################################################
 """ PluginRegistry unit tests
 
 $Id$

Modified: PluginRegistry/branches/1.0/tests/test_PluginRegistry.py
===================================================================
--- PluginRegistry/branches/1.0/tests/test_PluginRegistry.py	2005-11-05 20:10:53 UTC (rev 39934)
+++ PluginRegistry/branches/1.0/tests/test_PluginRegistry.py	2005-11-05 20:25:48 UTC (rev 39935)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 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
+#
+##############################################################################
 from OFS.Folder import Folder
 from Interface import Interface
 from Acquisition import Implicit

Modified: PluginRegistry/branches/1.0/utils.py
===================================================================
--- PluginRegistry/branches/1.0/utils.py	2005-11-05 20:10:53 UTC (rev 39934)
+++ PluginRegistry/branches/1.0/utils.py	2005-11-05 20:25:48 UTC (rev 39935)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2001 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
+#
+##############################################################################
 import os
 import unittest
 

_______________________________________________
Zope-CVS maillist  -  [email protected]
http://mail.zope.org/mailman/listinfo/zope-cvs

Zope CVS instructions: http://dev.zope.org/CVS
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.