[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Service - ServiceManagerAdder.py:1.1.2.2.2.1 ServiceManagerContents.py:1.1.2.2.2.1
Stephan Richter
srichter@cbu.edu
Fri, 1 Mar 2002 02:05:41 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/Service
In directory cvs.zope.org:/tmp/cvs-serv22957
Modified Files:
Tag: srichter-OFS_Formulator-branch
ServiceManagerAdder.py ServiceManagerContents.py
Log Message:
- Updated the references to FolderContents and FolderAdder.
=== Zope3/lib/python/Zope/App/Service/ServiceManagerAdder.py 1.1.2.2 => 1.1.2.2.2.1 ===
"""
-from Zope.App.OFS.Folder.FolderAdder import FolderAdder
+from Zope.App.OFS.Folder.Views.Browser.FolderAdder import FolderAdder
class ServiceManagerAdder( FolderAdder ): # Icky! SM derives from Folder, too!
"""
=== Zope3/lib/python/Zope/App/Service/ServiceManagerContents.py 1.1.2.2 => 1.1.2.2.2.1 ===
#
-# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-#
+# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
# This software is subject to the provisions of the Zope Public License,
-# Version 1.1 (ZPL). A copy of the ZPL should accompany this distribution.
+# 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.
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
##############################################################################
""" Define view component for service manager contents.
$Id$
"""
-from Zope.App.OFS.Folder.FolderContents import FolderContents
+from Zope.App.OFS.Folder.Views.Browser.FolderContents import FolderContents
from Interface.Util import flattenInterfaces, objectImplements
class ServiceManagerContents( FolderContents ):