[CMF-checkins] CVS: CMF/CMFDefault - SyndicationTool.py:1.15.2.1 URLTool.py:1.13.4.1 __init__.py:1.17.4.1

Yvo Schubbe schubbe@web.de
Sun, 12 Jan 2003 08:12:56 -0500


Update of /cvs-repository/CMF/CMFDefault
In directory cvs.zope.org:/tmp/cvs-serv3944/CMFDefault

Modified Files:
      Tag: yuppie-buglets1-branch
	SyndicationTool.py URLTool.py __init__.py 
Log Message:
use string methods:
- replaced string functions
- removed useless imports
- updated copyright statement

=== CMF/CMFDefault/SyndicationTool.py 1.15 => 1.15.2.1 ===
--- CMF/CMFDefault/SyndicationTool.py:1.15	Mon Jan  6 15:42:06 2003
+++ CMF/CMFDefault/SyndicationTool.py	Sun Jan 12 08:12:54 2003
@@ -1,23 +1,22 @@
 ##############################################################################
 #
-# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-# 
+# Copyright (c) 2001-2003 Zope Corporation 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.
 # 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
-# 
+#
 ##############################################################################
-
 """ CMFDefault portal_syndication tool.
 
 Manage outbound RSS syndication of folder content.
 """
 
 import os
-import string
 
 from Globals import HTMLFile, package_home, InitializeClass 
 from AccessControl import ClassSecurityInfo, SecurityManagement


=== CMF/CMFDefault/URLTool.py 1.13 => 1.13.4.1 ===
--- CMF/CMFDefault/URLTool.py:1.13	Wed Dec 11 17:21:39 2002
+++ CMF/CMFDefault/URLTool.py	Sun Jan 12 08:12:54 2003
@@ -1,14 +1,15 @@
 ##############################################################################
 #
-# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-# 
+# Copyright (c) 2002 Zope Corporation 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.
 # 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
-# 
+#
 ##############################################################################
 """ CMFDefault portal_url tool.
 


=== CMF/CMFDefault/__init__.py 1.17 => 1.17.4.1 ===
--- CMF/CMFDefault/__init__.py:1.17	Wed Dec 11 17:21:39 2002
+++ CMF/CMFDefault/__init__.py	Sun Jan 12 08:12:54 2003
@@ -1,23 +1,24 @@
 ##############################################################################
 #
-# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-# 
+# Copyright (c) 2001-2003 Zope Corporation 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.
 # 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
-# 
+#
 ##############################################################################
 """ Default implementation of CMFCore.
 
 $Id$
 """
+
 from Products import CMFCore
 
 from Products.CMFCore.CMFCorePermissions import AddPortalContent
-import Products.CMFCore
 
 from Products.CMFCore.DirectoryView import registerDirectory
 from Products.CMFCore.utils import initializeBasesPhase1