Changes between Initial Version and Version 3 of Ticket #6328
- Timestamp:
- Dec 9, 2013, 1:27:57 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6328 – Description
initial v3 1 1 The debug log shows the following information: 2 2 {{{#!pycon 3 3 2009-12-14 12:05:27,823 Trac[loader] DEBUG: Loading MultipleWorkflowPlugin from d:\daten\trac\projekte\ish\plugins\multipleworkflowplugin-1.0-py2.5.egg 4 4 2009-12-14 12:05:27,823 Trac[loader] ERROR: Skipping "MultipleWorkflowPlugin = MultipleWorkflowPlugin": (can't import "ImportError: No module named MultipleWorkflowPlugin") 5 5 }}} 6 6 7 7 I installed the plugin using the admin page=>plugins=>install plugin. When I install it again, I get the message "already installed": 8 8 I activated the plugin in the trac.ini as shown in the example... 9 9 10 "Enable the plugin with: 10 Enable the plugin with: 11 {{{#!ini 11 12 [components] 12 13 multipleworkflowplugin.* = enabled 13 14 multipleworkflowplugin.multipleworkflowplugin.multipleworkflowplugin = enabled 15 }}} 14 16 15 17 Add the controller to the workflow controller list: 18 {{{#!ini 16 19 [ticket] 17 20 workflow=MultipleWorkflowPlugin 21 }}} 18 22 19 For using it you should have in the trac.ini file the [ticket-workflow] session because when a section for a ticket type doesn't exist trac uses the [ticket-workflow] for the actions to do. If you want to define different workflows than you should create in trac.ini sections called [ticket-workflow-ticket_type] where ticket_type is the type of ticket you want to use this section,you can create all the sections you want and trac will use them when that kind of ticket is being used,you can create ticket type in the admin pannel under ticket types. 20 " 23 For using it you should have in the trac.ini file the `[ticket-workflow]` session because when a section for a ticket type doesn't exist trac uses the `[ticket-workflow]` for the actions to do. If you want to define different workflows than you should create in trac.ini sections called `[ticket-workflow-ticket_type]` where ticket_type is the type of ticket you want to use this section,you can create all the sections you want and trac will use them when that kind of ticket is being used,you can create ticket type in the admin panel under ticket types. 21 24 22 25