Changes between Version 7 and Version 8 of TestManagerForTracPluginWorkflow


Ignore:
Timestamp:
Oct 9, 2010, 2:59:27 PM (14 years ago)
Author:
Roberto Longobardi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TestManagerForTracPluginWorkflow

    v7 v8  
    8484 
    8585[[BR]]
    86 Defining your desired workflow in the trac.ini file '''is all that is required''' to mandate a workflow to the artifacts provided with the TestManager plugin.
     86Defining your desired workflow in the trac.ini file '''is all that is required''' to mandate a workflow to the artifacts provided with the [wiki:TestManagerForTracPlugin TestManager] plugin.
    8787
    8888[[BR]]
     
    126126To be able to provide custom workflow operations, your Trac Component must implement the IWorkflowOperationProvider interface.
    127127
    128 Let's take a look at a sample operation provider, which is included in the TestManager plugin.
     128Let's take a look at a sample operation provider, which is included in the [wiki:TestManagerForTracPlugin TestManager] plugin.
    129129
    130130{{{
     
    202202This is it. You have added a workflow and your custom operations to the Test Case artifact.
    203203
    204 Of course, you can do the same with the three other artifacts in the TestManager plugin, namely Test Catalogs, Test Plans and Test Cases in Plan (i.e. with a status).
     204Of course, you can do the same with the three other artifacts in the [wiki:TestManagerForTracPlugin TestManager] plugin, namely Test Catalogs, Test Plans and Test Cases in Plan (i.e. with a status).
    205205
    206206[[BR]][[BR]]
     
    218218 1. '''Display the workflow markup into your web pages'''. This is what this section is about.
    219219
    220 There are several ways how you can provide markup to web pages in Trac. Here, I'll explain the way I do it in the TestManager plugin, which is by means of the ITemplateStreamFilter.
     220There are several ways how you can provide markup to web pages in Trac. Here, I'll explain the way I do it in the [wiki:TestManagerForTracPlugin TestManager] plugin, which is by means of the ITemplateStreamFilter.
    221221
    222222To do this, you must:
     
    234234all this is automatically performed by the plugin.
    235235
    236 So, let's take a look at how the TestManager plugin incorporates this web interface support.
     236So, let's take a look at how the [wiki:TestManagerForTracPlugin TestManager] plugin incorporates this web interface support.
    237237
    238238{{{