Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…0-554d-0410-b580-99e487e6eeb2
  • Loading branch information
rlaemmel committed Aug 4, 2008
1 parent ce197e1 commit ea4d301
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions shared/xsd/lcf.xsd
Expand Up @@ -45,11 +45,15 @@
<xsd:complexType name="shortcuttype">
<xsd:sequence>
<xsd:element name="name" type="xsd:string" />
<xsd:element name="definition" type="lcf:mixedwithexpands"/>
<xsd:element name="definition">
<xsd:complexType mixed="true">
<group ref="lcf:mixedwithexpands"/>
<xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>

<xsd:complexType name="mixedwithexpands" mixed="true">
<xsd:group name="mixedwithexpands">
<xsd:sequence>
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="expand" type="xsd:string" />
Expand Down Expand Up @@ -85,14 +89,12 @@
</xsd:element>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
</xsd:group>

<xsd:complexType name="commandtype" mixed="true">
<xsd:complexContent>
<xsd:extension base="lcf:mixedwithexpands">
<xsd:attribute name="err" type="xsd:string" use="optional" />
<xsd:attribute name="out" type="xsd:string" use="optional" />
</xsd:extension>
<group ref="lcf:mixedwithexpands"/>
<xsd:attribute name="err" type="xsd:string" use="optional" />
<xsd:attribute name="out" type="xsd:string" use="optional" />
</xsd:complexContent>
</xsd:complexType>

Expand All @@ -103,7 +105,11 @@
<xsd:element name="arguments">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="unbounded" name="argument" type="lcf:mixedwithexpands"/>
<xsd:element maxOccurs="unbounded" name="argument">
<xsd:complexType mixed="true">
<group ref="lcf:mixedwithexpands"/>
<xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
Expand Down

0 comments on commit ea4d301

Please sign in to comment.