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 2255 - [xqueryx] moduleDecl lacking a separator
Summary: [xqueryx] moduleDecl lacking a separator
Status: CLOSED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: XQueryX 1.0 (show other bugs)
Version: Last Call 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: 2005-09-16 10:53 UTC by David Carlisle
Modified: 2005-09-26 22:49 UTC (History)
0 users

See Also:


Attachments

Description David Carlisle 2005-09-16 10:53:04 UTC
the xqueryx stylesheet (15th nov)  does not put a ";" after a module declaration
the template needs the last two value-of instructions adding, as below.


<xsl:template match="xqx:moduleDecl">
    <xsl:text> module namespace </xsl:text>
    <xsl:value-of select="xqx:prefix"/>
    <xsl:value-of select="$EQUAL"/>
    <xsl:call-template name="quote">
      <xsl:with-param name="item" select="xqx:uri" />
    </xsl:call-template>
      <xsl:value-of select="$SEPARATOR"/>
      <xsl:value-of select="$NEWLINE"/>
  </xsl:template>
Comment 1 Jim Melton 2005-09-20 09:54:16 UTC
Many thanks for your comment.  We will correct this error in the XQueryX
stylesheet right away. 
Comment 2 Jim Melton 2005-09-26 21:04:10 UTC
We have made the change that you suggested. 

This is the official WG response. 

Please let us know if you agree with this resolution of your issue, by adding a
comment to the issue record and changing the Status of the issue to Closed. Or,
if you do not agree with this resolution, please add a comment explaining why.
If you wish to appeal the WG's decision to the Director, then also change the
Status of the record to Reopened. If you wish to record your dissent, but do not
wish to appeal the decision to the Director, then change the Status of the
record to Closed. If we do not hear from you in the next two weeks, we will
assume you agree with the WG decision.
Comment 3 David Carlisle 2005-09-26 22:49:14 UTC
thanks