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

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

#134: Inherits ISEOCanonicalPath from ICcanonialPath, update canonical path adapter registration

  • Property svn:eol-style set to native
File size: 770 bytes
Line 
1from zope.interface import Interface
2from quintagroup.canonicalpath.interfaces import ICanonicalPath
3
4class IMetaKeywords(Interface):
5    """Handle the available keywords.
6    """
7    def getMetaKeywords():
8        """Returns all the existing keywords for the current content type.
9        """
10
11class IMappingMetaTags(Interface):
12    """
13    """
14    def getMappingMetaTags():
15        """Returns mapping {meta_name:accssesor} all the meta tags.
16        """
17
18class ISEOCanonicalPath(ICanonicalPath):
19    """ Descendent of ICanonicalPath interface.
20    Designed for three goals:
21    1) calculation CANONICAL url metatag SPECIAL for Google SEO;
22    2) as more specific canonical path interface;
23    3) implementation this interface also work for ICanonicalPath too.
24    """
Note: See TracBrowser for help on using the repository browser.