90 lines
3.3 KiB
XML
90 lines
3.3 KiB
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:exsl="http://exslt.org/common"
|
|
extension-element-prefixes="exsl"
|
|
version="1.0">
|
|
|
|
<!-- XSLT stylesheet to create shell scripts from LFS books. -->
|
|
|
|
<xsl:param name="testsuite" select="0"/>
|
|
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates select="//sect1"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="sect1">
|
|
<xsl:if test="count(descendant::screen/userinput) > 0 and
|
|
count(descendant::screen/userinput) > count(descendant::screen[@role='nodump'])">
|
|
<!-- The dirs names -->
|
|
<xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
|
|
<xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
|
|
<xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
|
|
<xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
|
|
<!-- The file names -->
|
|
<xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
|
|
<xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
|
|
<xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
|
|
<!-- The build order -->
|
|
<xsl:variable name="position" select="position()"/>
|
|
<xsl:variable name="order">
|
|
<xsl:choose>
|
|
<xsl:when test="string-length($position) = 1">
|
|
<xsl:text>00</xsl:text>
|
|
<xsl:value-of select="$position"/>
|
|
</xsl:when>
|
|
<xsl:when test="string-length($position) = 2">
|
|
<xsl:text>0</xsl:text>
|
|
<xsl:value-of select="$position"/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="$position"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<!-- Creating dirs and files -->
|
|
<exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
|
|
<xsl:text>#!/bin/sh

</xsl:text>
|
|
<xsl:if test="sect2[@role='installation'] and
|
|
ancestor::chapter[@id='chapter-temporary-tools']">
|
|
<xsl:text>cd $PKGDIR &&
</xsl:text>
|
|
</xsl:if>
|
|
<xsl:apply-templates select=".//para/userinput | .//screen"/>
|
|
</exsl:document>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="screen">
|
|
<xsl:if test="child::* = userinput">
|
|
<xsl:choose>
|
|
<xsl:when test="@role = 'nodump'"/>
|
|
<xsl:otherwise>
|
|
<xsl:apply-templates select="userinput" mode="screen"/>
|
|
<xsl:if test="position() != last() and
|
|
not(contains(string(),'EOF'))">
|
|
<xsl:text> &&</xsl:text>
|
|
</xsl:if>
|
|
<xsl:text>
</xsl:text>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="para/userinput">
|
|
<xsl:if test="$testsuite = '0' and (contains(string(),'test') or
|
|
contains(string(),'check'))">
|
|
<xsl:apply-templates/>
|
|
<xsl:text> &&
</xsl:text>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="userinput" mode="screen">
|
|
<xsl:apply-templates/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="replaceable">
|
|
<xsl:text>**EDITME</xsl:text>
|
|
<xsl:apply-templates/>
|
|
<xsl:text>EDITME**</xsl:text>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|