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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Purpose:
Transform DocBook's block elements
Author: Thomas Schraitle <toms@opensuse.org>,
Stefan Knorr <sknorr@suse.de>
Copyright: 2012, 2013, Thomas Schraitle, Stefan Knorr
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:t="http://nwalsh.com/docbook/xsl/template/1.0"
xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"
exclude-result-prefixes="exsl l t">
<xsl:template match="para[@arch]">
<xsl:variable name="arch">
<xsl:call-template name="readable.arch.string">
<xsl:with-param name="input" select="@arch"/>
</xsl:call-template>
</xsl:variable>
<xsl:call-template name="paragraph">
<xsl:with-param name="class">
<xsl:if test="@role and $para.propagates.style != 0">
<xsl:value-of select="@role"/>
</xsl:if>
</xsl:with-param>
<xsl:with-param name="content">
<xsl:if test="position() = 1 and parent::listitem">
<xsl:call-template name="anchor">
<xsl:with-param name="node" select="parent::listitem"/>
</xsl:call-template>
</xsl:if>
<xsl:call-template name="anchor"/>
<xsl:apply-templates/>
</xsl:with-param>
<xsl:with-param name="arch">
<xsl:if test="$para.use.arch">
<xsl:value-of select="$arch"/>
</xsl:if>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<!-- Same as upstream version, but can also handle paragraphs with an
architecture assigned to them. -->
<xsl:template name="paragraph">
<xsl:param name="class" select="''"/>
<xsl:param name="content"/>
<xsl:param name="arch"/>
<xsl:variable name="p">
<p>
<xsl:call-template name="id.attribute"/>
<xsl:choose>
<xsl:when test="$class != ''">
<xsl:call-template name="common.html.attributes">
<xsl:with-param name="class" select="$class"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="common.html.attributes">
<xsl:with-param name="class" select="''"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="$arch != ''">
<strong class="arch-arrow-start">
<xsl:value-of select="$arch"/>
</strong>
</xsl:if>
<xsl:copy-of select="$content"/>
<xsl:if test="$arch != ''">
<strong class="arch-arrow-end">
</strong>
</xsl:if>
</p>
</xsl:variable>
<xsl:choose>
<xsl:when test="$html.cleanup != 0">
<xsl:call-template name="unwrap.p">
<xsl:with-param name="p" select="$p"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:copy-of select="$p"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="formalpara/title|formalpara/info/title">
<xsl:variable name="titleStr">
<xsl:apply-templates/>
</xsl:variable>
<xsl:variable name="lastChar">
<xsl:if test="$titleStr != ''">
<xsl:value-of select="substring($titleStr,string-length($titleStr),1)"/>
</xsl:if>
</xsl:variable>
<span class="formalpara-title">
<xsl:copy-of select="$titleStr"/>
<xsl:if test="$lastChar != '' and not(contains($runinhead.title.end.punct, $lastChar))">
<xsl:call-template name="gentext">
<xsl:with-param name="key">runinhead.default.title.end.punct</xsl:with-param>
</xsl:call-template>
</xsl:if>
<xsl:text> </xsl:text>
</span>
</xsl:template>
<xsl:template match="formalpara/title/node()[last()][self::text()]">
<xsl:value-of select="."/>
</xsl:template>
<xsl:template match="para[normalize-space(.)='' and not(*)]"/>
</xsl:stylesheet>
|