Remove read privilege of accessibility atspi
[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[@model=$target]">
12 <xsl:value-of select="script[@model=$target]"/>
13   </xsl:when>
14   <xsl:otherwise>
15 <xsl:value-of select="script"/>
16   </xsl:otherwise>
17 </xsl:choose>
18 </xsl:template>
19 </xsl:stylesheet>