mirror of
https://github.com/boostorg/boost.git
synced 2025-04-04 21:15:01 +00:00
Make all elements optional
This is so that this schema can be used to validate module markup (such as https://github.com/boostorg/functional/blob/develop/meta/explicit-failures-markup.xml). An alternative solution would be to have a separate schema file for submodules, espcially if the reporting scripts require these elements to be present.
This commit is contained in:
parent
ad0e2990fe
commit
1fbed8e98f
1 changed files with 3 additions and 3 deletions
|
@ -4,9 +4,9 @@
|
|||
<xs:element name="explicit-failures-markup">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="mark-toolset" maxOccurs="unbounded"/>
|
||||
<xs:element ref="library" maxOccurs="unbounded"/>
|
||||
<xs:element ref="note" maxOccurs="unbounded"/>
|
||||
<xs:element ref="mark-toolset" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xs:element ref="library" minOccurs="0" maxOccurs="unbounded"/>
|
||||
<xs:element ref="note" minOccurs="0" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
|
Loading…
Add table
Reference in a new issue