Changeset 213
- Timestamp:
- 05/21/09 19:00:03 (4 years ago)
- Location:
- enpraxis.educommons/trunk/enpraxis/educommons
- Files:
-
- 9 added
- 1 edited
-
__init__.py (modified) (3 diffs)
-
loadtesttool.py (added)
-
profiles/default/toolset.xml (added)
-
tool.gif (added)
-
www (added)
-
www/loadcontent.dtml (added)
-
www/overview.dtml (added)
-
www/results.dtml (added)
-
www/runtest.dtml (added)
-
www/testresults.dtml (added)
Legend:
- Unmodified
- Added
- Removed
-
enpraxis.educommons/trunk/enpraxis/educommons/__init__.py
r8 r213 1 from Products.CMFCore.utils import ContentInit 1 from Products.CMFCore.utils import ContentInit, ToolInit 2 2 from config import PROJECTNAME, GLOBALS 3 3 from Products.CMFCore.permissions import AddPortalContent … … 7 7 from collective.captcha.browser.captcha import Captcha 8 8 from zope.i18nmessageid import MessageFactory 9 from enpraxis.educommons.loadtesttool import LoadTestTool 9 10 10 11 allow_module('collective.captcha.browser.captcha') 11 allow_class(Captcha) 12 allow_class(Captcha) 13 14 tools = ( LoadTestTool, ) 12 15 13 16 def initialize(context): … … 24 27 ).initialize(context) 25 28 29 ToolInit('eduCommons Tool', 30 tools = tools, 31 icon='tool.gif', 32 ).initialize(context) 33 26 34 eduCommonsMessageFactory = MessageFactory('eduCommons') 27 35
Note: See TracChangeset
for help on using the changeset viewer.
