2 <!DOCTYPE xsl:stylesheet [
3 <!ENTITY % general-entities SYSTEM
"FAKEDIR/general.ent">
9 <xsl:stylesheet xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform"
10 xmlns:
exsl=
"http://exslt.org/common"
11 extension-element-prefixes=
"exsl"
14 <!-- XSLT stylesheet to create shell scripts from CLFS2 books. -->
16 <!-- Install vim-lang package? -->
17 <xsl:param name=
"vim-lang" select=
"y"/>
20 <xsl:param name=
"timezone" select=
"GMT"/>
23 <xsl:param name=
"page" select=
"letter"/>
25 <!-- Locale settings -->
26 <xsl:param name=
"lang" select=
"C"/>
28 <xsl:template match=
"/">
29 <xsl:apply-templates select=
"//sect1"/>
32 <xsl:template match=
"sect1">
34 <xsl:when test=
"../@id='chapter-partitioning' or
35 ../@id='chapter-getting-materials' or
36 ../@id='chapter-final-preps'"/>
38 <xsl:if test=
"count(descendant::screen/userinput) > 0 and
39 count(descendant::screen/userinput) >
40 count(descendant::screen[@role='nodump'])">
41 <!-- The dirs names -->
42 <xsl:variable name=
"pi-dir" select=
"../processing-instruction('dbhtml')"/>
43 <xsl:variable name=
"pi-dir-value" select=
"substring-after($pi-dir,'dir=')"/>
44 <xsl:variable name=
"quote-dir" select=
"substring($pi-dir-value,1,1)"/>
45 <xsl:variable name=
"dirname" select=
"substring-before(substring($pi-dir-value,2),$quote-dir)"/>
46 <!-- The file names -->
47 <xsl:variable name=
"pi-file" select=
"processing-instruction('dbhtml')"/>
48 <xsl:variable name=
"pi-file-value" select=
"substring-after($pi-file,'filename=')"/>
49 <xsl:variable name=
"filename" select=
"substring-before(substring($pi-file-value,2),'.html')"/>
50 <!-- The build order -->
51 <xsl:variable name=
"position" select=
"position()"/>
52 <xsl:variable name=
"order">
54 <xsl:when test=
"string-length($position) = 1">
55 <xsl:text>00</xsl:text>
56 <xsl:value-of select=
"$position"/>
58 <xsl:when test=
"string-length($position) = 2">
59 <xsl:text>0</xsl:text>
60 <xsl:value-of select=
"$position"/>
63 <xsl:value-of select=
"$position"/>
67 <!-- Creating dirs and files -->
68 <exsl:document href=
"{$dirname}/{$order}-{$filename}" method=
"text">
69 <xsl:text>#!/bin/bash

set +h

</xsl:text>
70 <xsl:if test=
"not(@id='ch-system-stripping')">
71 <xsl:text>set -e

</xsl:text>
73 <xsl:text>
</xsl:text>
74 <xsl:if test=
"sect2[@role='installation']">
75 <xsl:text>cd $PKGDIR

</xsl:text>
76 <xsl:if test=
"@id='ch-system-vim' and $vim-lang = 'y'">
77 <xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=
1
</xsl:text>
80 <xsl:apply-templates select=
".//para/userinput | .//screen"/>
81 <xsl:text>exit
</xsl:text>
88 <xsl:template match=
"screen">
89 <xsl:if test=
"child::* = userinput and not(@role = 'nodump')">
90 <xsl:apply-templates select=
"userinput" mode=
"screen"/>
94 <xsl:template match=
"para/userinput"/>
96 <xsl:template match=
"userinput" mode=
"screen">
98 <!-- Estandarized package formats -->
99 <xsl:when test=
"contains(string(),'tar.gz')">
100 <xsl:value-of select=
"substring-before(string(),'tar.gz')"/>
101 <xsl:text>tar.*
</xsl:text>
102 <xsl:value-of select=
"substring-after(string(),'tar.gz')"/>
103 <xsl:text>
</xsl:text>
105 <!-- Setting $LANG for /etc/profile -->
106 <xsl:when test=
"ancestor::sect1[@id='ch-scripts-profile'] and
107 contains(string(),'export LANG=')">
108 <xsl:value-of select=
"substring-before(string(),'export LANG=')"/>
109 <xsl:text>export LANG=
</xsl:text>
110 <xsl:value-of select=
"$lang"/>
111 <xsl:value-of select=
"substring-after(string(),'charmap]')"/>
112 <xsl:text>
</xsl:text>
114 <!-- Compile the keymap into the kernel has been disabled -->
115 <xsl:when test=
"contains(string(),'defkeymap')"/>
116 <!-- Copying the kernel config file -->
117 <xsl:when test=
"string() = 'make mrproper'">
118 <xsl:text>make mrproper

</xsl:text>
119 <xsl:text>cp -v ../kernel-config .config

</xsl:text>
121 <!-- No interactive commands are needed if the .config file is the proper one -->
122 <xsl:when test=
"contains(string(),'menuconfig')"/>
123 <!-- Don't stop on strip run -->
124 <xsl:when test=
"contains(string(),'strip ')">
125 <xsl:apply-templates/>
126 <xsl:text> || true

</xsl:text>
128 <!-- The rest of commands -->
130 <xsl:apply-templates/>
131 <xsl:text>
</xsl:text>
136 <xsl:template match=
"replaceable">
138 <xsl:when test=
"ancestor::sect1[@id='ch-cross-tools-glibc']">
139 <xsl:value-of select=
"$timezone"/>
141 <xsl:when test=
"ancestor::sect1[@id='ch-cross-tools-groff'] or
142 ancestor::sect1[@id='ch-system-groff']">
143 <xsl:value-of select=
"$page"/>
146 <xsl:text>**EDITME
</xsl:text>
147 <xsl:apply-templates/>
148 <xsl:text>EDITME**
</xsl:text>