This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 6309 - [XQX11] template for positionalVariableBinding
Summary: [XQX11] template for positionalVariableBinding
Status: CLOSED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: XQueryX 3.0 (show other bugs)
Version: Working drafts
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Jim Melton
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-15 01:23 UTC by Andrew Eisenberg
Modified: 2009-01-13 23:09 UTC (History)
0 users

See Also:


Attachments

Description Andrew Eisenberg 2008-12-15 01:23:41 UTC
The template for positionalVariableBinding is:

  <xsl:template match="xqx:positionalVariableBinding">
    <xsl:text> at </xsl:text>
    <xsl:call-template name="renderQName"/>
  </xsl:template>

I believe that it should be:

  <xsl:template match="xqx:positionalVariableBinding">
    <xsl:text> at </xsl:text>
    <xsl:value-of select="$DOLLAR"/>
    <xsl:call-template name="renderQName"/>
  </xsl:template>
Comment 1 Jim Melton 2009-01-13 01:05:41 UTC
Indeed, it should be.  I've made the change that you suggest and marked the bug FIXED.  If this satisfies your comment, please mark it CLOSED.