mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

* xmlschemas.c xmlschemastypes.c include/libxml/xmlerror.h include/libxml/schemasInternals.h include/libxml/xmlschemastypes.h: applied Schemas patches from Kasimier Buchcik, there is still one open issue about referencing freed memory. * test/schemas/* result/schemas/*: updated with new tests from Kasimier Daniel
31 lines
585 B
XML
31 lines
585 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<schema xmlns="http://www.w3.org/2001/XMLSchema"
|
|
targetNamespace="http://FOO" xmlns:foo="http://FOO">
|
|
|
|
<element name="foo" type="foo:type.A"/>
|
|
|
|
<simpleType name="type.A">
|
|
<restriction>
|
|
<simpleType>
|
|
<list itemType="integer"/>
|
|
</simpleType>
|
|
<length value="3"/>
|
|
</restriction>
|
|
</simpleType>
|
|
|
|
<!--restriction base="foo:type.base.A">
|
|
|
|
</restriction-->
|
|
|
|
<simpleType name="type.base.A">
|
|
<restriction>
|
|
<simpleType>
|
|
<list itemType="integer"/>
|
|
</simpleType>
|
|
</restriction>
|
|
</simpleType>
|
|
|
|
|
|
|
|
</schema>
|