source: products/quintagroup.seoptimizer/trunk/quintagroup/seoptimizer/interfaces.py @ 1675

Last change on this file since 1675 was 1675, checked in by mylan, 14 years ago

Register own canonical path adapter for the product. Register separate adapter for canonicalpath

  • Property svn:eol-style set to native
File size: 565 bytes
RevLine 
[387]1from zope.interface import Interface
2
[1624]3class IMetaKeywords(Interface):
[387]4    """Handle the available keywords.
5    """
[1624]6    def getMetaKeywords():
[387]7        """Returns all the existing keywords for the current content type.
8        """
[1313]9
10class IMappingMetaTags(Interface):
11    """
12    """
13    def getMappingMetaTags():
14        """Returns mapping {meta_name:accssesor} all the meta tags.
15        """
[1671]16
[1675]17class ISEOCanonicalPath(Interface):
18    """canonical_path provider interface
19    """
20
21    def canonical_path():
22        """Return canonical path for the object
[1671]23        """
Note: See TracBrowser for help on using the repository browser.