aboutsummaryrefslogtreecommitdiff
path: root/addons/xbmc.gui/skin.xsd
diff options
context:
space:
mode:
authormontellese <montellese@xbmc.org>2014-12-22 00:51:22 +0100
committermontellese <montellese@xbmc.org>2014-12-22 01:05:57 +0100
commitc6373c4213b61bd18779fb4ec01197ba1d73155a (patch)
treef288d163644a383afdd548911cea1159323eacc2 /addons/xbmc.gui/skin.xsd
parent13d5ad1519d4671cdb050df8c949c5b3bbc67f2a (diff)
addons: add "res" element to skin.xsd
Diffstat (limited to 'addons/xbmc.gui/skin.xsd')
-rw-r--r--addons/xbmc.gui/skin.xsd11
1 files changed, 11 insertions, 0 deletions
diff --git a/addons/xbmc.gui/skin.xsd b/addons/xbmc.gui/skin.xsd
index c669367a16..350805725a 100644
--- a/addons/xbmc.gui/skin.xsd
+++ b/addons/xbmc.gui/skin.xsd
@@ -3,6 +3,17 @@
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="extension">
<xs:complexType>
+ <xs:sequence>
+ <xs:element name="res" minOccurs="0" maxOccurs="unbounded">
+ <xs:complexType>
+ <xs:attribute name="width" type="xs:unsignedInt" use="required"/>
+ <xs:attribute name="height" type="xs:unsignedInt" use="required"/>
+ <xs:attribute name="default" type="xs:boolean"/>
+ <xs:attribute name="folder" type="xs:string"/>
+ <xs:attribute name="aspect" type="xs:string"/>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
<xs:attribute name="point" type="xs:string" use="required"/>
<xs:attribute name="id" type="simpleIdentifier"/>
<xs:attribute name="name" type="xs:string"/>