Commit e22a27d0 authored by Jérome Perrin's avatar Jérome Perrin

fix some copy/pasted docstrings


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24025 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ee63edcf
...@@ -659,7 +659,7 @@ class ERP5Site(FolderMixIn, CMFSite): ...@@ -659,7 +659,7 @@ class ERP5Site(FolderMixIn, CMFSite):
'getPortalProjectTypeList') 'getPortalProjectTypeList')
def getPortalProjectTypeList(self): def getPortalProjectTypeList(self):
""" """
Return document types. Return project types.
""" """
return self._getPortalGroupedTypeList('project') return self._getPortalGroupedTypeList('project')
...@@ -683,7 +683,7 @@ class ERP5Site(FolderMixIn, CMFSite): ...@@ -683,7 +683,7 @@ class ERP5Site(FolderMixIn, CMFSite):
'getPortalFileDocumentTypeList') 'getPortalFileDocumentTypeList')
def getPortalFileDocumentTypeList(self): def getPortalFileDocumentTypeList(self):
""" """
Return web page types. Return file document types.
""" """
return self._getPortalGroupedTypeList('file_document') return self._getPortalGroupedTypeList('file_document')
...@@ -691,7 +691,7 @@ class ERP5Site(FolderMixIn, CMFSite): ...@@ -691,7 +691,7 @@ class ERP5Site(FolderMixIn, CMFSite):
'getPortalRecentDocumentTypeList') 'getPortalRecentDocumentTypeList')
def getPortalRecentDocumentTypeList(self): def getPortalRecentDocumentTypeList(self):
""" """
Return web page types. Return recent document types.
""" """
return self._getPortalGroupedTypeList('recent_document') return self._getPortalGroupedTypeList('recent_document')
...@@ -699,7 +699,7 @@ class ERP5Site(FolderMixIn, CMFSite): ...@@ -699,7 +699,7 @@ class ERP5Site(FolderMixIn, CMFSite):
'getPortalTemplateDocumentTypeList') 'getPortalTemplateDocumentTypeList')
def getPortalTemplateDocumentTypeList(self): def getPortalTemplateDocumentTypeList(self):
""" """
Return web page types. Return template document types.
""" """
return self._getPortalGroupedTypeList('template_document') return self._getPortalGroupedTypeList('template_document')
...@@ -707,7 +707,7 @@ class ERP5Site(FolderMixIn, CMFSite): ...@@ -707,7 +707,7 @@ class ERP5Site(FolderMixIn, CMFSite):
'getPortalMyDocumentTypeList') 'getPortalMyDocumentTypeList')
def getPortalMyDocumentTypeList(self): def getPortalMyDocumentTypeList(self):
""" """
Return web page types. Return my document types.
""" """
return self._getPortalGroupedTypeList('my_document') return self._getPortalGroupedTypeList('my_document')
...@@ -715,7 +715,7 @@ class ERP5Site(FolderMixIn, CMFSite): ...@@ -715,7 +715,7 @@ class ERP5Site(FolderMixIn, CMFSite):
'getPortalCrawlerIndexTypeList') 'getPortalCrawlerIndexTypeList')
def getPortalCrawlerIndexTypeList(self): def getPortalCrawlerIndexTypeList(self):
""" """
Return web page types. Return crawler index types.
""" """
return self._getPortalGroupedTypeList('crawler_index') return self._getPortalGroupedTypeList('crawler_index')
...@@ -723,7 +723,7 @@ class ERP5Site(FolderMixIn, CMFSite): ...@@ -723,7 +723,7 @@ class ERP5Site(FolderMixIn, CMFSite):
'getPortalSupplyPathTypeList') 'getPortalSupplyPathTypeList')
def getPortalSupplyPathTypeList(self): def getPortalSupplyPathTypeList(self):
""" """
Return supply movement types. Return supply path types.
""" """
return self._getPortalGroupedTypeList('supply_path') or \ return self._getPortalGroupedTypeList('supply_path') or \
self._getPortalConfiguration('portal_supply_path_type_list') self._getPortalConfiguration('portal_supply_path_type_list')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment