[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/browser/skins - __init__.py:1.1.2.1 menu.py:1.1.2.1
Jim Fulton
jim@zope.com
Mon, 23 Dec 2002 14:31:46 -0500
Update of /cvs-repository/Zope3/src/zope/app/interfaces/browser/skins
In directory cvs.zope.org:/tmp/cvs-serv19908/zope/app/interfaces/browser/skins
Added Files:
Tag: NameGeddon-branch
__init__.py menu.py
Log Message:
Initial renaming before debugging
=== Added File Zope3/src/zope/app/interfaces/browser/skins/__init__.py ===
#
# This file is necessary to make this directory a package.
=== Added File Zope3/src/zope/app/interfaces/browser/skins/menu.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: menu.py,v 1.1.2.1 2002/12/23 19:31:44 jim Exp $
"""
from zope.interface import Interface
class IMenuAccessView(Interface):
"""View that provides access to menus
"""
def __getitem__(menu_id):
"""Get menu information
Return a sequence of dictionaries with labels and
actions, where actions are relative URLs.
"""
__doc__ = IMenuAccessView.__doc__ + __doc__