In the log file example, a key problem is the quantity of XML data
written for each <when> element. Instead of
representing the date and time using a series of child elements, it
would be much more concise to use the following syntax:
<timestamp time="06:35:44" day="15" month="01" year="2000"/>
The following template will perform the necessary transformation:
<xsl:template match="when">
<!-- change 'when' into 'timestamp', and change its
child elements into attributes -->
<timestamp time="{hour}:{minute}:{second}"
year="{year}" month="{month}" day="{day}"/>
</xsl:template>
This template can be added to the identity transformation stylesheet
and will take precedence whenever a <when>
element is encountered. Instead of using
<xsl:copy>, this template produces a new
<timestamp> element AVTs are then used to
specify attributes for this element, effectively converting element
values into attribute values. The AVT syntax
{hour} is equivalent to selecting the
<hour> child of the
<when> element. You may notice that XSLT
processors do not necessarily preserve the order of attributes. This
is not important because the relative ordering of attributes is
meaningless in XML, and you cannot force the order of XML attributes.
The next thing to tackle is the <message>
element. As mentioned earlier, we would like to convert the
text attribute to an element, and the
<type> element to an attribute. Just like
before, add a new template that matches the
<message> element, which will take
precedence over the identity transformation. Comments in the code
explain what happens at each step.
<!-- locate <message> elements -->
<xsl:template match="message">
<!-- copy the current node, but not its attributes -->
<xsl:copy>
<!-- change the <type> element to an attribute -->
<xsl:attribute name="type">
<xsl:value-of select="type"/>
</xsl:attribute>
<!-- change the text attribute to a child node -->
<xsl:element name="text">
<xsl:value-of select="@text"/>
</xsl:element>
<!-- since the select attribute is not present,
xsl:apply-templates processes all children
of the current node. (not attributes or processing instructions!) -->
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>