[Checkins] SVN: zope.ucol/trunk/ Conform to repository policy

Gediminas Paulauskas menesis at pov.lt
Thu Dec 23 11:52:59 EST 2010


Log message for revision 119075:
  Conform to repository policy
  

Changed:
  A   zope.ucol/trunk/COPYRIGHT.txt
  U   zope.ucol/trunk/bootstrap.py
  U   zope.ucol/trunk/setup.py
  U   zope.ucol/trunk/src/zope/ucol/__init__.py
  U   zope.ucol/trunk/src/zope/ucol/localeadapter.py
  U   zope.ucol/trunk/src/zope/ucol/tests.py
  U   zope.ucol/trunk/test.py

-=-
Added: zope.ucol/trunk/COPYRIGHT.txt
===================================================================
--- zope.ucol/trunk/COPYRIGHT.txt	                        (rev 0)
+++ zope.ucol/trunk/COPYRIGHT.txt	2010-12-23 16:52:59 UTC (rev 119075)
@@ -0,0 +1 @@
+Zope Foundation and Contributors
\ No newline at end of file


Property changes on: zope.ucol/trunk/COPYRIGHT.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Modified: zope.ucol/trunk/bootstrap.py
===================================================================
--- zope.ucol/trunk/bootstrap.py	2010-12-23 16:34:58 UTC (rev 119074)
+++ zope.ucol/trunk/bootstrap.py	2010-12-23 16:52:59 UTC (rev 119075)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2006 Zope Corporation and Contributors.
+# Copyright (c) 2006 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -16,8 +16,6 @@
 Simply run this script in a directory containing a buildout.cfg.
 The script accepts buildout command-line options, so you can
 use the -c option to specify an alternate configuration file.
-
-$Id: bootstrap.py 72703 2007-02-20 11:49:26Z jim $
 """
 
 import os, shutil, sys, tempfile, urllib2

Modified: zope.ucol/trunk/setup.py
===================================================================
--- zope.ucol/trunk/setup.py	2010-12-23 16:34:58 UTC (rev 119074)
+++ zope.ucol/trunk/setup.py	2010-12-23 16:52:59 UTC (rev 119075)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,11 +11,8 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Setup for zope.ucol package
+"""Setup for zope.ucol package"""
 
-$Id$
-"""
-
 import os, sys
 
 from distutils.core import setup, Extension

Modified: zope.ucol/trunk/src/zope/ucol/__init__.py
===================================================================
--- zope.ucol/trunk/src/zope/ucol/__init__.py	2010-12-23 16:34:58 UTC (rev 119074)
+++ zope.ucol/trunk/src/zope/ucol/__init__.py	2010-12-23 16:52:59 UTC (rev 119075)
@@ -1,10 +1,10 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# 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
@@ -14,8 +14,6 @@
 """Locale-based text collation using ICU
 
 See README.txt in the package.
-
-$Id$
 """
 
 from _zope_ucol import Collator

Modified: zope.ucol/trunk/src/zope/ucol/localeadapter.py
===================================================================
--- zope.ucol/trunk/src/zope/ucol/localeadapter.py	2010-12-23 16:34:58 UTC (rev 119074)
+++ zope.ucol/trunk/src/zope/ucol/localeadapter.py	2010-12-23 16:52:59 UTC (rev 119075)
@@ -1,10 +1,10 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# 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
@@ -31,8 +31,6 @@
 
 Note that we're not declaring any interfaces so as to avoid creating
 a dependency on zope.i18n.locales.
-
-$Id$
 """
 from zope.ucol import Collator
 

Modified: zope.ucol/trunk/src/zope/ucol/tests.py
===================================================================
--- zope.ucol/trunk/src/zope/ucol/tests.py	2010-12-23 16:34:58 UTC (rev 119074)
+++ zope.ucol/trunk/src/zope/ucol/tests.py	2010-12-23 16:52:59 UTC (rev 119075)
@@ -1,20 +1,17 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# 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.
 #
 ##############################################################################
-"""XXX short summary goes here.
-
-$Id$
-"""
+"""Tests for zope.ucol"""
 import unittest
 from zope.testing import doctest
 

Modified: zope.ucol/trunk/test.py
===================================================================
--- zope.ucol/trunk/test.py	2010-12-23 16:34:58 UTC (rev 119074)
+++ zope.ucol/trunk/test.py	2010-12-23 16:52:59 UTC (rev 119075)
@@ -1,7 +1,7 @@
 #!/home/jim/p/z4i/jim-icu/var/opt/python/bin/python -u
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004 Zope Foundation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -12,10 +12,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Run tests in a Zope instance home.
-
-$Id$
-"""
+"""Run tests in a Zope instance home."""
 import sys
 sys.path.insert(0, 'src')
 from zope.testing import testrunner



More information about the checkins mailing list