src/pyams_utils/interfaces/tales.py
branchdev-tf
changeset 427 63284c98cdc1
parent 1 3f89629b9e54
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 """PyAMS_utils.interfaces.tales module
       
    14 
       
    15 TALES extensions are custom adapters which can be used to extend Chameleon and Zope templates.
       
    16 """
       
    17 
       
    18 from zope.interface import Interface
       
    19 
       
    20 
    13 __docformat__ = 'restructuredtext'
    21 __docformat__ = 'restructuredtext'
    14 
       
    15 # import standard library
       
    16 
       
    17 # import interfaces
       
    18 
       
    19 # import packages
       
    20 from zope.interface import Interface
       
    21 
    22 
    22 
    23 
    23 class ITALESExtension(Interface):
    24 class ITALESExtension(Interface):
    24     """Custom TALES extension
    25     """Custom TALES extension
    25 
    26