Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
75:process_feedback_rtc [2020/04/14 13:28] – [Stages config.xml] tssr75:process_feedback_rtc [2020/04/14 14:02] – [Process Feedback RTC specific] tssr
Line 1: Line 1:
 ====== Process Feedback RTC specific ====== ====== Process Feedback RTC specific ======
 +[[https://oslc.github.io/developing-oslc-applications/eclipse_lyo/eclipse-lyo.html|OSLC]] 
 +[[https://github.com/eclipse/lyo|Eclipse Lyo]]
 ===== Stages config.xml ===== ===== Stages config.xml =====
  
Line 11: Line 12:
     <host url="https://rtc.example.com/ccm">     <host url="https://rtc.example.com/ccm">
  
-      <!-- Name of the project area which will contain all the work items created by stages -->+      <!-- Name of the project areawhich will contain all the work items created by stages -->
       <property name="projectAreaName" value="Scrum Demo" />       <property name="projectAreaName" value="Scrum Demo" />
  
       <!-- Type of the work item, which will be created by stages -->       <!-- Type of the work item, which will be created by stages -->
       <property name="workItemType" value="task" />       <property name="workItemType" value="task" />
 +      
 +      <!--
 +        Please only enable, if you know what you are doing here
 +        Can be enabled, if your RTC server uses untrusted (or self-signed) ssl certificates
 +      -->
       <property name="trustSsl" value="true" />       <property name="trustSsl" value="true" />
 +      
 +      <!-- The Username to access the RTC server and create work items -->
       <property name="username" value="admin" />       <property name="username" value="admin" />
 +      
 +      <!-- The corresponding password -->
       <property name="password" value="admin" />       <property name="password" value="admin" />
 +      
 +      <!--
 +        Authentication Method, to log into the RTC server
 +        Possible values are: "basic", "form" and "jas"
 +      -->
       <property name="authenticationMethod" value="form" />       <property name="authenticationMethod" value="form" />
  
 +      <!--
 +        The user will be asked to enter the following text fields. All text fields are optional.
 +        - The "ident" must be unique and is used to identify the right translation property.
 +        - The "type" defines, if the field is a multi-line text ("text") or a single line string ("string").
 +        - The "target" defines the id of the custom attribute in RTC (e.g. "some.custom.attribute").
 +        - Optional: The targetType defines the type of the RTC attribute. For supported RTC target types see below.
 +      -->
       <attributes>       <attributes>
         <attribute ident="text" type="text" target="test.text" />         <attribute ident="text" type="text" target="test.text" />
Line 27: Line 49:
       </attributes>       </attributes>
  
 +      <!--
 +        You can map Stages-Element specify information to your RTC work item. These sources are available:
 +        - elementUrl e.g. https://stages.example.com/stages/index.html#/workspace/200/_vv/(process/activity/_wUV9sBbNHr-aicWx33VsQA)
 +        - workspaceName e.g. "Software Engineering"
 +        - workspacePath e.g. "Company | Software"
 +        - creatorFullname "John Doe"
 +        - creatorUsername "jdoe"
 +        The "target" defines the id for the custom attribute in RTC (e.g. "some.custom.attribute").
 +        Optional: The targetType defines the type of the RTC attribute. For supported RTC target types see below.
 +      -->
       <system-attribute-mappings>       <system-attribute-mappings>
         <attribute source="creatorFullname" target="test.user" targetType="contributor" />         <attribute source="creatorFullname" target="test.user" targetType="contributor" />