[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces -
folder.py:1.1.2.1
Philipp von Weitershausen
philikon at philikon.de
Sun Feb 8 09:11:18 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv12371/interfaces
Added Files:
Tag: philikon-movecontent-branch
folder.py
Log Message:
Folder has to stay in zope.app for now because sadly many parts, including
the bootstrap process, depend on it in a hard-wired manner.
=== Added File Zope3/src/zope/app/interfaces/folder.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: folder.py,v 1.1.2.1 2004/02/08 14:11:18 philikon Exp $
"""
from zope.interface import Interface
from zope.app.interfaces.container import IAdding
from zope.app.interfaces.traversing import IContainmentRoot
from zope.app.interfaces.container import IContainer, IContentContainer
from zope.app.interfaces.services.service import IPossibleSite
from zope.app.interfaces.annotation import IAttributeAnnotatable
class IFolder(IContainer, IContentContainer, IPossibleSite,
IAttributeAnnotatable):
"""The standard Zope Folder object interface."""
class IRootFolder(IFolder, IContainmentRoot):
"""The standard Zope root Folder object interface."""
class IFolderAdding(IAdding):
pass
More information about the Zope3-Checkins
mailing list