src/pyams_utils/interfaces/url.py
branchdev-tf
changeset 427 63284c98cdc1
parent 292 b338586588ad
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.url module
       
    14 
       
    15 These interfaces are used to define different types of URLs which can be used in a web site.
       
    16 These includes absolute URLs, canonical URLs and related URLs.
       
    17 
       
    18 See :py:mod:`PyAMS URL module <pyams_utils.url>` for a longer description.
       
    19 """
    14 
    20 
    15 from zope.interface import Interface
    21 from zope.interface import Interface
       
    22 
       
    23 
       
    24 __docformat__ = 'restructuredtext'
    16 
    25 
    17 
    26 
    18 class ICanonicalURL(Interface):
    27 class ICanonicalURL(Interface):
    19     """Interface used to get content's canonical URL"""
    28     """Interface used to get content's canonical URL"""
    20 
    29