[Bug 2255] [xqueryx] moduleDecl lacking a separator

http://www.w3.org/Bugs/Public/show_bug.cgi?id=2255

           Summary: [xqueryx]  moduleDecl lacking a separator
           Product: XPath / XQuery / XSLT
           Version: Last Call drafts
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: XQueryX
        AssignedTo: jim.melton@acm.org
        ReportedBy: davidc@nag.co.uk
         QAContact: public-qt-comments@w3.org


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>

Received on Friday, 16 September 2005 10:53:15 UTC