Add (or replace) attributes on a set of elements.
<p:declare-step type="p:set-attributes"> <input port="source" primary="true" content-types="xml html" sequence="false"/> <output port="result" primary="true" content-types="xml html" sequence="false"/> <option name="attributes" as="map(xs:QName, xs:anyAtomicType)" required="true"/> <option name="match" as="xs:string" required="false" select="'/*'"/> </p:declare-step>
The p:set-attributes
step adds (or replaces) attributes as specified in the attributes
option map. This is
done for the element(s) matched by the match
option.
Ports:
Type | Port | Primary? | Content types | Seq? | Description |
---|---|---|---|---|---|
|
|
|
|
| The document to add (or replace) the attributes on. |
|
|
|
|
| The resulting document. |
Options:
The p:set-attribute
step:
Takes the document appearing on its source
port.
Processes the elements that match the pattern in the match
option:
If a selected element does not contain an attribute with a name that is a key in the
attributes
option map, an attribute with this name and a value as associated in the map is added to it.
If a selected element already has such an attribute, its value is replaced with the value as associated in the map.
The resulting document appears on its result
port.
If you just want to set a single attribute, you can also use the p:add-attribute
step.
This example adds the type="special"
and a level="2"
attributes to all <text>
elements. One of the input
<text>
elements already has a type
attribute, but with a different value. This existing attribute is replaced.
Source document:
<texts> <text>Hello there!</text> <text>This is funny…</text> <text type="normal">And that's normal.</text> </texts>
Pipeline document:
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0"> <p:input port="source"/> <p:output port="result"/> <p:set-attributes match="text" attributes="map{'type': 'special', 'level': 2}"/> </p:declare-step>
Result document:
<texts> <text type="special" level="2">Hello there!</text> <text type="special" level="2">This is funny…</text> <text type="special" level="2">And that's normal.</text> </texts>
p:set-attributes
preserves all document-properties of the document(s) appearing on its source
port.
If an attribute called xml:base
is added or changed, the base URI of the element is updated accordingly. See also category
Base URI related.
You cannot use this step to add or change a namespace declaration. Attempting to do so will result in error XC0059
.
Note, however, that it is possible to add an attribute whose namespace is not in scope on the element it is added to. The XProc namespace fixup mechanism will take care of handling this and add the appropriate namespace declarations.
This description of the p:set-attributes
step is for XProc version: 3.0. This is a required step (an XProc 3.0 processor must support this).
The formal specification for the p:set-attributes
step can be found here.
The p:set-attributes
step is part of categories:
The p:set-attributes
step is also present in version:
3.1.