Modification of widgets.tizen.xsd for splash screen support.
authorTaejeong Lee <taejeong.lee@samsung.com>
Fri, 14 Jun 2013 05:25:00 +0000 (14:25 +0900)
committerTaejeong Lee <taejeong.lee@samsung.com>
Fri, 14 Jun 2013 05:31:58 +0000 (14:31 +0900)
[Issue#] N/A
[Problem] N/A
[Cause] N/A
[Solution] Modification of widgets.tizen.xsd for splash screen support.

Change-Id: I5e3fe9011c3d9922a36391ad212c0927378610a0

configuration/config.xml
configuration/validate-config.xml.sh [new file with mode: 0755]
configuration/widgets.tizen.xsd

index 8b9fb6a..9407c0a 100644 (file)
@@ -40,4 +40,6 @@
    </tizen:box-content>
  </tizen:app-widget>
 
+  <!-- splash screen -->
+  <tizen:splash src="splash.jpg" />
 </widget>
diff --git a/configuration/validate-config.xml.sh b/configuration/validate-config.xml.sh
new file mode 100755 (executable)
index 0000000..a242910
--- /dev/null
@@ -0,0 +1,2 @@
+#!/bin/sh
+xmllint --schema widgets.xsd config.xml
index e1b15d2..24dee00 100644 (file)
             <xs:attribute name="value" type="xs:string" use="required"/>
         </xs:complexType>
     </xs:element>
+
+    <xs:element name="splash">
+        <xs:complexType>
+            <xs:attribute name="src" type="xs:string" use="required"/>
+        </xs:complexType>
+    </xs:element>
 </xs:schema>