diff options
Diffstat (limited to 'src/compound.xsd')
-rw-r--r-- | src/compound.xsd | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/src/compound.xsd b/src/compound.xsd index c35c917..bdbf498 100644 --- a/src/compound.xsd +++ b/src/compound.xsd @@ -216,12 +216,12 @@ <xsd:complexType name="linkType"> <xsd:attribute name="refid" type="xsd:string" /> - <xsd:attribute name="external" type="DoxBool" use="optional"/> + <xsd:attribute name="external" type="xsd:string" use="optional"/> </xsd:complexType> <xsd:complexType name="listingType"> <xsd:sequence> - <xsd:element name="codeline" type="codelineType" maxOccurs="unbounded" /> + <xsd:element name="codeline" type="codelineType" minOccurs="0" maxOccurs="unbounded" /> </xsd:sequence> </xsd:complexType> @@ -528,12 +528,25 @@ <xsd:attribute name="langid" type="xsd:string" /> </xsd:complexType> - <xsd:group name="docParamListGroup"> + <xsd:complexType name="docParamListType"> <xsd:sequence> - <xsd:element name="parametername" type="docParamName" minOccurs="0" maxOccurs="unbounded" /> + <xsd:element name="parameteritem" type="docParamListItem" minOccurs="0" maxOccurs="unbounded" /> + </xsd:sequence> + <xsd:attribute name="kind" type="DoxParamListKind" /> + </xsd:complexType> + + <xsd:complexType name="docParamListItem"> + <xsd:sequence> + <xsd:element name="parameternamelist" type="docParamNameList" minOccurs="0" maxOccurs="unbounded" /> <xsd:element name="parameterdescription" type="descriptionType" /> </xsd:sequence> - </xsd:group> + </xsd:complexType> + + <xsd:complexType name="docParamNameList"> + <xsd:sequence> + <xsd:element name="parametername" type="docParamName" minOccurs="0" maxOccurs="unbounded" /> + </xsd:sequence> + </xsd:complexType> <xsd:complexType name="docParamName"> <xsd:simpleContent> @@ -543,13 +556,6 @@ </xsd:simpleContent> </xsd:complexType> - <xsd:complexType name="docParamListType"> - <xsd:sequence> - <xsd:group ref="docParamListGroup" maxOccurs="unbounded" /> - </xsd:sequence> - <xsd:attribute name="kind" type="DoxParamListKind" /> - </xsd:complexType> - <xsd:complexType name="docXRefSectType"> <xsd:sequence> <xsd:element name="xreftitle" type="xsd:string" minOccurs="0" maxOccurs="unbounded" /> |