Changeset 7831 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 9 Mar 2012, 22:56:51 (13 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/configure.zcml
r7830 r7831 8 8 <grok:grok package="." /> 9 9 <i18n:registerTranslations directory="locales" /> 10 <utility11 component="waeup.kofa.utils.utils.KofaUtils"12 provides="waeup.kofa.interfaces.IKofaUtils"13 />14 10 <includeOverrides package="waeup.kofa.utils" file="overrides.zcml" /> 15 11 </configure> -
main/waeup.kofa/trunk/src/waeup/kofa/utils/utils.py
r7829 r7831 38 38 return True 39 39 40 class KofaUtils :40 class KofaUtils(grok.GlobalUtility): 41 41 """A collection of parameters and methods subject to customization. 42 42 43 43 """ 44 implements(IKofaUtils)44 grok.implements(IKofaUtils) 45 45 # This the only place where we define the portal language 46 46 # which is used for the translation of system messages
Note: See TracChangeset for help on using the changeset viewer.