[Bug 18838] [APPLET] encoding becomes version in version declaration

https://www.w3.org/Bugs/Public/show_bug.cgi?id=18838

Andrew Eisenberg <andrew.eisenberg@us.ibm.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |jim.melton@acm.org
         Resolution|FIXED                       |

--- Comment #2 from Andrew Eisenberg <andrew.eisenberg@us.ibm.com> 2012-09-14 19:40:10 UTC ---
I believe that some further work is needed here. The first of these queries:

xquery encoding "utf-8"; 1 eq 1

now generates:

  <xqx:versionDecl>
    <!-- encoding: "utf-8" -->
  </xqx:versionDecl>

which transforms into:

xquery ;
(1 eq 1)

which is invalid.


Possible solutions:

1) our applet should be generate:

  <xqx:versionDecl>
    <xqx:encoding>utf-8</xqx:encoding>
  </xqx:versionDecl>


2) our applet should generate no versionDecl element at all

3) XQueryX should transform this versionDecl element into ""

-- 
Configure bugmail: https://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 Friday, 14 September 2012 19:40:11 UTC