3d0763fe5d507f602299ad5fe507e46bd46835fd
[platform/core/appfw/vconf-internal-keys.git] / create_init_script.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4 <xsl:output method="text" version="1.0" encoding="UTF-8" indent="yes"/>
5 <xsl:strip-space elements="*"/>
6 <xsl:template match="/">
7   <xsl:apply-templates/>
8 </xsl:template>
9 <xsl:template match="vconfkey">
10 <xsl:choose>
11         <xsl:when test="./script">
12 <xsl:value-of select="script"/>
13   </xsl:when>
14 </xsl:choose>
15 </xsl:template>
16 </xsl:stylesheet>