| [8555] | 1 | <?xml version="1.0" encoding="iso-8859-1"?>
|
|---|
| 2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|---|
| 3 | version='1.0'
|
|---|
| 4 | xmlns="http://www.w3.org/TR/xhtml1/transitional"
|
|---|
| 5 | xmlns:date="http://exslt.org/dates-and-times"
|
|---|
| 6 | exclude-result-prefixes="#default">
|
|---|
| 7 |
|
|---|
| 8 | <xsl:template name="user.footer.navigation">
|
|---|
| 9 | <xsl:if test="count(/book/index) > 0">
|
|---|
| 10 | <div align="center">
|
|---|
| 11 | <a>
|
|---|
| 12 | <xsl:attribute name="href">
|
|---|
| 13 | <xsl:call-template name="href.target">
|
|---|
| 14 | <xsl:with-param name="object" select="/book/index"/>
|
|---|
| 15 | </xsl:call-template>
|
|---|
| 16 | </xsl:attribute>
|
|---|
| 17 | <xsl:text>Symbol Index</xsl:text>
|
|---|
| 18 | </a>
|
|---|
| 19 | </div>
|
|---|
| 20 | </xsl:if>
|
|---|
| 21 |
|
|---|
| 22 | <p class="footer">
|
|---|
| 23 | <xsl:variable name="now" select="date:date-time()"/>
|
|---|
| 24 | <xsl:text>This document was last modified at </xsl:text>
|
|---|
| [9219] | 25 | <xsl:value-of select="date:hour-in-day($now)"/>
|
|---|
| 26 | <xsl:text>:</xsl:text>
|
|---|
| 27 | <xsl:value-of select="date:minute-in-hour($now)"/>
|
|---|
| [8555] | 28 | <xsl:text> on </xsl:text>
|
|---|
| 29 | <xsl:value-of select="date:month-name($now)"/>
|
|---|
| 30 | <xsl:text> </xsl:text>
|
|---|
| 31 | <xsl:value-of select="date:day-in-month($now)"/>
|
|---|
| 32 | <xsl:text>, </xsl:text>
|
|---|
| 33 | <xsl:value-of select="date:year($now)"/>
|
|---|
| 34 | <xsl:text>, in UTC.</xsl:text>
|
|---|
| 35 | <br/>
|
|---|
| 36 | <xsl:text>It uses version </xsl:text>
|
|---|
| 37 | <xsl:value-of select="$VERSION"/>
|
|---|
| 38 | <xsl:text> of the Norman Walsh Docbook stylesheets.</xsl:text>
|
|---|
| 39 | <br/>
|
|---|
| [9219] | 40 | <xsl:text>Built from subversion rev </xsl:text>
|
|---|
| 41 | <xsl:value-of select="$svnrev"/>
|
|---|
| 42 | <br/>
|
|---|
| [8555] | 43 | <xsl:value-of select="$xsltproc.version"/>
|
|---|
| 44 | </p>
|
|---|
| 45 | </xsl:template>
|
|---|
| 46 | </xsl:stylesheet>
|
|---|