diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-09-28 18:26:46 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-09-28 18:26:46 (GMT) |
commit | f08cd6363f5da22b2452d4f937fef68220fcb081 (patch) | |
tree | 01f67df4c4005875230919c5f826290b6a17a2e4 /src/compound_xsd.h | |
parent | 8d674d5bacfc207f4b630262c01ba4bad38b0c82 (diff) | |
download | Doxygen-f08cd6363f5da22b2452d4f937fef68220fcb081.zip Doxygen-f08cd6363f5da22b2452d4f937fef68220fcb081.tar.gz Doxygen-f08cd6363f5da22b2452d4f937fef68220fcb081.tar.bz2 |
Release-1.3.8-20040928
Diffstat (limited to 'src/compound_xsd.h')
-rw-r--r-- | src/compound_xsd.h | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/src/compound_xsd.h b/src/compound_xsd.h index f7a6381..a938f18 100644 --- a/src/compound_xsd.h +++ b/src/compound_xsd.h @@ -216,12 +216,12 @@ "\n" " <xsd:complexType name=\"linkType\">\n" " <xsd:attribute name=\"refid\" type=\"xsd:string\" />\n" -" <xsd:attribute name=\"external\" type=\"DoxBool\" use=\"optional\"/>\n" +" <xsd:attribute name=\"external\" type=\"xsd:string\" use=\"optional\"/>\n" " </xsd:complexType>\n" "\n" " <xsd:complexType name=\"listingType\">\n" " <xsd:sequence>\n" -" <xsd:element name=\"codeline\" type=\"codelineType\" maxOccurs=\"unbounded\" />\n" +" <xsd:element name=\"codeline\" type=\"codelineType\" minOccurs=\"0\" maxOccurs=\"unbounded\" />\n" " </xsd:sequence>\n" " </xsd:complexType>\n" "\n" @@ -528,12 +528,25 @@ " <xsd:attribute name=\"langid\" type=\"xsd:string\" /> \n" " </xsd:complexType>\n" "\n" -" <xsd:group name=\"docParamListGroup\">\n" +" <xsd:complexType name=\"docParamListType\">\n" " <xsd:sequence>\n" -" <xsd:element name=\"parametername\" type=\"docParamName\" minOccurs=\"0\" maxOccurs=\"unbounded\" />\n" +" <xsd:element name=\"parameteritem\" type=\"docParamListItem\" minOccurs=\"0\" maxOccurs=\"unbounded\" />\n" +" </xsd:sequence>\n" +" <xsd:attribute name=\"kind\" type=\"DoxParamListKind\" /> \n" +" </xsd:complexType>\n" +"\n" +" <xsd:complexType name=\"docParamListItem\">\n" +" <xsd:sequence>\n" +" <xsd:element name=\"parameternamelist\" type=\"docParamNameList\" minOccurs=\"0\" maxOccurs=\"unbounded\" />\n" " <xsd:element name=\"parameterdescription\" type=\"descriptionType\" />\n" " </xsd:sequence>\n" -" </xsd:group>\n" +" </xsd:complexType>\n" +"\n" +" <xsd:complexType name=\"docParamNameList\">\n" +" <xsd:sequence>\n" +" <xsd:element name=\"parametername\" type=\"docParamName\" minOccurs=\"0\" maxOccurs=\"unbounded\" />\n" +" </xsd:sequence>\n" +" </xsd:complexType>\n" "\n" " <xsd:complexType name=\"docParamName\">\n" " <xsd:simpleContent>\n" @@ -543,13 +556,6 @@ " </xsd:simpleContent>\n" " </xsd:complexType>\n" "\n" -" <xsd:complexType name=\"docParamListType\">\n" -" <xsd:sequence>\n" -" <xsd:group ref=\"docParamListGroup\" maxOccurs=\"unbounded\" />\n" -" </xsd:sequence>\n" -" <xsd:attribute name=\"kind\" type=\"DoxParamListKind\" /> \n" -" </xsd:complexType>\n" -"\n" " <xsd:complexType name=\"docXRefSectType\">\n" " <xsd:sequence>\n" " <xsd:element name=\"xreftitle\" type=\"xsd:string\" minOccurs=\"0\" maxOccurs=\"unbounded\" />\n" |