source: products/quintagroup.plonegooglesitemaps/branches/sitemap_date/quintagroup/plonegooglesitemaps/browser/sitemapview.py @ 3506

Last change on this file since 3506 was 3506, checked in by potar, 12 years ago

fixed pep8

  • Property svn:eol-style set to native
File size: 646 bytes
RevLine 
[1593]1from DateTime import DateTime
[3163]2from quintagroup.plonegooglesitemaps.browser.commonview \
3    import CommonSitemapView, implements, ISitemapView
[1593]4
[3152]5
[1593]6class SitemapView(CommonSitemapView):
7    """
8    Sitemap browser view
9    """
10    implements(ISitemapView)
11
12    additional_maps = (
[3485]13        ('modification_date',
14         lambda x: x.sitemap_date or DateTime(x.ModificationDate).HTML4()),
[1593]15    )
16
17    def getFilteredObjects(self):
[2742]18        return self.portal_catalog(
[3152]19            path=self.search_path,
20            portal_type=self.context.getPortalTypes(),
[3485]21            review_state=self.context.getStates(),
22            is_default_page=False
[3506]23        )
Note: See TracBrowser for help on using the repository browser.