Replaced CVS ID variables with a single variable $document-name that uses the base-uri() function to extract the name of the document being processed. The CVS IDs can be gradually expunged from source files as we go. (closes #1)
1 parent fdf250f commit 907090372d4c6daa4b2423930f7079ce519c88ac
Nigel Stanger authored on 12 Jun 2013
Showing 2 changed files
View
6
modules/build-date.xml
2. A "public" template that matches build-date elements in the document.
3. A "private" function to generate the actual date string in the desired format.
These templates use the stylesheet global variable $date-built, which is set to the current date-time when the stylesheet is executed. They also use some of the global $cvs-xxx variables, which contain items extracted from the CVS ID of the document being processed.
These templates use the stylesheet global variable $date-built, which is set to the current date-time when the stylesheet is executed. They also use the global $document-name variable, which contains the name of the document currently being processed.
-->
 
<stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:value-of select="infosci:generate-build-date( $format )" />
</xsl:when>
<xsl:when test="$style = 'footer'">
<address>
<xsl:value-of select="$cvs-file" />
<xsl:value-of select="$document-name" />
<xsl:text>, last built </xsl:text>
<xsl:value-of select="infosci:generate-build-date( $format )" />
</address>
</xsl:when>
<xsl:text>\vfill</xsl:text>
<xsl:call-template name="newline-internal" />
<xsl:call-template name="newline-internal" />
<xsl:text>{\scriptsize \hfill \verb+</xsl:text>
<xsl:value-of select="$cvs-file" />
<xsl:value-of select="$document-name" />
<xsl:text>, last built </xsl:text>
<xsl:value-of select="infosci:generate-build-date( $format )" />
<xsl:text>+}</xsl:text>
<xsl:call-template name="newline-internal" />
View
14
xml2xslt.xsl
<!-- The date and time when the document was last built. -->
<xsl-out:variable name="date-built" select="current-dateTime()" />
<!-- Various items from the CVS ID string, for convenience. -->
<xsl-out:variable name="cvs-id-tokens" select="tokenize( /document/@cvs-id, '\s+' )" />
<xsl-out:variable name="cvs-file" select="tokenize( $cvs-id-tokens[2], ',' )[1]" />
<xsl-out:variable name="cvs-version" select="$cvs-id-tokens[3]" />
<xsl-out:variable name="cvs-date" select="tokenize( $cvs-id-tokens[4], ',' )[1]" />
<xsl-out:variable name="cvs-time" select="tokenize( $cvs-id-tokens[5], ',' )[1]" />
<xsl-out:variable name="cvs-user" select="$cvs-id-tokens[6]" />
<!-- Get the name of the document being processed. -->
<xsl-out:variable name="document-name" select="reverse( tokenize( base-uri(), '/' ) )[1]" />
 
<!-- Include the generated Oracle documentation code. -->
<xsl-out:include href="oracle-docs.xsl" />