summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-04-29 19:49:07 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-04-29 19:49:07 (GMT)
commit4b4489579d31a13b1c4581ad1fe3d7c491fb5816 (patch)
tree24a35f6ee59ee522eff75d7d9508aca73dd67ab2 /templates
parent3735693b80b6785f9cc16c4e559ca54be8cfbffe (diff)
parent276a6d144f42979d498c155eebab869bca44f754 (diff)
downloadDoxygen-4b4489579d31a13b1c4581ad1fe3d7c491fb5816.zip
Doxygen-4b4489579d31a13b1c4581ad1fe3d7c491fb5816.tar.gz
Doxygen-4b4489579d31a13b1c4581ad1fe3d7c491fb5816.tar.bz2
Merge branch 'feature/bug_xml_settings' of https://github.com/albert-github/doxygen into albert-github-feature/bug_xml_settings
Diffstat (limited to 'templates')
-rwxr-xr-xtemplates/xml/doxyfile.xsd53
1 files changed, 53 insertions, 0 deletions
diff --git a/templates/xml/doxyfile.xsd b/templates/xml/doxyfile.xsd
new file mode 100755
index 0000000..71b9851
--- /dev/null
+++ b/templates/xml/doxyfile.xsd
@@ -0,0 +1,53 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
+
+ <xsd:element name="doxyfile" type="DoxygenFileType"/>
+
+ <xsd:complexType name="DoxygenFileType">
+ <xsd:sequence>
+ <xsd:element name="option" type="OptionType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ <xsd:attribute name="version" type="xsd:string" use="required"/>
+ <xsd:attribute ref="xml:lang" use="required"/>
+ </xsd:complexType>
+
+ <xsd:complexType name="OptionType">
+ <xsd:sequence>
+ <xsd:element name="value" type="valueType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ <xsd:attribute name="id" type="xsd:string" use="required"/>
+ <xsd:attribute name="default" type="defaultType" use="required"/>
+ <xsd:attribute name="type" type="typeType" use="required"/>
+ </xsd:complexType>
+
+ <xsd:simpleType name="valueType">
+ <xsd:restriction base="xsd:string">
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:simpleType name="defaultType">
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="yes"/>
+ <xsd:enumeration value="no"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:simpleType name="typeType">
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="int"/>
+ <xsd:enumeration value="bool"/>
+ <xsd:enumeration value="string"/>
+ <xsd:enumeration value="stringlist"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+</xsd:schema>
+
+<!--
+<?xml version='1.0' encoding='UTF-8' standalone='no'?>
+<doxyfile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="doxyfile.xsd" version="1.9.2" xml:lang="en-US">
+ <option id='DOXYFILE_ENCODING' default='yes' type='string'><![CDATA[UTF-8]]></option>
+<value><![CDATA[d:/Programs/CGAL/cgal_fork/AABB_tree/doc/AABB_tree/]]></value>
+-->
+