Skip to content

Commit

Permalink
Backport rev 26392.
Browse files Browse the repository at this point in the history
  • Loading branch information
strichter committed Aug 11, 2004
1 parent 25ce29f commit d10b449
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions interfaces.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
##############################################################################
#
# Copyright (c) 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (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.
#
##############################################################################
"""Folder interfaces
$Id$
"""
from zope.app.container.interfaces import IAdding
from zope.app.container.interfaces import IContainer, IContentContainer
from zope.app.traversing.interfaces import IContainmentRoot
from zope.app.site.interfaces import IPossibleSite
from zope.app.annotation.interfaces 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."""

0 comments on commit d10b449

Please sign in to comment.