https://bugzilla.novell.com/show_bug.cgi?id=449512
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=449512#c4 --- Comment #4 from Atsushi Enomoto <[EMAIL PROTECTED]> 2008-12-09 02:01:25 MST --- Significantly reduced xsd and xml that helps debugging much. xsd: <?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:ndoc-schema" xmlns="urn:ndoc-schema" elementFormDefault="qualified"> <xs:element name="documentation"> <xs:complexType> <xs:choice minOccurs="1" maxOccurs="unbounded"> <xs:any processContents="skip"/> </xs:choice> </xs:complexType> </xs:element> <xs:element name="constructor"> <xs:complexType> <xs:sequence maxOccurs="1" minOccurs="0"> <xs:element ref="documentation" minOccurs="0" maxOccurs="1"/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="ndoc"> <xs:complexType> <xs:sequence> <xs:element name="summary" type="xs:string" minOccurs="0" maxOccurs="1"/> <xs:element ref="documentation" minOccurs="0" maxOccurs="1"/> <xs:element ref="constructor" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> </xs:element> </xs:schema> xml: <ndoc xmlns="urn:ndoc-schema"> <documentation> <summary> Defining and using custom attributes </summary> </documentation> <constructor> <documentation> <summary>Initializes a new instance of the <see cref="T:NDoc3.Test.Attributes.NamespaceDoc" /> class.</summary> </documentation> </constructor> </ndoc> -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
