Changeset 1552 for rfc2629xslt/samples/rfc2629.xslt
- Timestamp:
- 29/02/12 23:02:19 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rfc2629xslt/samples/rfc2629.xslt
r1528 r1552 595 595 <xsl:message>Start: "<xsl:value-of select="$starts-with-ws"/>"</xsl:message> 596 596 <xsl:message> End: "<xsl:value-of select="$ends-with-ws"/>"</xsl:message> --> 597 <xsl:if test="$starts-with-ws='' and preceding-sibling::node() ">597 <xsl:if test="$starts-with-ws='' and preceding-sibling::node() | parent::ed:ins | parent::ed:del"> 598 598 <xsl:text> </xsl:text> 599 599 </xsl:if> 600 600 <xsl:value-of select="normalize-space(.)"/> 601 <xsl:if test="$ends-with-ws='' and following-sibling::node() ">601 <xsl:if test="$ends-with-ws='' and following-sibling::node() | parent::ed:ins | parent::ed:del"> 602 602 <xsl:text> </xsl:text> 603 603 </xsl:if> … … 5682 5682 </a> 5683 5683 </xsl:when> 5684 <xsl:when test="@href"> 5685 <a href="{@href}" id="{$anchor-prefix}.issue.{.}"> 5686 <xsl:apply-templates/> 5687 </a> 5688 </xsl:when> 5684 5689 <xsl:otherwise> 5685 5690 <xsl:call-template name="warning"> … … 6528 6533 <xsl:text>http://greenbytes.de/tech/webdav/rfc2629.xslt, </xsl:text> 6529 6534 <!-- when RCS keyword substitution in place, add version info --> 6530 <xsl:if test="contains('$Revision: 1.5 67$',':')">6531 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.5 67$', 'Revision: '),'$','')),', ')" />6535 <xsl:if test="contains('$Revision: 1.570 $',':')"> 6536 <xsl:value-of select="concat('Revision ',normalize-space(translate(substring-after('$Revision: 1.570 $', 'Revision: '),'$','')),', ')" /> 6532 6537 </xsl:if> 6533 <xsl:if test="contains('$Date: 2012-02- 06 22:22:25 $',':')">6534 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2012-02- 06 22:22:25 $', 'Date: '),'$','')),', ')" />6538 <xsl:if test="contains('$Date: 2012-02-13 19:17:35 $',':')"> 6539 <xsl:value-of select="concat(normalize-space(translate(substring-after('$Date: 2012-02-13 19:17:35 $', 'Date: '),'$','')),', ')" /> 6535 6540 </xsl:if> 6536 6541 <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.