[Checkins] SVN: Sandbox/ulif/grok-adminui-experimental/src/grok/ Added license headers.

Uli Fouquet uli at gnufix.de
Sat Aug 18 12:07:27 EDT 2007


Log message for revision 78950:
  Added license headers.

Changed:
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/admin/docgrok.py
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/admin/objectinfo.py
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/admin/tests/__init__.py
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/admin/tests/test_grokadmin.py
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/admin/utilities.py
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/admin/view.py
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/__init__.py
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/apps.py
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/loginlogout.py
  U   Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/objectbrowser.py

-=-
Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/admin/docgrok.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/admin/docgrok.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/admin/docgrok.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 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 Grok's Friendly Doctor.
 
 Ask DocGrok and he will try his best, to keep you well informed about

Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/admin/objectinfo.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/admin/objectinfo.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/admin/objectinfo.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 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.
+#
+##############################################################################
 """Information about objects.
 
 This module provides wrappers/proies to give information about

Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/admin/tests/__init__.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/admin/tests/__init__.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/admin/tests/__init__.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1 +1,14 @@
+##############################################################################
+#
+# Copyright (c) 2007 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.
+#
+##############################################################################
 # this is a package

Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/admin/tests/test_grokadmin.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/admin/tests/test_grokadmin.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/admin/tests/test_grokadmin.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1,3 +1,18 @@
+##############################################################################
+#
+# Copyright (c) 2007 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.
+#
+##############################################################################
+"""Test setup for grok admin UI."""
+
 import unittest
 from pkg_resources import resource_listdir
 from zope.testing import doctest, cleanup

Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/admin/utilities.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/admin/utilities.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/admin/utilities.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 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.
+#
+##############################################################################
 """Helper functions for grok admin.
 """
 import re

Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/admin/view.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/admin/view.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/admin/view.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1,3 +1,18 @@
+##############################################################################
+#
+# Copyright (c) 2007 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.
+#
+##############################################################################
+"""Views for the grok admin UI"""
+
 import grok
 import os
 import inspect

Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/__init__.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/__init__.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/__init__.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1,2 +1,15 @@
+##############################################################################
+#
+# Copyright (c) 2007 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.
+#
+##############################################################################
 # this is a package
 

Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/apps.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/apps.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/apps.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 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 grok

Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/loginlogout.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/loginlogout.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/loginlogout.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 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 grok

Modified: Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/objectbrowser.py
===================================================================
--- Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/objectbrowser.py	2007-08-18 15:59:41 UTC (rev 78949)
+++ Sandbox/ulif/grok-adminui-experimental/src/grok/ftests/admin/objectbrowser.py	2007-08-18 16:07:26 UTC (rev 78950)
@@ -1,3 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2007 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 grok



More information about the Checkins mailing list