[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/ServiceManager - IServiceAdding.py:1.1

Gary Poster garyposter@earthlink.net
Sat, 22 Jun 2002 13:16:14 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/ServiceManager
In directory cvs.zope.org:/tmp/cvs-serv1899/lib/python/Zope/App/OFS/Services/ServiceManager

Added Files:
	IServiceAdding.py 
Log Message:
Small changes.

Mucking about with the new creation system, in preparation of deleting the old Addable class, registry, service, et al.  ServiceManager now uses new creation system.  Disabled Container adder in favor of Folder adder (see Container/Views/Browser/configure.zcml for short discussion).

There are a number of issues, from small to large (in my book) that are still to be worked out with the new creation system.  I'm not addressing them, just cleaning up.

Hooked the deletion button in the root folder back up via some zcml (adding a browser page for the deletion ability, which may or may not be kosher).

fixed one zcml zmi_menu error; saw others.


=== Added File Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/IServiceAdding.py ===
##############################################################################
#
# 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.
# 
##############################################################################
"""

$Id: IServiceAdding.py,v 1.1 2002/06/22 17:16:13 poster Exp $
"""

from Zope.App.OFS.Container.IAdding import IAdding

class IServiceAdding(IAdding):
    pass