src/pyams_utils/interfaces/text.py
branchdev-tf
changeset 427 63284c98cdc1
parent 321 247c4f2948ef
equal deleted inserted replaced
426:2022e4da3ad9 427:63284c98cdc1
     8 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     8 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
     9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
    10 # FOR A PARTICULAR PURPOSE.
    10 # FOR A PARTICULAR PURPOSE.
    11 #
    11 #
    12 
    12 
    13 __docformat__ = 'restructuredtext'
    13 """PyAMS_utils.interfaces.text module
       
    14 
       
    15 This module provides a single interface used by HTML rendering adapters, which are used to convert
       
    16 any object to an HTML representation.
       
    17 """
       
    18 
       
    19 from zope.interface import Attribute, Interface
    14 
    20 
    15 
    21 
    16 # import standard library
    22 __docformat__ = 'restructuredtext'
    17 
       
    18 # import interfaces
       
    19 
       
    20 # import packages
       
    21 from zope.interface import Attribute, Interface
       
    22 
    23 
    23 from pyams_utils import _
    24 from pyams_utils import _
    24 
    25 
    25 
    26 
    26 class IHTMLRenderer(Interface):
    27 class IHTMLRenderer(Interface):