Changeset 1103 for rfc2629xslt/rfc2629toXHTML.xslt
- Timestamp:
- 01/02/11 09:13:55 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rfc2629xslt/rfc2629toXHTML.xslt
r1099 r1103 2535 2535 2536 2536 <xsl:template name="collectLeftHeaderColumn"> 2537 <xsl:param name="mode"/>2538 2537 <!-- default case --> 2539 2538 <xsl:if test="$xml2rfc-private=''"> … … 3524 3523 } 3525 3524 @bottom-center { 3526 content: "<xsl:call-template name="get- category-long"/>";3525 content: "<xsl:call-template name="get-bottom-center"/>"; 3527 3526 } 3528 3527 @bottom-right { … … 3544 3543 } 3545 3544 @bottom-center { 3546 content: "<xsl:call-template name="get- category-long"/>";3545 content: "<xsl:call-template name="get-bottom-center"/>"; 3547 3546 } 3548 3547 @bottom-right { … … 3565 3564 } 3566 3565 @bottom-center { 3567 content: "<xsl:call-template name="get- category-long"/>";3566 content: "<xsl:call-template name="get-bottom-center"/>"; 3568 3567 } 3569 3568 @bottom-right { … … 5914 5913 <xsl:attribute name="title"> 5915 5914 <xsl:if test="@source"><xsl:value-of select="@source"/>: </xsl:if> 5916 <xsl:apply-templates select="text()|eref|xref"/> 5915 <xsl:variable name="content"> 5916 <xsl:apply-templates select="text()|eref|xref"/> 5917 </xsl:variable> 5918 <xsl:value-of select="$content"/> 5917 5919 </xsl:attribute> 5918 5920 <xsl:text>[</xsl:text> … … 6031 6033 </xsl:template> 6032 6034 6035 <xsl:template name="get-bottom-center"> 6036 <xsl:choose> 6037 <xsl:when test="/rfc/@docName"> 6038 <!-- for IDs, use the expiry date --> 6039 <xsl:text>Expires </xsl:text><xsl:call-template name="expirydate"/> 6040 </xsl:when> 6041 <xsl:otherwise> 6042 <xsl:call-template name="get-category-long"/> 6043 </xsl:otherwise> 6044 </xsl:choose> 6045 </xsl:template> 6046 6033 6047 <xsl:template name="get-category-long"> 6034 6048 <xsl:choose> … … 6068 6082 <xsl:text>http://greenbytes.de/tech/webdav/rfc2629.xslt, </xsl:text> 6069 6083 <!-- when RCS keyword substitution in place, add version info --> 6070 <xsl:if test="contains('$Revision: 1.5 37$',':')">6071 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.5 37$', 'Revision: '),'$','')),', ')"/>6084 <xsl:if test="contains('$Revision: 1.540 $',':')"> 6085 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.540 $', 'Revision: '),'$','')),', ')"/> 6072 6086 </xsl:if> 6073 <xsl:if test="contains('$Date: 201 0-12-30 14:21:59$',':')">6074 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 201 0-12-30 14:21:59$', 'Date: '),'$','')),', ')"/>6087 <xsl:if test="contains('$Date: 2011-01-10 09:27:20 $',':')"> 6088 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2011-01-10 09:27:20 $', 'Date: '),'$','')),', ')"/> 6075 6089 </xsl:if> 6076 6090 <xsl:value-of select="concat('XSLT vendor: ',system-property('xsl:vendor'),' ',system-property('xsl:vendor-url'))"/>
Note: See TracChangeset
for help on using the changeset viewer.