• Added SequenceNumber element.
1 parent 5f8e046 commit eb9cf3545a6d7ca4e7c683260304d47e26a15194
Nigel Stanger authored on 11 Mar 2016
Showing 1 changed file
View
12
modules/global-elements.xml
<xsl:apply-templates select="/document/due-date" mode="inline" />
</common>
</template>
 
<!--
Sequence number for the document. Obviously there must be a sequence-number attribute in the document element for this to work!
-->
<template name="SequenceNumber" match="SequenceNumber">
<common>
<xsl:if test="not( /document/@sequence-number )">
<xsl:message terminate="yes">The sequence number for this document has not been specified (use /document/@sequence-number).</xsl:message>
</xsl:if>
<xsl:value-of select="/document/@sequence-number" />
</common>
</template>
 
 
</stylesheet>