Open GoogleCodeExporter opened 8 years ago
The following XSD:
<xs:annotation>
<xs:documentation><schemadoc:desc>...</schemadoc:desc></xs:documentation>
</xs:annotation>
will come out as valid and permit us to enhance the documentation process.
Original comment by diane_...@hotmail.com
on 18 Aug 2009 at 8:11
annotations are also lost when using jing -s to generate simplified rng.
Including this namespace declaration:
xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
and used thus ...
<element name="production">
<a:annotation>Root element of any TM.</a:annotation>
The annotation is not included in the simplified rng output.
Not to mix issues, but I wonder how much of this is related to namespaces?
<optional>
<ref name="element.crew" v:version="Chg3"/>
<ref name="element.c" v:version="RevA"/>
</optional>
in the simplifed output appears to be transformed to:
<optional>
<group>
<ref name="crew"/>
<ref name="c"/>
</group>
</optional>
Original comment by eileen.k...@gmail.com
on 8 Oct 2010 at 4:01
Original issue reported on code.google.com by
diane_...@hotmail.com
on 18 Aug 2009 at 3:10