[Checkins] SVN: z3c.blobfile/trunk/ Update copyright year. Change package's url to PYPI page.

Dan Korostelev nadako at gmail.com
Tue Sep 9 05:28:04 EDT 2008


Log message for revision 90988:
  Update copyright year. Change package's url to PYPI page.

Changed:
  U   z3c.blobfile/trunk/README.txt
  U   z3c.blobfile/trunk/setup.py
  U   z3c.blobfile/trunk/src/z3c/__init__.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/__init__.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/browser/__init__.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/browser/file.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/file.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/i18n.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/image.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/interfaces.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/storages.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/testing.py
  U   z3c.blobfile/trunk/src/z3c/blobfile/tests.py

-=-
Modified: z3c.blobfile/trunk/README.txt
===================================================================
--- z3c.blobfile/trunk/README.txt	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/README.txt	2008-09-09 09:28:03 UTC (rev 90988)
@@ -11,4 +11,3 @@
 whereas blobs are directly consumed by the publisher. The main difference
 between this blob implementation and the old zope.app.file implementation
 can be seen in a replacement of the chunk objects by Blobs.
-

Modified: z3c.blobfile/trunk/setup.py
===================================================================
--- z3c.blobfile/trunk/setup.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/setup.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -27,7 +27,7 @@
       author_email = "zope3-dev at zope.org",
       license = "ZPL 2.1",
       keywords = "zope3 ZODB blob file image content",
-      url='http://svn.zope.org/z3c.blobfile',
+      url='http://pypi.python.org/pypi/z3c.blobfile',
       description='File and Image Using Blob Support of ZODB -- Zope 3 Content Components',
       long_description=(
           read('README.txt')

Modified: z3c.blobfile/trunk/src/z3c/__init__.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/__init__.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/__init__.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Foundation and Contributors.
+# Copyright (c) 2008 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3c.blobfile/trunk/src/z3c/blobfile/__init__.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/__init__.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/__init__.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -13,7 +13,7 @@
 ##############################################################################
 """File and Image content components
 
-$Id: __init__.py 26745 2004-07-24 04:02:18Z pruggera $
+$Id$
 """
 __docformat__ = 'restructuredtext'
 

Modified: z3c.blobfile/trunk/src/z3c/blobfile/browser/__init__.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/browser/__init__.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/browser/__init__.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -13,7 +13,6 @@
 ##############################################################################
 """File and Image content components
 
-$Id: __init__.py 26745 2004-07-24 04:02:18Z pruggera $
+$Id$
 """
 __docformat__ = 'restructuredtext'
-

Modified: z3c.blobfile/trunk/src/z3c/blobfile/browser/file.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/browser/file.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/browser/file.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -13,7 +13,7 @@
 ##############################################################################
 """File views.
 
-$Id: file.py 81031 2007-10-24 14:08:53Z srichter $
+$Id$
 """
 __docformat__ = 'restructuredtext'
 

Modified: z3c.blobfile/trunk/src/z3c/blobfile/file.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/file.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/file.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,10 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""File content component"""
+"""File content component
+
+$Id$
+"""
 __docformat__ = 'restructuredtext'
 
 from persistent import Persistent

Modified: z3c.blobfile/trunk/src/z3c/blobfile/i18n.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/i18n.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/i18n.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2003 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -13,7 +13,7 @@
 ##############################################################################
 """Customization of zope.i18n for the Zope application server
 
-$Id: i18n.py 73772 2007-03-27 15:09:19Z dobe $
+$Id$
 """
 __docformat__ = 'restructuredtext'
 

Modified: z3c.blobfile/trunk/src/z3c/blobfile/image.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/image.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/image.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,10 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Image content type implementation"""
+"""Image content type implementation
+
+$Id$
+"""
 __docformat__ = 'restructuredtext'
 
 import struct

Modified: z3c.blobfile/trunk/src/z3c/blobfile/interfaces.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/interfaces.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/interfaces.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,

Modified: z3c.blobfile/trunk/src/z3c/blobfile/storages.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/storages.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/storages.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -12,6 +12,8 @@
 #
 ##############################################################################
 """Storables
+
+$Id$
 """
 
 __docformat__ = 'restructuredtext'

Modified: z3c.blobfile/trunk/src/z3c/blobfile/testing.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/testing.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/testing.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2007 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -13,9 +13,8 @@
 ##############################################################################
 """z3c.blobfile common test related classes/functions/objects.
 
-$Id: testing.py 72426 2007-02-07 13:57:45Z baijum $
+$Id$
 """
-
 __docformat__ = "reStructuredText"
 
 import os.path

Modified: z3c.blobfile/trunk/src/z3c/blobfile/tests.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/blobfile/tests.py	2008-09-09 09:20:41 UTC (rev 90987)
+++ z3c.blobfile/trunk/src/z3c/blobfile/tests.py	2008-09-09 09:28:03 UTC (rev 90988)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2008 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,10 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Test Image content component"""
+"""Test Image content component
+
+$Id$
+"""
 import unittest
 import zope.component
 



More information about the Checkins mailing list