Changeset 1426 for rfc2629xslt/samples
- Timestamp:
- 01/09/11 08:26:39 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rfc2629xslt/samples/rfc2629.xslt
r1368 r1426 2691 2691 </xsl:when> 2692 2692 <xsl:when test="/rfc/front/workgroup and (not(/rfc/@number) or /rfc/@number='')"> 2693 <xsl:if test="not(starts-with(/rfc/@docName,'draft-ietf-')) and $submissionType='IETF'"> 2694 <xsl:call-template name="info"> 2695 <xsl:with-param name="inline" select="'no'"/> 2696 <xsl:with-param name="msg">The /rfc/front/workgroup should only be used for Working Group drafts</xsl:with-param> 2697 </xsl:call-template> 2698 </xsl:if> 2693 2699 <xsl:for-each select="/rfc/front/workgroup"> 2694 2700 <myns:item><xsl:value-of select="."/></myns:item> … … 5719 5725 <xsl:if test="$badTargets"> 5720 5726 <xsl:variable name="text"> 5721 The following target names do not exist:5727 <xsl:text>The following target names do not exist: </xsl:text> 5722 5728 <xsl:for-each select="$badTargets"> 5723 <xsl:value-of select="@target"/><xsl:if test="position()!=last()">, </xsl:if> 5729 <xsl:value-of select="@target"/> 5730 <xsl:if test="not(@target)">(@target attribute missing)</xsl:if> 5731 <xsl:call-template name="lineno"/> 5732 <xsl:if test="position()!=last()"> 5733 <xsl:text>, </xsl:text> 5734 </xsl:if> 5724 5735 </xsl:for-each> 5725 5736 </xsl:variable> … … 6070 6081 <xsl:for-each select=". | following-sibling::c[position() < $columns]"> 6071 6082 <td> 6083 <xsl:if test="@anchor"> 6084 <xsl:call-template name="check-anchor"/> 6085 <xsl:attribute name="id"> 6086 <xsl:value-of select="@anchor"/> 6087 </xsl:attribute> 6088 </xsl:if> 6072 6089 <xsl:call-template name="insertInsDelClass"/> 6073 6090 <xsl:variable name="pos" select="position()" /> … … 6329 6346 <xsl:text>http://greenbytes.de/tech/webdav/rfc2629.xslt, </xsl:text> 6330 6347 <!-- when RCS keyword substitution in place, add version info --> 6331 <xsl:if test="contains('$Revision: 1.55 3$',':')">6332 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.55 3$', 'Revision: '),'$','')),', ')" />6348 <xsl:if test="contains('$Revision: 1.556 $',':')"> 6349 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.556 $', 'Revision: '),'$','')),', ')" /> 6333 6350 </xsl:if> 6334 <xsl:if test="contains('$Date: 2011-0 7-27 17:45:31$',':')">6335 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2011-0 7-27 17:45:31$', 'Date: '),'$','')),', ')" />6351 <xsl:if test="contains('$Date: 2011-08-28 20:30:48 $',':')"> 6352 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2011-08-28 20:30:48 $', 'Date: '),'$','')),', ')" /> 6336 6353 </xsl:if> 6337 6354 <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.