Skip to content

Commit

Permalink
Added version attribute to schemas. refs #8221
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartcampbell committed Oct 28, 2013
1 parent b70f3c2 commit d03a0df
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Code/Mantid/instrument/Schema/FacilitiesSchema.xsd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" attributeFormDefault="unqualified" elementFormDefault="qualified"
xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0">
<xs:element name="facilities">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
Expand Down Expand Up @@ -100,4 +101,4 @@
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
</xs:schema>
2 changes: 1 addition & 1 deletion Code/Mantid/instrument/Schema/GroupingSchema.xsd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0">
<xs:element name ="detector-grouping">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
Expand Down
1 change: 1 addition & 0 deletions Code/Mantid/instrument/Schema/IDFSchema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<xs:schema attributeFormDefault="unqualified"
elementFormDefault="qualified"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
version="1.0"
>
<!--Define customDate Type-->
<xs:simpleType name="customDate">
Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/instrument/Schema/ParameterFileSchema.xsd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0">


<!-- Define Cartesian Coordinates Attribute Group-->
Expand Down

0 comments on commit d03a0df

Please sign in to comment.