[Zope-Checkins] SVN: Products.Five/trunk/formlib/ Minor license header cleanup

Philipp von Weitershausen philikon at philikon.de
Sat Feb 25 14:50:18 EST 2006


Log message for revision 65461:
  Minor license header cleanup
  

Changed:
  UU  Products.Five/trunk/formlib/formbase.py
  UU  Products.Five/trunk/formlib/tests/content.py
  UU  Products.Five/trunk/formlib/tests/test_formlib.py
  UU  Products.Five/trunk/formlib/tests/view.py

-=-
Modified: Products.Five/trunk/formlib/formbase.py
===================================================================
--- Products.Five/trunk/formlib/formbase.py	2006-02-25 19:43:09 UTC (rev 65460)
+++ Products.Five/trunk/formlib/formbase.py	2006-02-25 19:50:17 UTC (rev 65461)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004, 2005 Zope Corporation and Contributors.
+# Copyright (c) 2006 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -12,15 +12,17 @@
 #
 ##############################################################################
 """Five baseclasses for zope.formlib.form
+
+$Id$
 """
 from datetime import datetime
 import Acquisition
 
-from zope import interface
 import zope.event
 import zope.app.event.objectevent
+from zope import interface
+from zope.formlib import interfaces, form, namedtemplate
 from zope.app.i18n import ZopeMessageFactory as _
-from zope.formlib import interfaces, form, namedtemplate
 
 from Products.Five.browser.pagetemplatefile import ZopeTwoPageTemplateFile
 from Products.Five.browser.decode import processInputs, setPageEncoding


Property changes on: Products.Five/trunk/formlib/formbase.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Products.Five/trunk/formlib/tests/content.py
===================================================================
--- Products.Five/trunk/formlib/tests/content.py	2006-02-25 19:43:09 UTC (rev 65460)
+++ Products.Five/trunk/formlib/tests/content.py	2006-02-25 19:50:17 UTC (rev 65461)
@@ -57,4 +57,3 @@
         self.somelist = somelist
 
 InitializeClass(Content)
-        
\ No newline at end of file


Property changes on: Products.Five/trunk/formlib/tests/content.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Products.Five/trunk/formlib/tests/test_formlib.py
===================================================================
--- Products.Five/trunk/formlib/tests/test_formlib.py	2006-02-25 19:43:09 UTC (rev 65460)
+++ Products.Five/trunk/formlib/tests/test_formlib.py	2006-02-25 19:50:17 UTC (rev 65461)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004, 2005 Zope Corporation and Contributors.
+# Copyright (c) 2006 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -13,7 +13,7 @@
 ##############################################################################
 """Test forms
 
-$Id: test_forms.py 19283 2005-10-31 17:43:51Z philikon $
+$Id$
 """
 import os, sys
 if __name__ == '__main__':


Property changes on: Products.Five/trunk/formlib/tests/test_formlib.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Products.Five/trunk/formlib/tests/view.py
===================================================================
--- Products.Five/trunk/formlib/tests/view.py	2006-02-25 19:43:09 UTC (rev 65460)
+++ Products.Five/trunk/formlib/tests/view.py	2006-02-25 19:50:17 UTC (rev 65461)
@@ -1,3 +1,20 @@
+##############################################################################
+#
+# Copyright (c) 2006 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.
+#
+##############################################################################
+"""Five baseclasses for zope.formlib.form
+
+$Id$
+"""
 from zope.formlib import form, page
 
 from Products.Five.browser import BrowserView
@@ -23,4 +40,4 @@
     """
     
     form_fields = form.Fields(IContent)
-    
\ No newline at end of file
+    


Property changes on: Products.Five/trunk/formlib/tests/view.py
___________________________________________________________________
Name: svn:keywords
   + Id



More information about the Zope-Checkins mailing list