[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/ApplicationControl - ApplicationControl.py:1.1.2.1 IApplicationControl.py:1.1.2.1

Philipp von Weitershausen philikon@gmx.net
Tue, 9 Apr 2002 05:11:13 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/ApplicationControl
In directory cvs.zope.org:/tmp/cvs-serv7237

Added Files:
      Tag: Zope-3x-branch
	ApplicationControl.py IApplicationControl.py 
Log Message:
Introduced files for Application Control, formerly known as Control_Panel


=== Added File Zope3/lib/python/Zope/App/OFS/ApplicationControl/ApplicationControl.py ===
##############################################################################
#
# Copyright (c) 2001, 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.
# 
##############################################################################
__doc__ = """ Application Control
$Id: ApplicationControl.py,v 1.1.2.1 2002/04/09 09:11:12 philikon Exp $"""

from IApplicationControl import IApplicationControl

class ApplicationControl:
    """ """

    __implements__ = IApplicationControl


=== Added File Zope3/lib/python/Zope/App/OFS/ApplicationControl/IApplicationControl.py ===
##############################################################################
#
# Copyright (c) 2001, 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.
# 
##############################################################################
__doc__ = """ Application Control
$Id: IApplicationControl.py,v 1.1.2.1 2002/04/09 09:11:12 philikon Exp $"""

from Interface import Interface

class IApplicationControl(Interface):
    """ """