Skip to content

Commit

Permalink
Add (undocumented) attributes to <inputs>
Browse files Browse the repository at this point in the history
Add attributes 'action', 'check_values', 'method' and 'target'
to <inputs>.
Add relevant Target datatype.
  • Loading branch information
JeanFred authored and jmchilton committed Sep 15, 2016
1 parent e19f1fb commit 836aff4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions galaxy.xsd
Expand Up @@ -92,6 +92,10 @@
<xs:sequence>
<xs:group ref="InputElement" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="action" type="xs:string" /> <!-- undocumented -->
<xs:attribute name="check_values" type="xs:boolean" /> <!-- undocumented -->
<xs:attribute name="method" type="URLmethodType" /> <!-- undocumented -->
<xs:attribute name="target" type="TargetType" /> <!-- undocumented -->
</xs:complexType>

<xs:group name="InputElement">
Expand Down Expand Up @@ -407,6 +411,13 @@
</xs:restriction>
</xs:simpleType>

<xs:simpleType name="TargetType">
<xs:restriction base="xs:string">
<xs:enumeration value="_top" />
<xs:enumeration value="_parent" />
</xs:restriction>
</xs:simpleType>

<xs:simpleType name="MethodType">
<xs:restriction base="xs:string">
<xs:enumeration value="basic" />
Expand Down

0 comments on commit 836aff4

Please sign in to comment.