- From: <bugzilla@jessica.w3.org>
- Date: Thu, 25 Nov 2010 11:27:35 +0000
- To: public-qt-comments@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=11404
Summary: XSLT 2.1 (11 May 2010), Section 15.8: Example on
intersection
Product: XPath / XQuery / XSLT
Version: Working drafts
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: XSLT 3.0
AssignedTo: mike@saxonica.com
ReportedBy: oneil@saxonica.com
QAContact: public-qt-comments@w3.org
The example on intersection using xsl:merge in Section 15.8 is missing an '>'
at the end of the <xsl:if ...> instruction (5th line from bottom in the
example):
<xsl:merge>
<xsl:merge-source>
<xsl:merge-input select="1 to 30">
<xsl:merge-key select="."/>
</xsl:merge-input>
</xsl:merge-source>
<xsl:merge-source>
<xsl:merge-input select="20 to 40">
<xsl:merge-key select="."/>
</xsl:merge-input>
</xsl:merge-source>
<xsl:merge-action>
<xsl:if test="count(current-group()) eq 2"
<xsl:value-of select="current-grouping-key()"/>
</xsl:if>
</xsl:merge-action>
</xsl:merge>
--
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Thursday, 25 November 2010 11:27:37 UTC