Commit 13cec8e1 authored by Mayoro Diagne's avatar Mayoro Diagne

changing docstring of methods modified in rc31693

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31961 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b916bdc4
......@@ -95,7 +95,7 @@ class DCWorkflowDocumentationHelper(DocumentationHelper):
security.declareProtected(Permissions.AccessContentsInformation, 'getTitle')
def getTitle(self):
"""
Returns the title of the skin folder
Return the title of the documented object
"""
return getattr(self.getDocumentedObject(), 'title', '')
......
......@@ -48,7 +48,7 @@ class ERP5FormDocumentationHelper(DocumentationHelper):
security.declareProtected(Permissions.AccessContentsInformation, 'getTitle')
def getTitle(self):
"""
Returns the title of the documentation helper
Return the title of the documented object
"""
return getattr(self.getDocumentedObject(), 'title', '')
......
......@@ -48,7 +48,7 @@ class PageTemplateDocumentationHelper(DocumentationHelper):
security.declareProtected(Permissions.AccessContentsInformation, 'getTitle')
def getTitle(self):
"""
Returns the title of the documentation helper
Return the title of the documented object
"""
return getattr(self.getDocumentedObject(), 'title', '')
......
......@@ -48,7 +48,7 @@ class ScriptPythonDocumentationHelper(DocumentationHelper):
security.declareProtected(Permissions.AccessContentsInformation, 'getTitle')
def getTitle(self):
"""
Returns the title of the documentation helper
Return the title of the documented object
"""
return getattr(self.getDocumentedObject(), 'title', '')
......
......@@ -72,7 +72,7 @@ class SkinFolderDocumentationHelper(DocumentationHelper):
security.declareProtected(Permissions.AccessContentsInformation, 'getTitle')
def getTitle(self):
"""
Returns the title of the skin folder
Return the title of the documented object
"""
return getattr(self.getDocumentedObject(), 'title', '')
......
......@@ -48,7 +48,7 @@ class SkinFolderItemDocumentationHelper(DocumentationHelper):
security.declareProtected(Permissions.AccessContentsInformation, 'getTitle')
def getTitle(self):
"""
Returns the title of the documentation helper
Return the title of the documented object
"""
return getattr(self.getDocumentedObject(), 'title', '')
......
......@@ -48,7 +48,7 @@ class ZSQLMethodDocumentationHelper(DocumentationHelper):
security.declareProtected(Permissions.AccessContentsInformation, 'getTitle')
def getTitle(self):
"""
Returns the title of the documentation helper
Return the title of the documented object
"""
return getattr(self.getDocumentedObject(), 'title', '')
......
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