[Bug 22277] fn/format-number.xml not valid according to catalog-schema.xsd

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

O'Neil Delpratt <oneil@saxonica.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
                 CC|                            |oneil@saxonica.com
         Resolution|---                         |FIXED

--- Comment #3 from O'Neil Delpratt <oneil@saxonica.com> ---
These validation errors occur as the result of a bug in Xerces, which we cannot
do anything about. I have committed a work-around in the catalog schema.

For the simple type 'one-char' we have the restriction:

        <xs:restriction base="xs:string">
            <xs:length value="1"/>
        </xs:restriction>

This we change to using a pattern whcih seems to work, please see the
following:

        <xs:restriction base="xs:string">
            <xs:pattern value="." />
        </xs:restriction>

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Monday, 10 June 2013 14:01:52 UTC