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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
version='1.0'>
<!-- ********************************************************************
$Id: inline.xsl 6843 2007-06-20 12:21:13Z xmldoc $
********************************************************************
This file is part of the XSL DocBook Stylesheet distribution.
See ../README or http://docbook.sf.net/release/xsl/current/ for
copyright and other information.
******************************************************************** -->
<!-- ==================================================================== -->
<xsl:template match="replaceable|varname">
<xsl:if test="$man.hyphenate.computer.inlines = 0">
<xsl:call-template name="suppress.hyphenation"/>
</xsl:if>
<xsl:call-template name="italic">
<xsl:with-param name="node" select="."/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="option|userinput|envar|errorcode|constant|markup">
<xsl:if test="$man.hyphenate.computer.inlines = 0">
<xsl:call-template name="suppress.hyphenation"/>
</xsl:if>
<xsl:call-template name="bold">
<xsl:with-param name="node" select="."/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="classname">
<xsl:if test="$man.hyphenate.computer.inlines = 0">
<xsl:call-template name="suppress.hyphenation"/>
</xsl:if>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="command">
<xsl:if test="$man.hyphenate.computer.inlines = 0">
<xsl:call-template name="suppress.hyphenation"/>
</xsl:if>
<xsl:call-template name="bold">
<xsl:with-param name="node" select="."/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="type[not(ancestor::cmdsynopsis) and
not(ancestor::funcsynopsis)]">
<xsl:if test="$man.hyphenate.computer.inlines = 0">
<xsl:call-template name="suppress.hyphenation"/>
</xsl:if>
<xsl:call-template name="bold">
<xsl:with-param name="node" select="."/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="function[not(ancestor::cmdsynopsis) and
not(ancestor::funcsynopsis)]">
<xsl:if test="$man.hyphenate.computer.inlines = 0">
<xsl:call-template name="suppress.hyphenation"/>
</xsl:if>
<xsl:call-template name="bold">
<xsl:with-param name="node" select="."/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="parameter[not(ancestor::cmdsynopsis) and
not(ancestor::funcsynopsis)]">
<xsl:if test="$man.hyphenate.computer.inlines = 0">
<xsl:call-template name="suppress.hyphenation"/>
</xsl:if>
<xsl:call-template name="italic">
<xsl:with-param name="node" select="."/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="filename">
<!-- * add hyphenation suppression in Filename output only if -->
<!-- * break.after.slash is also non-zero -->
<xsl:if test="$man.hyphenate.filenames = 0 and
$man.break.after.slash = 0">
<xsl:call-template name="suppress.hyphenation"/>
</xsl:if>
<xsl:call-template name="italic">
<xsl:with-param name="node" select="."/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="emphasis">
<xsl:choose>
<xsl:when test="
@role = 'bold' or
@role = 'strong' or
@remap = 'B'">
<xsl:call-template name="bold">
<xsl:with-param name="node" select="."/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="italic">
<xsl:with-param name="node" select="."/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="optional">
<xsl:value-of select="$arg.choice.opt.open.str"/>
<xsl:apply-templates/>
<xsl:value-of select="$arg.choice.opt.close.str"/>
</xsl:template>
<xsl:template name="do-citerefentry">
<xsl:param name="refentrytitle" select="''"/>
<xsl:param name="manvolnum" select="''"/>
<xsl:variable name="title">
<xsl:value-of select="$refentrytitle"/>
</xsl:variable>
<xsl:call-template name="bold">
<xsl:with-param name="node" select="exsl:node-set($title)"/>
<xsl:with-param name="context" select="."/>
</xsl:call-template>
<xsl:text>(</xsl:text>
<xsl:value-of select="$manvolnum"/>
<xsl:text>)</xsl:text>
</xsl:template>
<xsl:template match="citerefentry">
<xsl:call-template name="do-citerefentry">
<xsl:with-param name="refentrytitle" select="refentrytitle"/>
<xsl:with-param name="manvolnum" select="manvolnum"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="trademark|productname">
<xsl:apply-templates/>
<xsl:choose>
<!-- * Just use true Unicode chars for copyright, trademark, etc., -->
<!-- * symbols (by default, we later automatically translate them -->
<!-- * with the apply-string-subst-map template, or with the -->
<!-- * default character map, if man.charmap.enabled is true). -->
<xsl:when test="@class = 'copyright'">
<xsl:text>©</xsl:text>
</xsl:when>
<xsl:when test="@class = 'registered'">
<xsl:text>®</xsl:text>
</xsl:when>
<xsl:when test="@class = 'service'">
<xsl:text>℠</xsl:text>
</xsl:when>
<xsl:when test="@class = 'trade'">
<xsl:text>™</xsl:text>
</xsl:when>
<!-- * for Trademark element, render a trademark symbol by default -->
<!-- * even if no "class" value is specified -->
<xsl:when test="self::trademark" >
<xsl:text>™</xsl:text>
</xsl:when>
<xsl:otherwise>
<!-- * otherwise we have a Productname with no value for the -->
<!-- * "class" attribute, so don't render any symbol by default -->
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- * span seems to sneak through into output sometimes, possibly due -->
<!-- * to failed Olink processing; so we need to catch it -->
<xsl:template match="span">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="inlinemediaobject">
<xsl:apply-templates/>
</xsl:template>
</xsl:stylesheet>
|