1 | <?xml version="1.0"?>
|
---|
2 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
---|
3 | xmlns:exsl="http://exslt.org/common"
|
---|
4 | extension-element-prefixes="exsl"
|
---|
5 | version="1.0">
|
---|
6 |
|
---|
7 | <!-- XSLT stylesheet to create shell scripts from LFS books. -->
|
---|
8 |
|
---|
9 | <xsl:param name="testsuite" select="0"/>
|
---|
10 |
|
---|
11 | <xsl:template match="/">
|
---|
12 | <xsl:apply-templates select="//sect1"/>
|
---|
13 | </xsl:template>
|
---|
14 |
|
---|
15 | <xsl:template match="sect1">
|
---|
16 | <xsl:if test="count(descendant::screen/userinput) > 0 and
|
---|
17 | count(descendant::screen/userinput) > count(descendant::screen[@role='nodump'])">
|
---|
18 | <!-- The dirs names -->
|
---|
19 | <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
|
---|
20 | <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
|
---|
21 | <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
|
---|
22 | <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
|
---|
23 | <!-- The file names -->
|
---|
24 | <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
|
---|
25 | <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
|
---|
26 | <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
|
---|
27 | <!-- The build order -->
|
---|
28 | <xsl:variable name="position" select="position()"/>
|
---|
29 | <xsl:variable name="order">
|
---|
30 | <xsl:choose>
|
---|
31 | <xsl:when test="string-length($position) = 1">
|
---|
32 | <xsl:text>00</xsl:text>
|
---|
33 | <xsl:value-of select="$position"/>
|
---|
34 | </xsl:when>
|
---|
35 | <xsl:when test="string-length($position) = 2">
|
---|
36 | <xsl:text>0</xsl:text>
|
---|
37 | <xsl:value-of select="$position"/>
|
---|
38 | </xsl:when>
|
---|
39 | <xsl:otherwise>
|
---|
40 | <xsl:value-of select="$position"/>
|
---|
41 | </xsl:otherwise>
|
---|
42 | </xsl:choose>
|
---|
43 | </xsl:variable>
|
---|
44 | <!-- Creating dirs and files -->
|
---|
45 | <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
|
---|
46 | <xsl:text>#!/bin/sh

</xsl:text>
|
---|
47 | <xsl:if test="sect2[@role='installation'] and
|
---|
48 | ancestor::chapter[@id='chapter-temporary-tools']">
|
---|
49 | <xsl:text>cd $PKGDIR &&
</xsl:text>
|
---|
50 | </xsl:if>
|
---|
51 | <xsl:apply-templates select=".//para/userinput | .//screen"/>
|
---|
52 | </exsl:document>
|
---|
53 | </xsl:if>
|
---|
54 | </xsl:template>
|
---|
55 |
|
---|
56 | <xsl:template match="screen">
|
---|
57 | <xsl:if test="child::* = userinput">
|
---|
58 | <xsl:choose>
|
---|
59 | <xsl:when test="@role = 'nodump'"/>
|
---|
60 | <xsl:otherwise>
|
---|
61 | <xsl:apply-templates select="userinput" mode="screen"/>
|
---|
62 | <xsl:if test="position() != last() and
|
---|
63 | not(contains(string(),'EOF'))">
|
---|
64 | <xsl:text> &&</xsl:text>
|
---|
65 | </xsl:if>
|
---|
66 | <xsl:text>
</xsl:text>
|
---|
67 | </xsl:otherwise>
|
---|
68 | </xsl:choose>
|
---|
69 | </xsl:if>
|
---|
70 | </xsl:template>
|
---|
71 |
|
---|
72 | <xsl:template match="para/userinput">
|
---|
73 | <xsl:if test="$testsuite = '0' and (contains(string(),'test') or
|
---|
74 | contains(string(),'check'))">
|
---|
75 | <xsl:apply-templates/>
|
---|
76 | <xsl:text> &&
</xsl:text>
|
---|
77 | </xsl:if>
|
---|
78 | </xsl:template>
|
---|
79 |
|
---|
80 | <xsl:template match="userinput" mode="screen">
|
---|
81 | <xsl:apply-templates/>
|
---|
82 | </xsl:template>
|
---|
83 |
|
---|
84 | <xsl:template match="replaceable">
|
---|
85 | <xsl:text>**EDITME</xsl:text>
|
---|
86 | <xsl:apply-templates/>
|
---|
87 | <xsl:text>EDITME**</xsl:text>
|
---|
88 | </xsl:template>
|
---|
89 |
|
---|
90 | </xsl:stylesheet>
|
---|