aboutsummaryrefslogtreecommitdiffstats
path: root/stylesheets/xhtml/lfs-mixed.xsl
blob: 16942be9f5830ec4edf0d84791a895f8eff67e3e (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
<?xml version='1.0' encoding='ISO-8859-1'?>

<!-- Version 0.9 - Manuel Canales Esparcia <macana@lfs-es.org> -->

<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">
    	<h3>
      	<xsl:value-of select="title"/>
    	</h3>
    </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>