[Checkins] SVN: zope.introspector/trunk/src/zope/introspector/ Add missing license headers.

Uli Fouquet uli at gnufix.de
Thu Jul 31 12:14:43 EDT 2008


Log message for revision 89103:
  Add missing license headers.

Changed:
  U   zope.introspector/trunk/src/zope/introspector/adapters.py
  U   zope.introspector/trunk/src/zope/introspector/code.py
  U   zope.introspector/trunk/src/zope/introspector/infos.py
  U   zope.introspector/trunk/src/zope/introspector/registry.py

-=-
Modified: zope.introspector/trunk/src/zope/introspector/adapters.py
===================================================================
--- zope.introspector/trunk/src/zope/introspector/adapters.py	2008-07-31 16:12:53 UTC (rev 89102)
+++ zope.introspector/trunk/src/zope/introspector/adapters.py	2008-07-31 16:14:42 UTC (rev 89103)
@@ -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/trunk/src/zope/introspector/code.py
===================================================================
--- zope.introspector/trunk/src/zope/introspector/code.py	2008-07-31 16:12:53 UTC (rev 89102)
+++ zope.introspector/trunk/src/zope/introspector/code.py	2008-07-31 16:14:42 UTC (rev 89103)
@@ -1,3 +1,19 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
+"""The real information providers for code objects (packages, classes, etc.)
+"""
+
 import grokcore.component as grok
 from grokcore.component.interfaces import IContext
 import types

Modified: zope.introspector/trunk/src/zope/introspector/infos.py
===================================================================
--- zope.introspector/trunk/src/zope/introspector/infos.py	2008-07-31 16:12:53 UTC (rev 89102)
+++ zope.introspector/trunk/src/zope/introspector/infos.py	2008-07-31 16:14:42 UTC (rev 89103)
@@ -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/trunk/src/zope/introspector/registry.py
===================================================================
--- zope.introspector/trunk/src/zope/introspector/registry.py	2008-07-31 16:12:53 UTC (rev 89102)
+++ zope.introspector/trunk/src/zope/introspector/registry.py	2008-07-31 16:14:42 UTC (rev 89103)
@@ -1,3 +1,19 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
+"""Collect infos about global and local registries and their content.
+"""
+
 from zope.interface import implements
 from zope.introspector.interfaces import IRegistryInfo, IRegistrySearch
 from zope.component import globalregistry, getSiteManager



More information about the Checkins mailing list