[Checkins] SVN: z3c.optionstorage/trunk/s Add ZPL headers to files and more dependencies.

Brian Sutherland jinty at web.de
Thu Jun 21 20:55:55 EDT 2007


Log message for revision 76930:
  Add ZPL headers to files and more dependencies.

Changed:
  U   z3c.optionstorage/trunk/setup.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/__init__.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/browser/__init__.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metaconfigure.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metadirectives.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/browser/widgets.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/interfaces.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/metaconfigure.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/metadirectives.py
  U   z3c.optionstorage/trunk/src/z3c/optionstorage/vocabulary.py

-=-
Modified: z3c.optionstorage/trunk/setup.py
===================================================================
--- z3c.optionstorage/trunk/setup.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/setup.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -10,13 +10,20 @@
 
     packages = find_packages('src'),
     package_dir = {'': 'src'},
-    install_requires = ['zope.annotation',
-                        'setuptools',
+    install_requires = ['setuptools',
+                        'persistent',
+                        'zope.annotation',
+                        'zope.configuration', 
+                        'zope.deprecation', 
                         'zope.i18n',
                         'zope.interface',
                         'zope.proxy',
+                        'zope.app.schema',
                         'zope.schema',
                         'zope.security',
+                        'zope.app.pagetemplate',
+                        'zope.app.publisher',
+                        'zope.app.form',
                         'zope.app.zapi'],
     zip_safe = False,
     )

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/__init__.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/__init__.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/__init__.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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.annotation.interfaces import IAnnotatable, IAnnotations
 from zope.proxy import removeAllProxies
 from zope.interface import implements

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/browser/__init__.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/browser/__init__.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/browser/__init__.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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 zope.deprecation
 
 from zope.app.pagetemplate.viewpagetemplatefile import ViewPageTemplateFile

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metaconfigure.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metaconfigure.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metaconfigure.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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.app.publisher.browser.viewmeta import page
 from z3c.optionstorage.browser import OptionStorageView
 

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metadirectives.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metadirectives.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/browser/metadirectives.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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.app.publisher.browser.metadirectives import IViewDirective
 from zope.configuration.fields import MessageID
 from zope.interface import Interface

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/browser/widgets.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/browser/widgets.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/browser/widgets.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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.app.form.browser import DropdownWidget
 
 class OptionStorageVocabularyWidget(DropdownWidget):

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/interfaces.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/interfaces.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/interfaces.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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.common.mapping import IMapping
 from zope.interface import Interface
 

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/metaconfigure.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/metaconfigure.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/metaconfigure.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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 z3c.optionstorage.vocabulary import OptionStorageVocabulary
 from zope.app.schema.metaconfigure import vocabulary
 

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/metadirectives.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/metadirectives.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/metadirectives.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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 Interface
 from zope.schema import TextLine
 

Modified: z3c.optionstorage/trunk/src/z3c/optionstorage/vocabulary.py
===================================================================
--- z3c.optionstorage/trunk/src/z3c/optionstorage/vocabulary.py	2007-06-22 00:50:33 UTC (rev 76929)
+++ z3c.optionstorage/trunk/src/z3c/optionstorage/vocabulary.py	2007-06-22 00:55:55 UTC (rev 76930)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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.schema.interfaces import IVocabularyTokenized
 from zope.schema.vocabulary import SimpleTerm
 from zope.interface import implements



More information about the Checkins mailing list