Manual:Extension/Workflows/Activity/SetTemplateParams: Difference between revisions

No edit summary
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
==<span class="mw-headline">Description</span>==
==Description==
<span style="color: rgb(4, 30, 73)">The ''SetTemplateParams'' activity allows template parameters to be set automatically on a page.</span>
The ''SetTemplateParams'' activity allows automatic setting a template parameter on a wiki page.


* Templates are accessed by the order of appearance on the page.
* Templates are accessed by the order of appearance on the page, starting at 0. Non-existing templates are counted as links, so they do not count in this list.
* Non-existing templates are counted as links, so they do not count in this list.
* Parameters inside the template can be specified by their name or the index in case of non-named parameters.
* Params inside the template can be specified by their name, or the index in case of non-named params. Index for non-named params starts at 1 (not 0!), as to be consistent with how template params are accessed in the template itself.
* Index for non-named params starts at 1 (not 0!), as to be consistent with how template params are accessed in the template itself.
* Nested templates are not supported as of now.
* Nested templates are currently not supported.


{| class="wikitable" style=""
== Profile ==
! colspan="2" style="background-color:rgb(234, 236, 240);text-align:center;" class="" |'''Short profile'''
{| class="wikitable"
! colspan="2" |'''Short profile'''
|-
|-
| style="" |Name
|Name
| style="" |SetTemplateParams
|SetTemplateParams
|-
|-
| style="" |Async
|Async
| style="" |Yes
|Yes
|-
|-
| style="" |BPMN type
|BPMN type
| style="" |<code>bpmn:Task</code>
|<code>bpmn:task</code>
|-
|-
|BPMN Extension Element "wf:type"
|BPMN Extension Element "wf:type"
|<code>set_template_param</code>
|<code>set_template_param</code>
|}<!-- https://github.com/wikimedia/mediawiki-extensions-Workflows/blob/master/doc/Activity/SetTemplateParams.MD -->
|}


==<span class="mw-headline">Properties</span>==
==Properties==
 
{| class="wikitable"
=== Input properties ===
! style="vertical-align:middle;text-align:left;" |'''Name of property'''
{| class="wikitable" style="width:100%;"
!'''Description'''
! style="background-color:rgb(234, 236, 240);text-align:center;" class="" |Name of property
!'''Type'''
!Source
! style="background-color:rgb(234, 236, 240);text-align:center;" class="" |Description
!Possible values
! style="background-color:rgb(234, 236, 240);text-align:center;" class="" |Type
|-
|-
| style="" |<code>title</code>
|<code>title</code>
|<nowiki>-</nowiki>
|Name of the page where the template parameter is changed. If it will be changed on the page where the workflow runs, the value is <code><nowiki>{{FULLPAGENAME}}</nowiki></code>
| style="" |Name of the wiki page that includes the template(s).
|string
|<code>"Main_page"</code>
| style="" |string
|-
|-
|<code>user</code>
| style="width:70px;" |<code>user</code>
| -
|User that is shown in the revision history
|Name of user that will be shown as revision user.
|user
|<code>"WikiSysop"</code>
|string
|-
|-
|<code>template-index</code>
|<code>template-index</code>
|  -
|Index of the template on the page (starting at 0)
|Index of the template on page (starting from 0).
|number
|<code>"2"</code>
|int
|-
|-
|<code>template-param</code>
|<code>template- param</code>
-
|Parameter to modify. This can be a string (in the case of named parameter) or a number (in case of a non-named param; starting from 1, accessor for the parameter)
|Param to modify. Can be a string in case of named params, or a number, in case of non-named params (starting from 1, accessor for the param)
|<nowiki>int|string</nowiki>
|<code>"comment"</code> OR <code>"1"</code>
| rowspan="2" |int, string
|-
|-
|<code>value</code>
|<code>value</code>
|  -
|New value of the parameter, set by the workflow
|New parameter value to set.
|string
|<code>"New value of parameter"</code>
|-
|-
|<code>minor</code>
|<code>minor</code>
| -
|Marks the revision as a minor edit if set to 1
|<span style="color: rgb(4, 30, 73)">The edit will be marked as</span> ''major'' <span style="color: rgb(4, 30, 73)">or</span> ''minor'' <span style="color: rgb(4, 30, 73)">revision.</span>
|boolean
|<code>default="0"</code>
*''1'' (=minor revision)
*''0'' (=major revision)
|int
|}
 
=== Output properties ===
{| class="wikitable" style="width:100%;"
! style="background-color:rgb(234, 236, 240);text-align:center;" class="" |Name of property
!Source
! style="background-color:rgb(234, 236, 240);text-align:center;" class="" |Description
! style="background-color:rgb(234, 236, 240);text-align:center;" class="" |Type
|-
|-
|<code>revisionId</code>
|<code>revisionId</code>
| -
|Sets a new page revision ID
|The revision ID of the edited page.
|number
|string
|-
|-
|<code>timestamp</code>
|<code>timestamp</code>
| -
|Sets the page revision timestamp
|The revision time of the edited page.
|timestamp
|timestamp
|-
|<code>comment</code>
|Comment that is shown in the revision history
|string
|}
|}


== Example ==
== Example ==
<syntaxhighlight lang="xml">
 
=== Workflow task ===
This workflow task will set the value of the parameter <code><nowiki>{{{status|not set}}}</nowiki></code> to <code>Updated</code> on a page's first template.<syntaxhighlight lang="xml">
<bpmn:task id="EditTemplate" name="Edit template">
<bpmn:task id="EditTemplate" name="Edit template">
<bpmn:extensionElements>
    <bpmn:extensionElements>
<wf:type>set_template_param</wf:type>
<wf:type>set_template_param</wf:type>
</bpmn:extensionElements>
</bpmn:extensionElements>
<bpmn:property name="title" default="DummyPage" validation="required,existing-title"/>
<bpmn:property name="title" default="Testpage" validation="required,existing-title"/>
<bpmn:property name="user" default="WikiSysop" validation="existing-user"/>
<bpmn:property name="user" default="WikiSysop" validation="existing-user"/>
<!-- Index of the template on page (starting from 0) -->
<!-- Index of the template on page (starting from 0) -->
<bpmn:property name="template-index" default="2"/>
<bpmn:property name="template-index" default="0"/>
<!-- Param to modify. Can be a string in case of named params, or a number, in case of non-named params (starting from 1, accessor for the param) -->
<!-- Param to modify. Can be a string in case of named params, or a number, in case of non-named params (starting from 1, accessor for the param) -->
<bpmn:property name="template-param" default="1"/>
<bpmn:property name="template-param" default="status"/>
<!-- New value to set -->
<!-- New value to set -->
<bpmn:property name="value" default="Super edited param"/>
<bpmn:property name="value" default="Updated"/>
<bpmn:property name="minor" default="0"/>
<bpmn:property name="minor" default="0"/>


<!-- Output properties -->
<!-- Output properties -->
<bpmn:property name="revisionId"/>
<bpmn:property name="revisionId"/>
<bpmn:property name="timestamp"/>
<bpmn:property name="comment" default="Edited template param"/>
  <bpmn:incoming>Flow_1qh6vpl</bpmn:incoming>
<bpmn:property name="timestamp"/>
  <bpmn:outgoing>Flow_0if1kyp</bpmn:outgoing>
      <bpmn:incoming>Flow_1qh6vpl</bpmn:incoming>
      <bpmn:outgoing>Flow_0if1kyp</bpmn:outgoing>


</bpmn:task>
    </bpmn:task>
</syntaxhighlight>
</syntaxhighlight>
=== Template ===
The template content has the parameter <code><nowiki>{{{status}}}</nowiki></code> At the time of writing this, the workflow produced an error tif the parameter was wrapped in a <code><nowiki><div></nowiki></code> tag. Therefore, in the example below, the parameter is defined in a variable first. If the parameter is not in  a  <code>div</code> tag, using a variable is not necessary.<syntaxhighlight lang="text">
{{#vardefine:status|{{{status|not set}}}}}
<div style="background:#fbfaef;">Page status: {{#var:status}}</div>
</syntaxhighlight>
=== Full bpmn example ===
<syntaxhighlight lang="xml">
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:wf="http://hallowelt.com/schema/bpmn/wf">
    <bpmn:process id="SetTemplateParams-Process" isExecutable="false">
        <bpmn:extensionElements>
            <wf:context>
                <wf:contextItem name="pageId"/>
            </wf:context>
        </bpmn:extensionElements>
        <bpmn:startEvent id="TheStart">
            <bpmn:outgoing>FromTheStartToEditTemplate</bpmn:outgoing>
        </bpmn:startEvent>
        <bpmn:sequenceFlow id="FromTheStartToEditTemplate" sourceRef="TheStart" targetRef="EditTemplate" />
        <bpmn:task id="EditTemplate" name="Edit template">
            <bpmn:extensionElements>
                <wf:type>set_template_param</wf:type>
            </bpmn:extensionElements>
            <bpmn:property name="title" default="" validation="required,existing-title">{{FULLPAGENAME}}</bpmn:property>
            <bpmn:property name="user" default="WikiSysop" validation="existing-user">WikiSysop</bpmn:property>
            <!-- Index of the template on page (starting from 0) -->
            <bpmn:property name="template-index" default="0"/>
            <!-- Param to modify. Can be a string in case of named params, or a number, in case of non-named params (starting from 1, accessor for the param) -->
            <bpmn:property name="template-param" default="status"/>
            <!-- New value to set -->
            <bpmn:property name="value" default="Super edited param"/>
            <bpmn:property name="minor" default="1"/>
            <!-- Output properties -->
            <bpmn:property name="revisionId"/>
            <bpmn:property name="timestamp"/>
            <bpmn:incoming>FromTheStartToEditTemplate</bpmn:incoming>
            <bpmn:outgoing>FromEditTemplateToTheEnd</bpmn:outgoing>
        </bpmn:task>
        <bpmn:sequenceFlow id="FromEditTemplateToTheEnd" sourceRef="EditTemplate" targetRef="TheEnd" />
        <bpmn:endEvent id="TheEnd">
            <bpmn:incoming>FromEditTemplateToTheEnd</bpmn:incoming>
        </bpmn:endEvent>
    </bpmn:process>
</bpmn:definitions>
</syntaxhighlight>
[[de:Handbuch:Erweiterung/Workflows/Activity/SetTemplateParams]]

Latest revision as of 16:58, 5 February 2024

Description

The SetTemplateParams activity allows automatic setting a template parameter on a wiki page.

  • Templates are accessed by the order of appearance on the page, starting at 0. Non-existing templates are counted as links, so they do not count in this list.
  • Parameters inside the template can be specified by their name or the index in case of non-named parameters.
  • Index for non-named params starts at 1 (not 0!), as to be consistent with how template params are accessed in the template itself.
  • Nested templates are currently not supported.

Profile

Short profile
Name SetTemplateParams
Async Yes
BPMN type bpmn:task
BPMN Extension Element "wf:type" set_template_param

Properties

Name of property Description Type
title Name of the page where the template parameter is changed. If it will be changed on the page where the workflow runs, the value is {{FULLPAGENAME}} string
user User that is shown in the revision history user
template-index Index of the template on the page (starting at 0) number
template- param Parameter to modify. This can be a string (in the case of a named parameter) or a number (in case of a non-named param; starting from 1, accessor for the parameter) int|string
value New value of the parameter, set by the workflow string
minor Marks the revision as a minor edit if set to 1 boolean
revisionId Sets a new page revision ID number
timestamp Sets the page revision timestamp timestamp
comment Comment that is shown in the revision history string

Example

Workflow task

This workflow task will set the value of the parameter {{{status|not set}}} to Updated on a page's first template.

<bpmn:task id="EditTemplate" name="Edit template">
    	<bpmn:extensionElements>
			<wf:type>set_template_param</wf:type>
		</bpmn:extensionElements>
		<bpmn:property name="title" default="Testpage" validation="required,existing-title"/>
		<bpmn:property name="user" default="WikiSysop" validation="existing-user"/>
		<!-- Index of the template on page (starting from 0) -->
		<bpmn:property name="template-index" default="0"/>
		<!-- Param to modify. Can be a string in case of named params, or a number, in case of non-named params (starting from 1, accessor for the param) -->
		<bpmn:property name="template-param" default="status"/>
		<!-- New value to set -->
		<bpmn:property name="value" default="Updated"/>
		<bpmn:property name="minor" default="0"/>

		<!-- Output properties -->
		<bpmn:property name="revisionId"/>
		<bpmn:property name="comment" default="Edited template param"/>
		<bpmn:property name="timestamp"/>
      <bpmn:incoming>Flow_1qh6vpl</bpmn:incoming>
      <bpmn:outgoing>Flow_0if1kyp</bpmn:outgoing>

    </bpmn:task>

Template

The template content has the parameter {{{status}}} At the time of writing this, the workflow produced an error tif the parameter was wrapped in a <div> tag. Therefore, in the example below, the parameter is defined in a variable first. If the parameter is not in a div tag, using a variable is not necessary.

{{#vardefine:status|{{{status|not set}}}}}
<div style="background:#fbfaef;">Page status: {{#var:status}}</div>

Full bpmn example

<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:wf="http://hallowelt.com/schema/bpmn/wf">
    <bpmn:process id="SetTemplateParams-Process" isExecutable="false">
        <bpmn:extensionElements>
            <wf:context>
                <wf:contextItem name="pageId"/>
            </wf:context>
        </bpmn:extensionElements>
        <bpmn:startEvent id="TheStart">
            <bpmn:outgoing>FromTheStartToEditTemplate</bpmn:outgoing>
        </bpmn:startEvent>
        <bpmn:sequenceFlow id="FromTheStartToEditTemplate" sourceRef="TheStart" targetRef="EditTemplate" />
        <bpmn:task id="EditTemplate" name="Edit template">
            <bpmn:extensionElements>
                <wf:type>set_template_param</wf:type>
            </bpmn:extensionElements>
            <bpmn:property name="title" default="" validation="required,existing-title">{{FULLPAGENAME}}</bpmn:property>
            <bpmn:property name="user" default="WikiSysop" validation="existing-user">WikiSysop</bpmn:property>
            <!-- Index of the template on page (starting from 0) -->
            <bpmn:property name="template-index" default="0"/>
            <!-- Param to modify. Can be a string in case of named params, or a number, in case of non-named params (starting from 1, accessor for the param) -->
            <bpmn:property name="template-param" default="status"/>
            <!-- New value to set -->
            <bpmn:property name="value" default="Super edited param"/>
            <bpmn:property name="minor" default="1"/>
            <!-- Output properties -->
            <bpmn:property name="revisionId"/>
            <bpmn:property name="timestamp"/>
            <bpmn:incoming>FromTheStartToEditTemplate</bpmn:incoming>
            <bpmn:outgoing>FromEditTemplateToTheEnd</bpmn:outgoing>
        </bpmn:task>
        <bpmn:sequenceFlow id="FromEditTemplateToTheEnd" sourceRef="EditTemplate" targetRef="TheEnd" />
        <bpmn:endEvent id="TheEnd">
            <bpmn:incoming>FromEditTemplateToTheEnd</bpmn:incoming>
        </bpmn:endEvent>
    </bpmn:process>
</bpmn:definitions>




To submit feedback about this documentation, visit our community forum.

No categories assignedEdit

Discussions