remove_keys.sh print message and key name
[platform/core/appfw/vconf-internal-keys.git] / test_report.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
5 <xsl:template match="/">
6 <html>
7 <head>
8         <title> Vconf key list </title>
9         <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
10 </head>
11   <body>
12         <H1> vconf key list</H1>
13         <table border="1" style="border-collapse:collapse; border:1px gray solid;">
14         <tr>
15                 <td bgcolor="yellow" align="center"> ID </td>
16                 <td bgcolor="yellow" align="center"> Keyname </td>
17                 <td bgcolor="yellow" align="center"> Model </td>
18                 <td bgcolor="yellow" align="center"> Type </td>
19                 <td bgcolor="yellow" align="center"> Value </td>
20                 <td bgcolor="yellow" align="center"> readPriv </td>
21                 <td bgcolor="yellow" align="center"> writePriv </td>
22                 <td bgcolor="yellow" align="center"> Maintainer </td>
23                 <td bgcolor="yellow" align="center"> Comment </td>
24         </tr>
25   <xsl:apply-templates/>
26         </table>
27   </body>
28   </html>
29 </xsl:template>
30 <xsl:template match="vconfkey">
31         <tr>
32                 <xsl:variable name="hyperlink"><xsl:value-of select="./header"/></xsl:variable>
33                 <td> <a href="../fullsearch/{$hyperlink}-result.txt"><xsl:value-of select="./header"/></a> </td>
34                 <td>  <xsl:value-of select="./@name"/> </td>
35                 <td>  <xsl:value-of select="./@model"/> </td>
36                 <td> <xsl:value-of select="./@type"/> </td>
37                 <td> <xsl:value-of select="./@value"/> </td>
38                 <td> <xsl:value-of select="./@readPriv"/> </td>
39                 <td> <xsl:value-of select="./@writePriv"/> </td>
40                 <td> <xsl:value-of select="./creator"/> </td>
41                 <td> <xsl:value-of select="./comment"/> </td>
42         </tr>
43 </xsl:template>
44 </xsl:stylesheet>