# HG changeset patch # User Thierry Florac # Date 1531388864 -7200 # Node ID c598d2f814e391ebc303322d2cedc582a208efc0 # Parent 133d016229035ebf64ba93b2be77c2ed0fadb903 Added generic interfaces diff -r 133d01622903 -r c598d2f814e3 src/pyams_default_theme/interfaces/__init__.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/pyams_default_theme/interfaces/__init__.py Thu Jul 12 11:47:44 2018 +0200 @@ -0,0 +1,37 @@ +# +# Copyright (c) 2008-2018 Thierry Florac +# 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. +# + +__docformat__ = 'restructuredtext' + + +# import standard library + +# import interfaces + +# import packages +from zope.interface import Interface + + +class IContentNavigationTitle(Interface): + """Content navigation title""" + + +class IContentTag(Interface): + """Content tag interface""" + + +class IContentDate(Interface): + """Content date interface""" + + +class IContentNavigationIllustration(Interface): + """Content navigation illustration"""