aboutsummaryrefslogtreecommitdiffstats
path: root/tools/eclipse/config_wizard/resources/gencfg/schema/common/config_settings.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eclipse/config_wizard/resources/gencfg/schema/common/config_settings.xsd')
-rw-r--r--tools/eclipse/config_wizard/resources/gencfg/schema/common/config_settings.xsd36
1 files changed, 36 insertions, 0 deletions
diff --git a/tools/eclipse/config_wizard/resources/gencfg/schema/common/config_settings.xsd b/tools/eclipse/config_wizard/resources/gencfg/schema/common/config_settings.xsd
new file mode 100644
index 000000000..45d228142
--- /dev/null
+++ b/tools/eclipse/config_wizard/resources/gencfg/schema/common/config_settings.xsd
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema elementFormDefault="qualified"
+ xmlns:xs="http://www.w3.org/2001/XMLSchema">
+
+ <xs:complexType name="ConfigurationSettingsType">
+ <xs:sequence>
+ <xs:element name="templates_path" minOccurs="1"
+ maxOccurs="1">
+ <xs:annotation>
+ <xs:documentation>Templates resources associated to the configuration.</xs:documentation>
+ </xs:annotation>
+ <xs:simpleType>
+ <xs:restriction base="xs:string">
+ <xs:minLength value="1"></xs:minLength>
+ <xs:whiteSpace value="collapse"></xs:whiteSpace>
+ <xs:pattern value="[\w\d_/.]+"></xs:pattern>
+ </xs:restriction>
+ </xs:simpleType>
+ </xs:element>
+ <xs:element name="output_path" maxOccurs="1"
+ minOccurs="1">
+ <xs:annotation>
+ <xs:documentation>Output directory relative to the configuration file.</xs:documentation>
+ </xs:annotation>
+ <xs:simpleType>
+ <xs:restriction base="xs:string">
+ <xs:minLength value="1"></xs:minLength>
+ <xs:whiteSpace value="collapse"></xs:whiteSpace>
+ <xs:pattern value="[\w\d_/.]+"></xs:pattern>
+ </xs:restriction>
+ </xs:simpleType>
+ </xs:element>
+ </xs:sequence>
+ </xs:complexType>
+
+</xs:schema>