Monkey patch plone.app.vocabularies.types.BAD_TYPES

svn path=/plone.app.discussion/trunk/; revision=27245
This commit is contained in:
Timo Stollenwerk 2009-05-31 17:49:33 +00:00
parent 0d6045682f
commit ee5aa9ae4d
1 changed files with 10 additions and 0 deletions

View File

@ -1 +1,11 @@
# Monkey patch plone.app.vocabularies.types.BAD_TYPES and remove
# 'Discussion Item' from this tuple, so that Comments can be found
# in the search. This will become needless once plone.app.discussion
# will become a part of Plone 4.
import plone.app.vocabularies.types
new_bad_types = list(plone.app.vocabularies.types.BAD_TYPES)
if 'Discussion Item' in new_bad_types:
new_bad_types.remove('Discussion Item')
plone.app.vocabularies.types.BAD_TYPES = new_bad_types