The functions from which Transmuter Recipes are built are described below:
Transform Function | Description | Parameters | ||
---|---|---|---|---|
AddJobParameter | Adds a named parameter to one or more specified jobs |
| ||
RemoveJobParameter | Removes a named parameter from one or more specified jobs |
| ||
AppendToAttribute | Append a string value to an attribute. |
| ||
PrependToAttribute | Prepend a string value to an attribute. |
| ||
SearchAndReplace | Perform a regex search/replace on a text node (i.e. attribute or element with text content). If an element with child elements is provided by the xpath, the child elements will all be removed by this operation. |
| ||
InsertElement | Adds an XML element as a child to a specified parent element. |
| ||
InsertAttribute | Adds an attribute to an XML element. If the attribute already exists it will be overwritten. |
| ||
RemoveElement | Removes an XML element from the document. |
| ||
RemoveAttribute | Removes an attribute from an existing element. |
|
...