rename global to simple, to match a lost change

This commit is contained in:
Frédéric Péters 2013-04-14 16:39:43 +02:00
parent 651166ddb6
commit 5fc8bdcf68
1 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ class IMainThesaurus(Interface):
""" Marker interface for main thesaurus container
"""
class GlobalThesaurusSource(object):
class SimpleThesaurusSource(object):
"""This basic vocabulary is here mainly for demo purpose.
It is not meant to be used when a Plone site contains more than one
thesaurus.
@ -42,8 +42,8 @@ class GlobalThesaurusSource(object):
yield u'DO NOT TOUCH'
grok.global_utility(GlobalThesaurusSource,
name=u'dms.thesaurus.global')
grok.global_utility(SimpleThesaurusSource,
name=u'dms.thesaurus.simple')
class KeywordFromSameThesaurusSource(object):