[Checkins] SVN: hurry.file/trunk/src/hurry/file/ Add license headers.

Martijn Faassen faassen at infrae.com
Tue Sep 16 17:50:22 EDT 2008


Log message for revision 91195:
  Add license headers.
  

Changed:
  U   hurry.file/trunk/src/hurry/file/__init__.py
  U   hurry.file/trunk/src/hurry/file/browser/__init__.py
  U   hurry.file/trunk/src/hurry/file/browser/tests.py
  U   hurry.file/trunk/src/hurry/file/browser/widget.py
  U   hurry.file/trunk/src/hurry/file/file.py
  U   hurry.file/trunk/src/hurry/file/interfaces.py
  U   hurry.file/trunk/src/hurry/file/schema.py
  U   hurry.file/trunk/src/hurry/file/tests.py

-=-
Modified: hurry.file/trunk/src/hurry/file/__init__.py
===================================================================
--- hurry.file/trunk/src/hurry/file/__init__.py	2008-09-16 21:47:14 UTC (rev 91194)
+++ hurry.file/trunk/src/hurry/file/__init__.py	2008-09-16 21:50:22 UTC (rev 91195)
@@ -1,2 +1,15 @@
-# this is a package
+##############################################################################
+#
+# Copyright (c) 2006-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 file import HurryFile, createHurryFile

Modified: hurry.file/trunk/src/hurry/file/browser/__init__.py
===================================================================
--- hurry.file/trunk/src/hurry/file/browser/__init__.py	2008-09-16 21:47:14 UTC (rev 91194)
+++ hurry.file/trunk/src/hurry/file/browser/__init__.py	2008-09-16 21:50:22 UTC (rev 91195)
@@ -1,2 +1,16 @@
+##############################################################################
+#
+# Copyright (c) 2006-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 widget import DownloadWidget, SessionFileWidget, EncodingFileWidget,\
      EncodingFileUploadDownloadWidget, SessionFileUploadDownloadWidget

Modified: hurry.file/trunk/src/hurry/file/browser/tests.py
===================================================================
--- hurry.file/trunk/src/hurry/file/browser/tests.py	2008-09-16 21:47:14 UTC (rev 91194)
+++ hurry.file/trunk/src/hurry/file/browser/tests.py	2008-09-16 21:50:22 UTC (rev 91195)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2006-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 unittest
 
 from zope import component

Modified: hurry.file/trunk/src/hurry/file/browser/widget.py
===================================================================
--- hurry.file/trunk/src/hurry/file/browser/widget.py	2008-09-16 21:47:14 UTC (rev 91194)
+++ hurry.file/trunk/src/hurry/file/browser/widget.py	2008-09-16 21:50:22 UTC (rev 91195)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2006-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 random, sys
 from StringIO import StringIO
 

Modified: hurry.file/trunk/src/hurry/file/file.py
===================================================================
--- hurry.file/trunk/src/hurry/file/file.py	2008-09-16 21:47:14 UTC (rev 91194)
+++ hurry.file/trunk/src/hurry/file/file.py	2008-09-16 21:50:22 UTC (rev 91195)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2005-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 sys, os, random, threading
 from StringIO import StringIO
 from persistent import Persistent

Modified: hurry.file/trunk/src/hurry/file/interfaces.py
===================================================================
--- hurry.file/trunk/src/hurry/file/interfaces.py	2008-09-16 21:47:14 UTC (rev 91194)
+++ hurry.file/trunk/src/hurry/file/interfaces.py	2008-09-16 21:50:22 UTC (rev 91195)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2006-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 Interface, Attribute
 from zope.schema.interfaces import IField
 from zope.schema import TextLine, Bytes

Modified: hurry.file/trunk/src/hurry/file/schema.py
===================================================================
--- hurry.file/trunk/src/hurry/file/schema.py	2008-09-16 21:47:14 UTC (rev 91194)
+++ hurry.file/trunk/src/hurry/file/schema.py	2008-09-16 21:50:22 UTC (rev 91195)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2006-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.schema import Field
 

Modified: hurry.file/trunk/src/hurry/file/tests.py
===================================================================
--- hurry.file/trunk/src/hurry/file/tests.py	2008-09-16 21:47:14 UTC (rev 91194)
+++ hurry.file/trunk/src/hurry/file/tests.py	2008-09-16 21:50:22 UTC (rev 91195)
@@ -1,3 +1,17 @@
+##############################################################################
+#
+# Copyright (c) 2006-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 unittest
 
 from zope.testing import doctest



More information about the Checkins mailing list