blob: d8f7cf64c392e19839df4175190c1eca83f72091 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?xml version='1.0' encoding='ISO-8859-1'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
version="1.0">
<!-- screen -->
<xsl:template match="screen">
<xsl:choose>
<!-- Temporally hack -->
<xsl:when test="child::* = userinput">
<pre class="{name(.)}">
<kbd class="command">
<xsl:value-of select="."/>
</kbd>
</pre>
</xsl:when>
<xsl:otherwise>
<pre class="{name(.)}">
<xsl:apply-templates/>
</pre>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- variablelist -->
<xsl:template match="variablelist">
<div class="{name(.)}">
<xsl:if test="title">
<xsl:choose>
<xsl:when test="@role = 'materials'">
<h3>
<xsl:value-of select="title"/>
</h3>
</xsl:when>
<xsl:otherwise>
<h4>
<xsl:value-of select="title"/>
</h4>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<dl>
<xsl:if test="@role">
<xsl:attribute name="class">
<xsl:value-of select="@role"/>
</xsl:attribute>
</xsl:if>
<xsl:apply-templates select="varlistentry"/>
</dl>
</div>
</xsl:template>
</xsl:stylesheet>
|