<xsl:template match="revhistory/revision">
<xsl:variable name="revnumber" select="revnumber"/>
<xsl:variable name="revdate" select="date"/>
- <xsl:variable name="revauthor" select="authorinitials"/>
+ <xsl:variable name="revauthor" select="authorinitials|author"/>
<xsl:variable name="revremark" select="revremark|revdescription"/>
<fo:table-row>
<fo:table-cell>
<xsl:apply-templates/>
</xsl:template>
+<xsl:template match="revision/author">
+ <xsl:apply-templates/>
+</xsl:template>
+
<xsl:template match="revision/revremark">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="revhistory/revision" mode="titlepage.mode">
<xsl:variable name="revnumber" select="revnumber"/>
<xsl:variable name="revdate" select="date"/>
- <xsl:variable name="revauthor" select="authorinitials"/>
+ <xsl:variable name="revauthor" select="authorinitials|author"/>
<xsl:variable name="revremark" select="revremark|revdescription"/>
<fo:table-row>
<fo:table-cell>
<xsl:apply-templates mode="titlepage.mode"/>
</xsl:template>
+<xsl:template match="revision/author" mode="titlepage.mode">
+ <xsl:apply-templates mode="titlepage.mode"/>
+</xsl:template>
+
<xsl:template match="revision/revremark" mode="titlepage.mode">
<xsl:apply-templates mode="titlepage.mode"/>
</xsl:template>