Added generic interfaces
authorThierry Florac <thierry.florac@onf.fr>
Thu, 12 Jul 2018 11:47:44 +0200
changeset 87 c598d2f814e3
parent 86 133d01622903
child 88 f3beaff7c4fe
Added generic interfaces
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 <tflorac AT ulthar.net>
+# 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"""