[Checkins] SVN: zope.introspector/branches/zi-with-ui/src/zope/introspector/ Add missing license headers.

Uli Fouquet uli at gnufix.de
Tue Jul 29 09:11:25 EDT 2008


Log message for revision 88965:
  Add missing license headers.

Changed:
  U   zope.introspector/branches/zi-with-ui/src/zope/introspector/adapters.py
  U   zope.introspector/branches/zi-with-ui/src/zope/introspector/code.py
  U   zope.introspector/branches/zi-with-ui/src/zope/introspector/infos.py
  U   zope.introspector/branches/zi-with-ui/src/zope/introspector/registry.py
  U   zope.introspector/branches/zi-with-ui/src/zope/introspector/ui/code.py
  U   zope.introspector/branches/zi-with-ui/src/zope/introspector/ui/infoprovider.py

-=-
Modified: zope.introspector/branches/zi-with-ui/src/zope/introspector/adapters.py
===================================================================
--- zope.introspector/branches/zi-with-ui/src/zope/introspector/adapters.py	2008-07-29 13:04:03 UTC (rev 88964)
+++ zope.introspector/branches/zi-with-ui/src/zope/introspector/adapters.py	2008-07-29 13:11:24 UTC (rev 88965)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# 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.
+#
+##############################################################################
 from zope.interface import implements
 from zope.component import adapts
 from zope.introspector.interfaces import IRegistrySearch

Modified: zope.introspector/branches/zi-with-ui/src/zope/introspector/code.py
===================================================================
--- zope.introspector/branches/zi-with-ui/src/zope/introspector/code.py	2008-07-29 13:04:03 UTC (rev 88964)
+++ zope.introspector/branches/zi-with-ui/src/zope/introspector/code.py	2008-07-29 13:11:24 UTC (rev 88965)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# 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.
+#
+##############################################################################
 import grokcore.component as grok
 from grokcore.component.interfaces import IContext
 import types

Modified: zope.introspector/branches/zi-with-ui/src/zope/introspector/infos.py
===================================================================
--- zope.introspector/branches/zi-with-ui/src/zope/introspector/infos.py	2008-07-29 13:04:03 UTC (rev 88964)
+++ zope.introspector/branches/zi-with-ui/src/zope/introspector/infos.py	2008-07-29 13:11:24 UTC (rev 88965)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# 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.
+#
+##############################################################################
 import grokcore.component as grok
 from zope import component
 from zope.interface import Interface

Modified: zope.introspector/branches/zi-with-ui/src/zope/introspector/registry.py
===================================================================
--- zope.introspector/branches/zi-with-ui/src/zope/introspector/registry.py	2008-07-29 13:04:03 UTC (rev 88964)
+++ zope.introspector/branches/zi-with-ui/src/zope/introspector/registry.py	2008-07-29 13:11:24 UTC (rev 88965)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# 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.
+#
+##############################################################################
 from zope.interface import implements
 from zope.introspector.interfaces import IRegistryInfo, IRegistrySearch
 from zope.component import globalregistry, getSiteManager

Modified: zope.introspector/branches/zi-with-ui/src/zope/introspector/ui/code.py
===================================================================
--- zope.introspector/branches/zi-with-ui/src/zope/introspector/ui/code.py	2008-07-29 13:04:03 UTC (rev 88964)
+++ zope.introspector/branches/zi-with-ui/src/zope/introspector/ui/code.py	2008-07-29 13:11:24 UTC (rev 88965)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# 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.
+#
+##############################################################################
 import grokcore.view as grok
 
 from zope.location.location import located

Modified: zope.introspector/branches/zi-with-ui/src/zope/introspector/ui/infoprovider.py
===================================================================
--- zope.introspector/branches/zi-with-ui/src/zope/introspector/ui/infoprovider.py	2008-07-29 13:04:03 UTC (rev 88964)
+++ zope.introspector/branches/zi-with-ui/src/zope/introspector/ui/infoprovider.py	2008-07-29 13:11:24 UTC (rev 88965)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2008 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# 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.
+#
+##############################################################################
 from grokcore.view import View
 from grokcore.component import context, name
 from zope.introspector.interfaces import (IObjectInfo, IModuleInfo,



More information about the Checkins mailing list