[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/services - bundle.py:1.1

Fred L. Drake, Jr. fred at zope.com
Fri Aug 8 18:56:26 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/interfaces/services
In directory cvs.zope.org:/tmp/cvs-serv17434/app/interfaces/services

Added Files:
	bundle.py 
Log Message:
make bundles distinct from site management folders

=== Added File Zope3/src/zope/app/interfaces/services/bundle.py ===
##############################################################################
#
# Copyright (c) 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.
#
##############################################################################
"""Interfaces for bundles.

$Id: bundle.py,v 1.1 2003/08/08 21:56:21 fdrake Exp $
"""

from zope.app.interfaces.container import IContainer
from zope.app.interfaces.services.registration \
     import IRegistrationManagerContainer

class IBundle(IContainer, IRegistrationManagerContainer):
    """Component and component registration containers."""




More information about the Zope3-Checkins mailing list