|
|
@@ -1,70 +0,0 @@
|
|
1
|
|
-<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
|
-<!--
|
|
3
|
|
-
|
|
4
|
|
--->
|
|
5
|
|
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
|
|
6
|
|
-<xsl:output method ="html"/>
|
|
7
|
|
- <xsl:template match="/">
|
|
8
|
|
- <html>
|
|
9
|
|
- <body>
|
|
10
|
|
- <xsl:apply-templates select="PrefValues" />
|
|
11
|
|
- </body>
|
|
12
|
|
- </html>
|
|
13
|
|
- </xsl:template>
|
|
14
|
|
-
|
|
15
|
|
- <xsl:template match="Pref">
|
|
16
|
|
- <p>
|
|
17
|
|
- <xsl:text>Location: </xsl:text><xsl:value-of select="@Application"/> <xsl:text>; </xsl:text> <xsl:value-of select="@Category"/> <xsl:text>; </xsl:text> <xsl:value-of select="@Tab"/><br/>
|
|
18
|
|
- <xsl:text>Setting: </xsl:text><xsl:value-of select="@title"/><br/>
|
|
19
|
|
- <xsl:choose>
|
|
20
|
|
- <xsl:when test="contains(@name,'_EU')">
|
|
21
|
|
- <xsl:text>Applies to: English</xsl:text><br/>
|
|
22
|
|
- </xsl:when>
|
|
23
|
|
- <xsl:when test="contains(@name,'_MU')">
|
|
24
|
|
- <xsl:text>Applies to: Metric</xsl:text><br/>
|
|
25
|
|
- </xsl:when>
|
|
26
|
|
- <xsl:when test="contains(@name,'_UNX')">
|
|
27
|
|
- <xsl:text>Applies to: Unix</xsl:text><br/>
|
|
28
|
|
- </xsl:when>
|
|
29
|
|
- <xsl:when test="contains(@name,'_WIN')">
|
|
30
|
|
- <xsl:text>Applies to: Windows</xsl:text><br/>
|
|
31
|
|
- </xsl:when>
|
|
32
|
|
- </xsl:choose>
|
|
33
|
|
-
|
|
34
|
|
- <xsl:text> Setting unique identifier: </xsl:text><xsl:value-of select="@name"/><br/>
|
|
35
|
|
- <xsl:text>Value: </xsl:text><xsl:value-of select="@displayValue"/> <br/>
|
|
36
|
|
- <xsl:choose>
|
|
37
|
|
- <xsl:when test="../@defaultLockStatus='unlocked'">
|
|
38
|
|
- <xsl:choose>
|
|
39
|
|
- <xsl:when test="@locked">
|
|
40
|
|
- <xsl:text>Locked: yes</xsl:text><br/>
|
|
41
|
|
- </xsl:when>
|
|
42
|
|
- <xsl:otherwise >
|
|
43
|
|
- <xsl:text>Locked: no </xsl:text> <br/>
|
|
44
|
|
- </xsl:otherwise>
|
|
45
|
|
- </xsl:choose>
|
|
46
|
|
-
|
|
47
|
|
- </xsl:when>
|
|
48
|
|
- <xsl:when test="../@defaultLockStatus='locked'">
|
|
49
|
|
- <xsl:choose>
|
|
50
|
|
- <xsl:when test="@locked">
|
|
51
|
|
- <xsl:text>Locked: no</xsl:text><br/>
|
|
52
|
|
- </xsl:when>
|
|
53
|
|
- <xsl:otherwise >
|
|
54
|
|
- <xsl:text>Locked: yes</xsl:text> <br/>
|
|
55
|
|
- </xsl:otherwise>
|
|
56
|
|
- </xsl:choose>
|
|
57
|
|
-
|
|
58
|
|
- </xsl:when>
|
|
59
|
|
-
|
|
60
|
|
- </xsl:choose>
|
|
61
|
|
-
|
|
62
|
|
-
|
|
63
|
|
- <xsl:text>Set on: </xsl:text><xsl:value-of select="@modified"/><br/>
|
|
64
|
|
- <xsl:apply-templates/>
|
|
65
|
|
- </p>
|
|
66
|
|
- </xsl:template>
|
|
67
|
|
- <xsl:template match="UserComment">
|
|
68
|
|
- <xsl:text>User Comment: </xsl:text> <xsl:value-of select="."/>
|
|
69
|
|
- </xsl:template>
|
|
70
|
|
-</xsl:stylesheet>
|