diff options
Diffstat (limited to 'addons/xbmc.python/contextitem.xsd')
-rw-r--r-- | addons/xbmc.python/contextitem.xsd | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/addons/xbmc.python/contextitem.xsd b/addons/xbmc.python/contextitem.xsd new file mode 100644 index 0000000..cc9bbcb --- /dev/null +++ b/addons/xbmc.python/contextitem.xsd @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE schema PUBLIC "-//W3C//DTD XMLSCHEMA 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd"> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> + <xs:element name="extension"> + <xs:complexType> + <xs:sequence> + <xs:element name="menu" type="menuType" minOccurs="1" maxOccurs="unbounded"/> + </xs:sequence> + <xs:attribute name="point" type="pointIdentifier" use="required"/> + <xs:attribute name="id" type="menuIdentifier"/> + </xs:complexType> + </xs:element> + <xs:complexType name="itemType"> + <xs:all> + <xs:element name="label" type="xs:string" minOccurs="1"/> + <xs:element name="visible" type="xs:string" minOccurs="1"/> + </xs:all> + <xs:attribute name="library" type="xs:string" use="required"/> + </xs:complexType> + <xs:complexType name="menuType"> + <xs:choice maxOccurs="unbounded"> + <xs:element name="label" type="xs:string" minOccurs="0"/> + <xs:element name="item" type="itemType" minOccurs="0" maxOccurs="unbounded"/> + <xs:element name="menu" type="menuType" minOccurs="0" maxOccurs="unbounded"/> + </xs:choice> + <xs:attribute name="id" type="xs:string"/> + </xs:complexType> + <xs:simpleType name="pointIdentifier"> + <xs:restriction base="xs:string"> + <xs:pattern value="kodi\.context\.item"/> + </xs:restriction> + </xs:simpleType> + <xs:simpleType name="menuIdentifier"> + <xs:restriction base="xs:string"> + <xs:pattern value="kodi\.core\.(manage|main)"/> + </xs:restriction> + </xs:simpleType> +</xs:schema> |