Changeset 1426 for rfc2629xslt/rfc2629toXHTML.xslt
- Timestamp:
- 01/09/11 08:26:39 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rfc2629xslt/rfc2629toXHTML.xslt
r1368 r1426 2559 2559 </xsl:when> 2560 2560 <xsl:when test="/rfc/front/workgroup and (not(/rfc/@number) or /rfc/@number='')"> 2561 <xsl:if test="not(starts-with(/rfc/@docName,'draft-ietf-')) and $submissionType='IETF'"> 2562 <xsl:call-template name="info"> 2563 <xsl:with-param name="inline" select="'no'"/> 2564 <xsl:with-param name="msg">The /rfc/front/workgroup should only be used for Working Group drafts</xsl:with-param> 2565 </xsl:call-template> 2566 </xsl:if> 2561 2567 <xsl:for-each select="/rfc/front/workgroup"> 2562 2568 <myns:item><xsl:value-of select="."/></myns:item> … … 5574 5580 <xsl:if test="$badTargets"> 5575 5581 <xsl:variable name="text"> 5576 The following target names do not exist:5582 <xsl:text>The following target names do not exist: </xsl:text> 5577 5583 <xsl:for-each select="$badTargets"> 5578 <xsl:value-of select="@target"/><xsl:if test="position()!=last()">, </xsl:if> 5584 <xsl:value-of select="@target"/> 5585 <xsl:if test="not(@target)">(@target attribute missing)</xsl:if> 5586 <xsl:call-template name="lineno"/> 5587 <xsl:if test="position()!=last()"> 5588 <xsl:text>, </xsl:text> 5589 </xsl:if> 5579 5590 </xsl:for-each> 5580 5591 </xsl:variable> … … 5925 5936 <xsl:for-each select=". | following-sibling::c[position() < $columns]"> 5926 5937 <td> 5938 <xsl:if test="@anchor"> 5939 <xsl:call-template name="check-anchor"/> 5940 <xsl:attribute name="id"> 5941 <xsl:value-of select="@anchor"/> 5942 </xsl:attribute> 5943 </xsl:if> 5927 5944 <xsl:call-template name="insertInsDelClass"/> 5928 5945 <xsl:variable name="pos" select="position()"/> … … 6184 6201 <xsl:text>http://greenbytes.de/tech/webdav/rfc2629.xslt, </xsl:text> 6185 6202 <!-- when RCS keyword substitution in place, add version info --> 6186 <xsl:if test="contains('$Revision: 1.55 3$',':')">6187 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.55 3$', 'Revision: '),'$','')),', ')"/>6203 <xsl:if test="contains('$Revision: 1.556 $',':')"> 6204 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.556 $', 'Revision: '),'$','')),', ')"/> 6188 6205 </xsl:if> 6189 <xsl:if test="contains('$Date: 2011-0 7-27 17:45:31$',':')">6190 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2011-0 7-27 17:45:31$', 'Date: '),'$','')),', ')"/>6206 <xsl:if test="contains('$Date: 2011-08-28 20:30:48 $',':')"> 6207 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2011-08-28 20:30:48 $', 'Date: '),'$','')),', ')"/> 6191 6208 </xsl:if> 6192 6209 <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.