diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-06-24 10:55:27 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-06-24 10:55:27 +0200 |
commit | 05d555bdd35332c1b2b45c9261a3c2ace3888591 (patch) | |
tree | 3f9e9abdc15d98752aae38ff22921b80fe4c564d /plugin.xsd | |
parent | 0885d993b40c92d86a61e3952c9df6c00578bfce (diff) | |
download | portato-05d555bdd35332c1b2b45c9261a3c2ace3888591.tar.gz portato-05d555bdd35332c1b2b45c9261a3c2ace3888591.tar.bz2 portato-05d555bdd35332c1b2b45c9261a3c2ace3888591.zip |
Removed frontend tag; added dependencies tag
Diffstat (limited to '')
-rw-r--r-- | plugin.xsd | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -6,7 +6,13 @@ <xs:element name="name" type="string" /> <xs:element name="author" type="string" /> <xs:element name="import" type="importString" minOccurs="0"/> - <xs:element name="frontends" type="stringList" minOccurs="0" /> + <xs:element name="dependencies" minOccurs="0"> + <xs:complexType> + <xs:sequence> + <xs:element name="dependency" type="string" maxOccurs="unbounded" /> + </xs:sequence> + </xs:complexType> + </xs:element> <xs:element name="hooks" minOccurs="0"> <xs:complexType> <xs:sequence> @@ -78,12 +84,4 @@ <xs:minLength value="1" /> </xs:restriction> </xs:simpleType> - <xs:simpleType name="_stringList"> - <xs:list itemType="string"/> - </xs:simpleType> - <xs:simpleType name="stringList"> - <xs:restriction base="_stringList"> - <xs:minLength value="1" /> - </xs:restriction> - </xs:simpleType> </xs:schema> |