src/pyams_content/shared/common/interfaces/zmi.py
changeset 0 7c0001cacf8e
child 38 04c33c05f0be
equal deleted inserted replaced
-1:000000000000 0:7c0001cacf8e
       
     1 #
       
     2 # Copyright (c) 2008-2015 Thierry Florac <tflorac AT ulthar.net>
       
     3 # All Rights Reserved.
       
     4 #
       
     5 # This software is subject to the provisions of the Zope Public License,
       
     6 # Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
       
     7 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
       
     8 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
       
     9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
       
    10 # FOR A PARTICULAR PURPOSE.
       
    11 #
       
    12 
       
    13 __docformat__ = 'restructuredtext'
       
    14 
       
    15 
       
    16 # import standard library
       
    17 
       
    18 # import interfaces
       
    19 from pyams_skin.interfaces.container import ITable
       
    20 from pyams_skin.layer import IPyAMSLayer
       
    21 
       
    22 # import packages
       
    23 from pyams_template.template import layout_config
       
    24 from zope.interface import Interface
       
    25 
       
    26 
       
    27 class ISharedToolDashboardTable(ITable):
       
    28     """Shared tool dashboard table marker interface"""
       
    29 
       
    30 
       
    31 class ISiteRootDashboardTable(ISharedToolDashboardTable):
       
    32     """Site root dashboard table marker interface"""
       
    33 
       
    34 
       
    35 @layout_config(template='templates/summary-layout.pt', layer=IPyAMSLayer)
       
    36 class IInnerSummaryView(Interface):
       
    37     """Inner summary view marker interface"""