src/pyams_skin/interfaces/metas.py
changeset 557 bca7a7e058a3
equal deleted inserted replaced
-1:000000000000 557:bca7a7e058a3
       
     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 # import standard library
       
    16 
       
    17 # import interfaces
       
    18 
       
    19 # import packages
       
    20 from zope.interface import Interface
       
    21 
       
    22 
       
    23 class IMetaHeader(Interface):
       
    24     """Meta HTML header"""
       
    25 
       
    26     def render(self):
       
    27         """Render META header"""
       
    28 
       
    29 
       
    30 class IHTMLContentMetas(Interface):
       
    31     """Get list of metas headers associated with given context"""
       
    32 
       
    33     def get_metas(self):
       
    34         """Get content metas"""