[ scummvm-Bugs-2596330 ] VKEYBD: Invalid XML in vkeybd.xml / XML parser too limited
SourceForge.net
noreply at sourceforge.net
Fri Feb 13 16:53:39 CET 2009
Bugs item #2596330, was opened at 2009-02-13 16:53
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=418820&aid=2596330&group_id=37116
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Max Horn (fingolfin)
Assigned to: Nobody/Anonymous (nobody)
Summary: VKEYBD: Invalid XML in vkeybd.xml / XML parser too limited
Initial Comment:
In current SVN, the vkeybd.xml file (in backends/vkeybd/vkeybd.zip) contains invalid XML. Specifically, it contains attributes like these:
target="&"
target="<"
Neither is allowed, see <http://www.w3.org/TR/2004/REC-xml-20040204/#syntax>. Correct would be:
target="&"
target="<"
but our "XML" parser doesn't support these (mandatory to support for a true XML parser, which ours of course is not) entities.
Possible fixes:
* Fix the XML file then add support for the mandatory XML entities: & < > ' "
* switch to a non-XML file (the image map data could still be generated from a HTML imagemap as source, using a simple perl/python/whatever script).
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=418820&aid=2596330&group_id=37116
More information about the Scummvm-tracker
mailing list