Ignore:
Timestamp:
9 Mar 2012, 22:22:23 (13 years ago)
Author:
Henrik Bettermann
Message:

Register KofaUtils? in configure.zcml. Is that really necessary?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/utils/utils.py

    r7819 r7829  
    2222import string
    2323from zope.i18n import translate
     24from zope.interface import implements
    2425from random import SystemRandom as r
    2526from waeup.kofa.interfaces import IKofaUtils
     
    3738    return True
    3839
    39 class KofaUtils(grok.GlobalUtility):
     40class KofaUtils:
    4041    """A collection of parameters and methods subject to customization.
     42
    4143    """
    42     grok.implements(IKofaUtils)
     44    implements(IKofaUtils)
    4345    # This the only place where we define the portal language
    4446    # which is used for the translation of system messages
Note: See TracChangeset for help on using the changeset viewer.