1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0'>
<!-- ****************************Revhistory********************-->
<xsl:template match="revhistory" mode="titlepage.mode">
<xsl:variable name="numcols">
<!--
<xsl:choose>
<xsl:when test="//authorinitials">3</xsl:when>
<xsl:otherwise>2</xsl:otherwise>
</xsl:choose>
-->
4
</xsl:variable>
<div class="{name(.)}">
<h2><xsl:call-template name="gentext">
<xsl:with-param name="key" select="'History'"/>
</xsl:call-template>
</h2>
<table border="1" width="100%" summary="Revision history">
<tr>
<th align="left" valign="top" colspan="1">
<b>
<xsl:call-template name="gentext">
<xsl:with-param name="key" select="'Title'"/>
</xsl:call-template>
</b>
</th>
<th align="left" valign="top" colspan="1">
<b>
<xsl:call-template name="gentext">
<xsl:with-param name="key" select="'Date'"/>
</xsl:call-template>
</b>
</th>
<th align="left" valign="top" colspan="1">
<b>
<xsl:call-template name="gentext">
<xsl:with-param name="key" select="'Author'"/>
</xsl:call-template>
</b>
</th>
<th align="left" valign="top" colspan="1">
<b>
<xsl:call-template name="gentext">
<xsl:with-param name="key" select="'Publisher'"/>
</xsl:call-template>
</b>
</th>
</tr>
<xsl:apply-templates mode="titlepage.mode">
<xsl:with-param name="numcols" select="$numcols"/>
</xsl:apply-templates>
</table>
</div>
</xsl:template>
<xsl:template match="revhistory/revision" mode="titlepage.mode">
<xsl:param name="numcols" select="'4'"/>
<xsl:variable name="revnumber" select=".//revnumber"/>
<xsl:variable name="revdate" select=".//date"/>
<xsl:variable name="revremark" select=".//revremark|.//revdescription"/>
<xsl:variable name="revision.authors"
select="$revremark/para[@role='author']|.//authorinitials"/>
<xsl:variable name="revision.publisher" select="$revremark/para[@role='publisher']"/>
<xsl:variable name="revision.other" select="$revremark/para[@role='']"/>
<tr>
<td align="left">
<p>
<xsl:value-of select="$revnumber"/>
</p>
</td>
<td align="left">
<p>
<xsl:value-of select="$revdate"/>
</p>
</td>
<td align="left">
<xsl:apply-templates
select="$revision.authors"/>
</td>
<td align="left">
<xsl:apply-templates
select="$revision.publisher"/>
</td>
</tr>
<xsl:if test="$revision.other">
<tr>
<td align="left" colspan="4">
<xsl:apply-templates select="$revision.other"/>
</td>
</tr>
</xsl:if>
</xsl:template>
<xsl:template match="revision/revnumber" mode="titlepage.mode">
<xsl:apply-templates mode="titlepage.mode"/>
</xsl:template>
<xsl:template match="revision/date" mode="titlepage.mode">
<xsl:apply-templates mode="titlepage.mode"/>
</xsl:template>
<xsl:template match="revision/authorinitials" 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>
<xsl:template match="revision/revdescription" mode="titlepage.mode">
<xsl:apply-templates mode="titlepage.mode"/>
</xsl:template>
<!-- ==================================================================== -->
</xsl:stylesheet>
|