Commit 3ba5ee7e authored by Yoshinori Okuji's avatar Yoshinori Okuji

Deprecate wrong method names, and make appropriate ones.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@16585 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5791be64
...@@ -45,6 +45,7 @@ from OFS.Traversable import NotFound ...@@ -45,6 +45,7 @@ from OFS.Traversable import NotFound
from difflib import unified_diff from difflib import unified_diff
from cStringIO import StringIO from cStringIO import StringIO
from zLOG import LOG from zLOG import LOG
from warning import warn
from urllib import pathname2url, urlopen, splittype, urlretrieve from urllib import pathname2url, urlopen, splittype, urlretrieve
import re import re
from xml.dom.minidom import parse from xml.dom.minidom import parse
...@@ -127,9 +128,14 @@ class TemplateTool (BaseTool): ...@@ -127,9 +128,14 @@ class TemplateTool (BaseTool):
return bt return bt
return None return None
# Christophe Dumez <christophe@nexedi.com>
def getInstalledBusinessTemplatesList(self): def getInstalledBusinessTemplatesList(self):
"""Get list of installed business templates """Deprecated.
"""
DeprecationWarning('getInstalledBusinessTemplatesList is deprecated; Use getInstalledBusinessTemplateList instead.', DeprecationWarning)
return self.getInstalledBusinessTemplateList()
def getInstalledBusinessTemplateList(self):
"""Get the list of installed business templates.
""" """
installed_bts = [] installed_bts = []
for bt in self.contentValues(filter={'portal_type':'Business Template'}): for bt in self.contentValues(filter={'portal_type':'Business Template'}):
...@@ -137,9 +143,14 @@ class TemplateTool (BaseTool): ...@@ -137,9 +143,14 @@ class TemplateTool (BaseTool):
installed_bts.append(bt) installed_bts.append(bt)
return installed_bts return installed_bts
# Christophe Dumez <christophe@nexedi.com>
def getBuiltBusinessTemplatesList(self): def getBuiltBusinessTemplatesList(self):
"""Get list of built and not_installed business templates """Deprecated.
"""
DeprecationWarning('getBuiltBusinessTemplatesList is deprecated; Use getBuiltBusinessTemplateList instead.', DeprecationWarning)
return self.getBuiltBusinessTemplateList()
def getBuiltBusinessTemplateList(self):
"""Get the list of built and not installed business templates.
""" """
built_bts = [] built_bts = []
for bt in self.contentValues(filter={'portal_type':'Business Template'}): for bt in self.contentValues(filter={'portal_type':'Business Template'}):
......
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