Ignore:
Timestamp:
Sep 9, 2007, 9:01:29 AM (17 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
a063414
Parents:
1c62f2a
Message:

Updated DocBook-XSL code to version 1.73.2

Location:
BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml
Files:
1 deleted
12 edited

Legend:

Unmodified
Added
Removed
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/docbook.xsl

    r1c62f2a rd7c9f58  
    9494  </xsl:message>
    9595
    96   <span xmlns:saxon="http://icl.com/saxon" class="ERROR">
     96  <span style="color: red">
    9797    <xsl:text>&lt;</xsl:text>
    9898    <xsl:value-of select="name(.)"/>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/formal.xsl

    r1c62f2a rd7c9f58  
    104104    <div class="{$class}">
    105105      <xsl:if test="$spacing.paras != 0"><p/></xsl:if>
    106       <xsl:call-template name="anchor">
    107         <xsl:with-param name="conditional" select="0"/>
    108       </xsl:call-template>
     106      <xsl:call-template name="anchor"/>
    109107      <xsl:apply-templates/>
    110108 
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/glossary.xsl

    r1c62f2a rd7c9f58  
    5050        <xsl:apply-templates select="(glossdiv[1]/preceding-sibling::*)"/>
    5151      </xsl:when>
     52      <xsl:when test="glossentry">
     53        <xsl:apply-templates select="(glossentry[1]/preceding-sibling::*)"/>
     54      </xsl:when>
    5255      <xsl:otherwise>
    53         <xsl:apply-templates select="(glossentry[1]/preceding-sibling::*)"/>
     56        <xsl:apply-templates/>
    5457      </xsl:otherwise>
    5558    </xsl:choose>
     
    5962        <xsl:apply-templates select="glossdiv"/>
    6063      </xsl:when>
    61       <xsl:otherwise>
     64      <xsl:when test="glossentry">
    6265        <dl>
    6366          <xsl:choose>
     
    7275          </xsl:choose>
    7376        </dl>
     77      </xsl:when>
     78      <xsl:otherwise>
     79        <!-- empty glossary -->
    7480      </xsl:otherwise>
    7581    </xsl:choose>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/graphics.xsl

    r1c62f2a rd7c9f58  
    10771077
    10781078<xsl:template match="imageobject">
    1079   <xsl:choose>
    1080     <xsl:when xmlns:svg="http://www.w3.org/2000/svg" test="svg:*">
    1081       <xsl:apply-templates/>
    1082     </xsl:when>
    1083     <xsl:otherwise>
    1084       <xsl:apply-templates select="imagedata"/>
    1085     </xsl:otherwise>
    1086   </xsl:choose>
     1079  <xsl:apply-templates select="imagedata"/>
    10871080</xsl:template>
    10881081
     
    10951088
    10961089  <xsl:choose>
     1090    <!-- Handle MathML and SVG markup in imagedata -->
     1091    <xsl:when xmlns:mml="http://www.w3.org/1998/Math/MathML" test="mml:*">
     1092      <xsl:apply-templates/>
     1093    </xsl:when>
     1094   
     1095    <xsl:when xmlns:svg="http://www.w3.org/2000/svg" test="svg:*">
     1096      <xsl:apply-templates/>
     1097    </xsl:when>
     1098
    10971099    <xsl:when test="@format='linespecific'">
    10981100      <xsl:choose>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/highlight.xsl

    r1c62f2a rd7c9f58  
    1919
    2020<xsl:template match="xslthl:string">
    21   <b class="hl-string"><i><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></i></b>
     21  <b class="hl-string"><i style="color:red"><xsl:apply-templates/></i></b>
    2222</xsl:template>
    2323
    2424<xsl:template match="xslthl:comment">
    25   <i class="hl-comment"><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></i>
     25  <i class="hl-comment" style="color: silver"><xsl:apply-templates/></i>
    2626</xsl:template>
    2727
    2828<xsl:template match="xslthl:tag">
    29   <b class="hl-tag"><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></b>
     29  <b class="hl-tag" style="color: blue"><xsl:apply-templates/></b>
    3030</xsl:template>
    3131
    3232<xsl:template match="xslthl:attribute">
    33   <span class="hl-attribute"><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></span>
     33  <span class="hl-attribute" style="color: blue"><xsl:apply-templates/></span>
    3434</xsl:template>
    3535
    3636<xsl:template match="xslthl:value">
    37   <span class="hl-value"><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></span>
     37  <span class="hl-value" style="color: blue"><xsl:apply-templates/></span>
    3838</xsl:template>
    3939
    4040<xsl:template match="xslthl:html">
    41   <b><i><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></i></b>
     41  <b><i style="color: red"><xsl:apply-templates/></i></b>
    4242</xsl:template>
    4343
    4444<xsl:template match="xslthl:xslt">
    45   <b><span xmlns:saxon="http://icl.com/saxon" class="ERROR"><xsl:apply-templates/></span></b>
     45  <b style="color: blue"><xsl:apply-templates/></b>
    4646</xsl:template>
    4747
     
    5050</xsl:template>
    5151
    52 
    5352</xsl:stylesheet>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/inline.xsl

    r1c62f2a rd7c9f58  
    8282
    8383                  <xsl:choose>
    84                     <xsl:when test="$node/@xlink.title">
     84                    <xsl:when test="$node/@xlink:title">
    8585                      <xsl:attribute name="title">
    8686                        <xsl:value-of select="$node/@xlink:title"/>
     
    118118                <xsl:value-of select="$xhref"/>
    119119              </xsl:attribute>
    120               <xsl:if test="$node/@xlink.title">
     120              <xsl:if test="$node/@xlink:title">
    121121                <xsl:attribute name="title">
    122122                  <xsl:value-of select="$node/@xlink:title"/>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/param.xsl

    r1c62f2a rd7c9f58  
    33<!--from the HTML stylesheets.-->
    44<!-- This file is generated from param.xweb -->
    5 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:src="http://nwalsh.com/xmlns/litprog/fragment" xmlns="http://docbook.org/ns/docbook" exclude-result-prefixes="src" version="1.0">
     5<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="1.0">
    66
    77<!-- ********************************************************************
     
    1515     ******************************************************************** -->
    1616
    17 <xsl:param name="admon.graphics.extension" select="'.png'"/>
     17<xsl:param name="admon.graphics.extension">.png</xsl:param>
    1818<xsl:param name="admon.graphics" select="0"/>
    1919<xsl:param name="admon.graphics.path">images/</xsl:param>
     
    6666                     }
    6767</xsl:param>
    68 <xsl:param name="annotation.js" select="'http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js'"/>
    69 <xsl:param name="annotation.graphic.open" select="'http://docbook.sourceforge.net/release/images/annot-open.png'"/>
    70 <xsl:param name="annotation.graphic.close" select="'http://docbook.sourceforge.net/release/images/annot-close.png'"/>
     68
     69<xsl:param name="annotation.js">
     70<xsl:text>http://docbook.sourceforge.net/release/script/AnchorPosition.js http://docbook.sourceforge.net/release/script/PopupWindow.js</xsl:text></xsl:param>
     71
     72<xsl:param name="annotation.graphic.open">http://docbook.sourceforge.net/release/images/annot-open.png</xsl:param>
     73<xsl:param name="annotation.graphic.close">
     74http://docbook.sourceforge.net/release/images/annot-close.png</xsl:param>
    7175<xsl:param name="annotation.support" select="0"/>
    72 <xsl:param name="appendix.autolabel" select="'A'"/>
     76<xsl:param name="appendix.autolabel">A</xsl:param>
    7377<xsl:param name="author.othername.in.middle" select="1"/>
    74 <xsl:param name="autotoc.label.separator" select="'. '"/>
     78<xsl:param name="autotoc.label.separator">. </xsl:param>
    7579<xsl:param name="autotoc.label.in.hyperlink" select="1"/>
    76 <xsl:param name="base.dir" select="''"/>
     80<xsl:param name="base.dir"/>
    7781<xsl:param name="biblioentry.item.separator">. </xsl:param>
    78 <xsl:param name="bibliography.collection" select="'http://docbook.sourceforge.net/release/bibliography/bibliography.xml'"/>
     82<xsl:param name="bibliography.collection">http://docbook.sourceforge.net/release/bibliography/bibliography.xml</xsl:param>
     83
    7984<xsl:param name="bibliography.numbered" select="0"/>
    80 <xsl:param name="bibliography.style" select="'normal'"/>
    81 <xsl:param name="blurb.on.titlepage.enabled">0</xsl:param>
     85<xsl:param name="bibliography.style">normal</xsl:param>
     86<xsl:param name="blurb.on.titlepage.enabled" select="0"/>
    8287<xsl:param name="bridgehead.in.toc" select="0"/>
    83 <xsl:param name="callout.defaultcolumn" select="'60'"/>
    84 <xsl:param name="callout.graphics.extension" select="'.png'"/>
    85 
    86 <xsl:param name="callout.graphics" select="'1'"/>
    87 <xsl:param name="callout.graphics.number.limit" select="'15'"/>
    88 
    89 <xsl:param name="callout.graphics.path" select="'images/callouts/'"/>
    90 <xsl:param name="callout.list.table" select="'1'"/>
     88<xsl:param name="callout.defaultcolumn">60</xsl:param>
     89<xsl:param name="callout.graphics.extension">.png</xsl:param>
     90
     91<xsl:param name="callout.graphics" select="1"/>
     92<xsl:param name="callout.graphics.number.limit">15</xsl:param>
     93
     94<xsl:param name="callout.graphics.path">images/callouts/</xsl:param>
     95<xsl:param name="callout.list.table" select="1"/>
    9196<xsl:param name="callout.unicode" select="0"/>
    92 <xsl:param name="callout.unicode.number.limit" select="'10'"/>
    93 <xsl:param name="callout.unicode.start.character" select="10102"/>
    94 <xsl:param name="callouts.extension" select="'1'"/>
     97<xsl:param name="callout.unicode.number.limit">10</xsl:param>
     98<xsl:param name="callout.unicode.start.character">10102</xsl:param>
     99<xsl:param name="callouts.extension" select="1"/>
    95100<xsl:param name="chapter.autolabel" select="1"/>
    96101<xsl:param name="chunk.append"/>
     
    98103<xsl:param name="chunk.quietly" select="0"/>
    99104<xsl:param name="chunk.section.depth" select="1"/>
    100 <xsl:param name="chunk.toc" select="''"/>
     105<xsl:param name="chunk.toc"/>
    101106<xsl:param name="chunk.tocs.and.lots" select="0"/>
    102107<xsl:param name="chunk.tocs.and.lots.has.title" select="1"/>
    103108<xsl:param name="chunk.separate.lots" select="0"/>
    104 <xsl:param name="citerefentry.link" select="'0'"/>
    105 <xsl:param name="collect.xref.targets" select="'no'"/>
     109<xsl:param name="citerefentry.link" select="0"/>
     110<xsl:param name="collect.xref.targets">no</xsl:param>
    106111<xsl:param name="component.label.includes.part.label" select="0"/>
    107112<xsl:param name="contrib.inline.enabled">1</xsl:param>
    108113<xsl:param name="css.decoration" select="1"/>
    109 <xsl:param name="current.docid" select="''"/>
     114<xsl:param name="current.docid"/>
    110115<xsl:param name="default.float.class">
    111116  <xsl:choose>
     
    114119  </xsl:choose>
    115120</xsl:param>
    116 <xsl:param name="default.image.width" select="''"/>
    117 <xsl:param name="default.table.width" select="''"/>
    118 <xsl:param name="default.table.frame" select="'all'"/>
    119 <xsl:param name="draft.mode" select="'maybe'"/>
    120 <xsl:param name="draft.watermark.image" select="'http://docbook.sourceforge.net/release/images/draft.png'"/>
    121 <xsl:param name="ebnf.table.bgcolor" select="'#F5DCB3'"/>
     121<xsl:param name="default.image.width"/>
     122<xsl:param name="default.table.width"/>
     123<xsl:param name="default.table.frame">all</xsl:param>
     124<xsl:param name="draft.mode">maybe</xsl:param>
     125<xsl:param name="draft.watermark.image">http://docbook.sourceforge.net/release/images/draft.png</xsl:param>
     126<xsl:param name="ebnf.table.bgcolor">#F5DCB3</xsl:param>
    122127<xsl:param name="ebnf.table.border" select="1"/>
    123128<xsl:param name="ebnf.assignment">
    124 <code xmlns="http://www.w3.org/1999/xhtml">::=</code>
     129<code>::=</code>
    125130</xsl:param>
    126131
     
    132137<xsl:param name="eclipse.plugin.provider">Example provider</xsl:param>
    133138<xsl:param name="editedby.enabled">1</xsl:param>
    134 <xsl:param name="email.delimiters.enabled">1</xsl:param>
     139<xsl:param name="email.delimiters.enabled" select="1"/>
    135140<xsl:param name="emphasis.propagates.style" select="1"/>
    136141<xsl:param name="entry.propagates.style" select="1"/>
    137142<xsl:param name="firstterm.only.link" select="0"/>
    138143<xsl:param name="footer.rule" select="1"/>
    139 <xsl:param name="footnote.number.format" select="'1'"/>
    140 <xsl:param name="footnote.number.symbols" select="''"/>
     144<xsl:param name="footnote.number.format">1</xsl:param>
     145<xsl:param name="footnote.number.symbols"/>
    141146<xsl:param name="formal.procedures" select="1"/>
    142147<xsl:param name="formal.title.placement">
     
    150155<xsl:param name="funcsynopsis.decoration" select="1"/>
    151156<xsl:param name="funcsynopsis.style">kr</xsl:param>
    152 <xsl:param name="funcsynopsis.tabular.threshold" select="40"/>
    153 <xsl:param name="function.parens">0</xsl:param>
     157<xsl:param name="funcsynopsis.tabular.threshold">40</xsl:param>
     158<xsl:param name="function.parens" select="0"/>
    154159<xsl:param name="generate.id.attributes" select="0"/>
    155160<xsl:param name="generate.index" select="1"/>
     
    179184</xsl:param>
    180185
    181 <xsl:param name="glossary.collection" select="''"/>
     186<xsl:param name="glossary.collection"/>
    182187<xsl:param name="glossary.sort" select="0"/>
    183 <xsl:param name="glossentry.show.acronym" select="'no'"/>
     188<xsl:param name="glossentry.show.acronym">no</xsl:param>
    184189<xsl:param name="glossterm.auto.link" select="0"/>
    185190<xsl:param name="graphic.default.extension"/>
     
    187192<xsl:param name="graphicsize.use.img.src.path" select="0"/>
    188193<xsl:param name="header.rule" select="1"/>
    189 <xsl:param name="highlight.default.language" select="''"/>
     194<xsl:param name="highlight.default.language"/>
    190195<xsl:param name="highlight.source" select="0"/>
    191196<xsl:param name="html.append"/>
    192197<xsl:param name="html.base"/>
    193 <xsl:param name="html.cellpadding" select="''"/>
    194 <xsl:param name="html.cellspacing" select="''"/>
     198<xsl:param name="html.cellpadding"/>
     199<xsl:param name="html.cellspacing"/>
    195200<xsl:param name="html.cleanup" select="1"/>
    196 <xsl:param name="html.ext" select="'.html'"/>
     201<xsl:param name="html.ext">.html</xsl:param>
    197202<xsl:param name="html.extra.head.links" select="0"/>
    198203<xsl:param name="html.head.legalnotice.link.types">copyright</xsl:param>
     
    200205<xsl:param name="html.longdesc" select="1"/>
    201206<xsl:param name="html.longdesc.link" select="$html.longdesc"/>
    202 <xsl:param name="html.stylesheet" select="''"/>
     207<xsl:param name="html.stylesheet"/>
    203208<xsl:param name="html.stylesheet.type">text/css</xsl:param>
    204 <xsl:param name="htmlhelp.alias.file" select="'alias.h'"/>
     209<xsl:param name="htmlhelp.alias.file">alias.h</xsl:param>
    205210<xsl:param name="htmlhelp.autolabel" select="0"/>
    206211<xsl:param name="htmlhelp.button.back" select="1"/>
     
    210215<xsl:param name="htmlhelp.button.home.url"/>
    211216<xsl:param name="htmlhelp.button.jump1" select="0"/>
    212 <xsl:param name="htmlhelp.button.jump1.title" select="'User1'"/>
     217<xsl:param name="htmlhelp.button.jump1.title">User1</xsl:param>
    213218<xsl:param name="htmlhelp.button.jump1.url"/>
    214219<xsl:param name="htmlhelp.button.jump2" select="0"/>
    215 <xsl:param name="htmlhelp.button.jump2.title" select="'User2'"/>
     220<xsl:param name="htmlhelp.button.jump2.title">User2</xsl:param>
    216221<xsl:param name="htmlhelp.button.jump2.url"/>
    217222<xsl:param name="htmlhelp.button.locate" select="0"/>
     
    223228<xsl:param name="htmlhelp.button.stop" select="0"/>
    224229<xsl:param name="htmlhelp.button.zoom" select="0"/>
    225 <xsl:param name="htmlhelp.chm" select="'htmlhelp.chm'"/>
    226 <xsl:param name="htmlhelp.default.topic" select="''"/>
     230<xsl:param name="htmlhelp.chm">htmlhelp.chm</xsl:param>
     231<xsl:param name="htmlhelp.default.topic"/>
    227232<xsl:param name="htmlhelp.display.progress" select="1"/>
    228 <xsl:param name="htmlhelp.encoding" select="'iso-8859-1'"/>
     233<xsl:param name="htmlhelp.encoding">iso-8859-1</xsl:param>
    229234<xsl:param name="htmlhelp.enhanced.decompilation" select="0"/>
    230235<xsl:param name="htmlhelp.enumerate.images" select="0"/>
     
    232237<xsl:param name="htmlhelp.hhc.binary" select="1"/>
    233238<xsl:param name="htmlhelp.hhc.folders.instead.books" select="1"/>
    234 <xsl:param name="htmlhelp.hhc" select="'toc.hhc'"/>
    235 <xsl:param name="htmlhelp.hhc.section.depth" select="5"/>
     239<xsl:param name="htmlhelp.hhc">toc.hhc</xsl:param>
     240<xsl:param name="htmlhelp.hhc.section.depth">5</xsl:param>
    236241<xsl:param name="htmlhelp.hhc.show.root" select="1"/>
    237242<xsl:param name="htmlhelp.hhc.width"/>
    238 <xsl:param name="htmlhelp.hhk" select="'index.hhk'"/>
    239 <xsl:param name="htmlhelp.hhp" select="'htmlhelp.hhp'"/>
     243<xsl:param name="htmlhelp.hhk">index.hhk</xsl:param>
     244<xsl:param name="htmlhelp.hhp">htmlhelp.hhp</xsl:param>
    240245<xsl:param name="htmlhelp.hhp.tail"/>
    241 <xsl:param name="htmlhelp.hhp.window" select="'Main'"/>
     246<xsl:param name="htmlhelp.hhp.window">Main</xsl:param>
    242247<xsl:param name="htmlhelp.hhp.windows"/>
    243 <xsl:param name="htmlhelp.map.file" select="'context.h'"/>
     248<xsl:param name="htmlhelp.map.file">context.h</xsl:param>
    244249<xsl:param name="htmlhelp.only" select="0"/>
    245250<xsl:param name="htmlhelp.remember.window.position" select="0"/>
     
    248253<xsl:param name="htmlhelp.show.menu" select="0"/>
    249254<xsl:param name="htmlhelp.show.toolbar.text" select="1"/>
    250 <xsl:param name="htmlhelp.title" select="''"/>
     255<xsl:param name="htmlhelp.title"/>
    251256<xsl:param name="htmlhelp.use.hhk" select="0"/>
    252257<xsl:param name="htmlhelp.window.geometry"/>
    253258<xsl:param name="img.src.path"/>
    254259<xsl:param name="id.warnings" select="0"/>
    255 <xsl:param name="index.method" select="'basic'"/>
     260<xsl:param name="index.method">basic</xsl:param>
    256261<xsl:param name="index.on.role" select="0"/>
    257262<xsl:param name="index.on.type" select="0"/>
    258 <xsl:param name="index.number.separator" select="''"/>
    259 <xsl:param name="index.term.separator" select="''"/>
    260 <xsl:param name="index.range.separator" select="''"/>
     263<xsl:param name="index.number.separator"/>
     264<xsl:param name="index.term.separator"/>
     265<xsl:param name="index.range.separator"/>
    261266<xsl:param name="index.prefer.titleabbrev" select="0"/>
    262267<xsl:param name="ignore.image.scaling" select="0"/>
    263 <xsl:param name="inherit.keywords" select="'1'"/>
     268<xsl:param name="inherit.keywords" select="1"/>
    264269<xsl:param name="insert.xref.page.number">no</xsl:param>
     270<xsl:param name="javahelp.encoding">iso-8859-1</xsl:param>
    265271<xsl:param name="keep.relative.image.uris" select="1"/>
    266272
    267 <xsl:param name="l10n.gentext.default.language" select="'en'"/>
    268 <xsl:param name="l10n.gentext.language" select="''"/>
     273<xsl:param name="l10n.gentext.default.language">en</xsl:param>
     274<xsl:param name="l10n.gentext.language"/>
    269275<xsl:param name="l10n.gentext.use.xref.language" select="0"/>
    270276<xsl:param name="l10n.lang.value.rfc.compliant" select="1"/>
    271 <xsl:param name="label.from.part" select="'0'"/>
    272 <xsl:param name="linenumbering.everyNth" select="'5'"/>
    273 <xsl:param name="linenumbering.extension" select="'1'"/>
    274 <xsl:param name="linenumbering.separator" select="' '"/>
    275 <xsl:param name="linenumbering.width" select="'3'"/>
     277<xsl:param name="label.from.part" select="0"/>
     278<xsl:param name="linenumbering.everyNth">5</xsl:param>
     279<xsl:param name="linenumbering.extension" select="1"/>
     280<xsl:param name="linenumbering.separator"><xsl:text> </xsl:text></xsl:param>
     281<xsl:param name="linenumbering.width">3</xsl:param>
    276282<xsl:param name="link.mailto.url"/>
    277283<xsl:param name="make.graphic.viewport" select="1"/>
     
    279285<xsl:param name="make.valid.html" select="1"/>
    280286<xsl:param name="make.year.ranges" select="0"/>
    281 <xsl:param name="manifest" select="'HTML.manifest'"/>
     287    <xsl:param name="manifest">HTML.manifest</xsl:param>
     288   
    282289<xsl:param name="manifest.in.base.dir" select="0"/>
    283 <xsl:param name="manual.toc" select="''"/>
     290<xsl:param name="manual.toc"/>
    284291<xsl:param name="menuchoice.menu.separator"> &#8594; </xsl:param>
    285 <xsl:param name="menuchoice.separator" select="'+'"/>
    286 <xsl:param name="navig.graphics.extension" select="'.gif'"/>
     292<xsl:param name="menuchoice.separator">+</xsl:param>
     293<xsl:param name="navig.graphics.extension">.gif</xsl:param>
    287294<xsl:param name="navig.graphics" select="0"/>
    288295<xsl:param name="navig.graphics.path">images/</xsl:param>
     
    290297<xsl:param name="nominal.image.depth" select="4 * $pixels.per.inch"/>
    291298<xsl:param name="nominal.image.width" select="6 * $pixels.per.inch"/>
    292 <xsl:param name="nominal.table.width" select="'6in'"/>
    293 <xsl:param name="olink.base.uri" select="''"/>
     299<xsl:param name="nominal.table.width">6in</xsl:param>
     300<xsl:param name="olink.base.uri"/>
    294301<xsl:param name="olink.debug" select="0"/>
    295302<xsl:attribute-set name="olink.properties">
     
    299306<xsl:param name="insert.olink.pdf.frag" select="0"/>
    300307<xsl:param name="prefer.internal.olink" select="0"/>
    301 <xsl:param name="olink.lang.fallback.sequence" select="''"/>
    302 <xsl:param name="olink.doctitle" select="'no'"/>
    303 <xsl:param name="olink.fragid" select="'fragid='"/>
    304 <xsl:param name="olink.outline.ext" select="'.olink'"/>
    305 <xsl:param name="olink.pubid" select="'pubid='"/>
    306 <xsl:param name="olink.resolver" select="'/cgi-bin/olink'"/>
    307 <xsl:param name="olink.sysid" select="'sysid='"/>
    308 <xsl:param name="abstract.notitle.enabled">0</xsl:param>
     308<xsl:param name="olink.lang.fallback.sequence"/>
     309<xsl:param name="olink.doctitle">no</xsl:param>
     310<xsl:param name="olink.fragid">fragid=</xsl:param>
     311<xsl:param name="olink.outline.ext">.olink</xsl:param>
     312<xsl:param name="olink.pubid">pubid</xsl:param>
     313  <xsl:param name="olink.resolver">/cgi-bin/olink</xsl:param>
     314<xsl:param name="olink.sysid">sysid</xsl:param>
     315<xsl:param name="abstract.notitle.enabled" select="0"/>
    309316<xsl:param name="othercredit.like.author.enabled">0</xsl:param>
    310317<xsl:param name="para.propagates.style" select="1"/>
    311 <xsl:param name="part.autolabel" select="'I'"/>
     318<xsl:param name="part.autolabel">I</xsl:param>
    312319<xsl:param name="phrase.propagates.style" select="1"/>
    313 <xsl:param name="pixels.per.inch" select="90"/>
    314 <xsl:param name="points.per.em" select="10"/>
     320<xsl:param name="pixels.per.inch">90</xsl:param>
     321<xsl:param name="points.per.em">10</xsl:param>
    315322<xsl:param name="preface.autolabel" select="0"/>
    316323<xsl:param name="preferred.mediaobject.role"/>
    317324<xsl:param name="process.empty.source.toc" select="0"/>
    318325<xsl:param name="process.source.toc" select="0"/>
    319 <xsl:param name="profile.arch" select="''"/>
    320 <xsl:param name="profile.audience" select="''"/>
    321 <xsl:param name="profile.attribute" select="''"/>
    322 <xsl:param name="profile.condition" select="''"/>
    323 <xsl:param name="profile.conformance" select="''"/>
    324 <xsl:param name="profile.lang" select="''"/>
    325 <xsl:param name="profile.os" select="''"/>
    326 <xsl:param name="profile.revision" select="''"/>
    327 <xsl:param name="profile.revisionflag" select="''"/>
    328 <xsl:param name="profile.role" select="''"/>
    329 <xsl:param name="profile.security" select="''"/>
    330 <xsl:param name="profile.separator" select="';'"/>
    331 <xsl:param name="profile.status" select="''"/>
    332 <xsl:param name="profile.userlevel" select="''"/>
    333 <xsl:param name="profile.value" select="''"/>
    334 <xsl:param name="profile.vendor" select="''"/>
    335 <xsl:param name="profile.wordsize" select="''"/>
    336 <xsl:param name="punct.honorific" select="'.'"/>
     326<xsl:param name="profile.arch"/>
     327<xsl:param name="profile.audience"/>
     328<xsl:param name="profile.attribute"/>
     329<xsl:param name="profile.condition"/>
     330<xsl:param name="profile.conformance"/>
     331<xsl:param name="profile.lang"/>
     332<xsl:param name="profile.os"/>
     333<xsl:param name="profile.revision"/>
     334<xsl:param name="profile.revisionflag"/>
     335<xsl:param name="profile.role"/>
     336<xsl:param name="profile.security"/>
     337<xsl:param name="profile.separator">;</xsl:param>
     338<xsl:param name="profile.status"/>
     339<xsl:param name="profile.userlevel"/>
     340<xsl:param name="profile.value"/>
     341<xsl:param name="profile.vendor"/>
     342<xsl:param name="profile.wordsize"/>
     343<xsl:param name="punct.honorific">.</xsl:param>
    337344<xsl:param name="qanda.defaultlabel">number</xsl:param>
    338345<xsl:param name="qanda.inherit.numeration" select="1"/>
     
    342349<xsl:param name="refentry.generate.name" select="1"/>
    343350<xsl:param name="refentry.generate.title" select="0"/>
    344 <xsl:param name="refentry.separator" select="'1'"/>
     351<xsl:param name="refentry.separator" select="1"/>
    345352<xsl:param name="refentry.xref.manvolnum" select="1"/>
    346 <xsl:param name="reference.autolabel" select="'I'"/>
     353  <xsl:param name="reference.autolabel">I</xsl:param>
    347354<xsl:param name="refclass.suppress" select="0"/>
    348 <xsl:param name="root.filename" select="'index'"/>
    349 <xsl:param name="rootid" select="''"/>
    350 <xsl:param name="runinhead.default.title.end.punct" select="'.'"/>
    351 <xsl:param name="runinhead.title.end.punct" select="'.!?:'"/>
     355<xsl:param name="root.filename">index</xsl:param>
     356<xsl:param name="rootid"/>
     357<xsl:param name="runinhead.default.title.end.punct">.</xsl:param>
     358<xsl:param name="runinhead.title.end.punct">.!?:</xsl:param>
    352359<xsl:param name="section.autolabel" select="0"/>
    353 <xsl:param name="section.autolabel.max.depth" select="8"/>
     360<xsl:param name="section.autolabel.max.depth">8</xsl:param>
    354361<xsl:param name="section.label.includes.component.label" select="0"/>
    355362<xsl:param name="segmentedlist.as.table" select="0"/>
     
    360367</xsl:attribute-set>
    361368
    362 <xsl:param name="show.comments">1</xsl:param>
    363 <xsl:param name="show.revisionflag">0</xsl:param>
     369<xsl:param name="show.comments" select="1"/>
     370<xsl:param name="show.revisionflag" select="0"/>
    364371<xsl:param name="simplesect.in.toc" select="0"/>
    365 <xsl:param name="spacing.paras" select="'0'"/>
     372<xsl:param name="spacing.paras" select="0"/>
    366373<xsl:param name="suppress.footer.navigation">0</xsl:param>
    367 <xsl:param name="suppress.header.navigation">0</xsl:param>
    368 <xsl:param name="suppress.navigation">0</xsl:param>
     374<xsl:param name="suppress.header.navigation" select="0"/>
     375<xsl:param name="suppress.navigation" select="0"/>
    369376<xsl:param name="table.borders.with.css" select="0"/>
    370 <xsl:param name="table.cell.border.color" select="''"/>
    371 
    372 <xsl:param name="table.cell.border.style" select="'solid'"/>
    373 <xsl:param name="table.cell.border.thickness" select="'0.5pt'"/>
    374 <xsl:param name="table.footnote.number.format" select="'a'"/>
    375 <xsl:param name="table.footnote.number.symbols" select="''"/>
    376 <xsl:param name="table.frame.border.color" select="''"/>
    377 
    378 <xsl:param name="table.frame.border.style" select="'solid'"/>
    379 <xsl:param name="table.frame.border.thickness" select="'0.5pt'"/>
    380 <xsl:param name="tablecolumns.extension" select="'1'"/>
    381 <xsl:param name="target.database.document" select="''"/>
    382 <xsl:param name="targets.filename" select="'target.db'"/>
    383 <xsl:param name="textdata.default.encoding" select="''"/>
    384 <xsl:param name="tex.math.delims" select="'1'"/>
    385 <xsl:param name="tex.math.file" select="'tex-math-equations.tex'"/>
    386 <xsl:param name="tex.math.in.alt" select="''"/>
    387 <xsl:param name="textinsert.extension" select="'1'"/>
     377<xsl:param name="table.cell.border.color"/>
     378
     379<xsl:param name="table.cell.border.style">solid</xsl:param>
     380<xsl:param name="table.cell.border.thickness">0.5pt</xsl:param>
     381<xsl:param name="table.footnote.number.format">a</xsl:param>
     382<xsl:param name="table.footnote.number.symbols"/>
     383<xsl:param name="table.frame.border.color"/>
     384
     385<xsl:param name="table.frame.border.style">solid</xsl:param>
     386<xsl:param name="table.frame.border.thickness">0.5pt</xsl:param>
     387<xsl:param name="tablecolumns.extension" select="1"/>
     388 <xsl:param name="target.database.document">olinkdb.xml</xsl:param>
     389<xsl:param name="targets.filename">target.db</xsl:param>
     390<xsl:param name="textdata.default.encoding"/>
     391<xsl:param name="tex.math.delims" select="1"/>
     392<xsl:param name="tex.math.file">tex-math-equations.tex</xsl:param>
     393<xsl:param name="tex.math.in.alt"/>
     394  <xsl:param name="textinsert.extension" select="1"/>
    388395<xsl:param name="toc.list.type">dl</xsl:param>
    389396<xsl:param name="toc.section.depth">2</xsl:param>
    390397<xsl:param name="toc.max.depth">8</xsl:param>
    391 <xsl:param name="ulink.target" select="'_top'"/>
     398<xsl:param name="ulink.target">_top</xsl:param>
    392399<xsl:param name="use.embed.for.svg" select="0"/>
    393 <xsl:param name="use.extensions" select="'0'"/>
    394 <xsl:param name="use.id.as.filename" select="'0'"/>
     400<xsl:param name="use.extensions" select="0"/>
     401<xsl:param name="use.id.as.filename" select="0"/>
    395402<xsl:param name="use.local.olink.style" select="0"/>
    396403<xsl:param name="use.role.as.xrefstyle" select="1"/>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/pi.xsl

    r1c62f2a rd7c9f58  
    4040  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Sets background color for an image</refpurpose>
    4141  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    42     <para>Use the <tag>dbhtml background-color</tag> PI before or
     42    <para>Use the <tag class="xmlpi">dbhtml background-color</tag> PI before or
    4343      after an image (<tag>graphic</tag>, <tag>inlinegraphic</tag>,
    4444      <tag>imagedata</tag>, or <tag>videodata</tag> element) as a
     
    7373  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Sets background color on a table row or table cell</refpurpose>
    7474  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    75     <para>Use the <tag>dbhtml bgcolor</tag> PI as child of a table row
     75    <para>Use the <tag class="xmlpi">dbhtml bgcolor</tag> PI as child of a table row
    7676      or cell to set a background color for that table row or cell.</para>
    7777  </refdescription>
     
    103103  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies cellpadding in table or qandaset output</refpurpose>
    104104  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    105     <para>Use the <tag>dbhtml cellpadding</tag> PI as a child of a
     105    <para>Use the <tag class="xmlpi">dbhtml cellpadding</tag> PI as a child of a
    106106      <tag>table</tag> or <tag>qandaset</tag> to specify the value
    107107      for the HTML <literal>cellpadding</literal> attribute in the
     
    139139  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies cellspacing in table or qandaset output</refpurpose>
    140140  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    141     <para>Use the <tag>dbhtml cellspacing</tag> PI as a child of a
     141    <para>Use the <tag class="xmlpi">dbhtml cellspacing</tag> PI as a child of a
    142142      <tag>table</tag> or <tag>qandaset</tag> to specify the value
    143143      for the HTML <literal>cellspacing</literal> attribute in the
     
    175175  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Set value of the class attribute for a table row</refpurpose>
    176176  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    177     <para>Use the <tag>dbhtml class</tag> PI as a child of a
     177    <para>Use the <tag class="xmlpi">dbhtml class</tag> PI as a child of a
    178178      <tag>row</tag> to specify a <literal>class</literal>
    179179      attribute and value in the HTML output for that row.</para>
     
    206206  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies a directory name in which to write files</refpurpose>
    207207  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    208     <para>When chunking output, use the <tag>dbhtml dir</tag> PI
     208    <para>When chunking output, use the <tag class="xmlpi">dbhtml dir</tag> PI
    209209      as a child of a chunk source to cause the output of that
    210210      chunk to be written to the specified directory; also, use it
     
    243243  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies a filename for a chunk</refpurpose>
    244244  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    245     <para>When chunking output, use the <tag>dbhtml filename</tag>
     245    <para>When chunking output, use the <tag class="xmlpi">dbhtml filename</tag>
    246246      PI as a child of a chunk source to specify a filename for
    247247      the output file for that chunk.</para>
     
    277277  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies presentation style for a funcsynopsis</refpurpose>
    278278  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    279     <para>Use the <tag>dbhtml funcsynopsis-style</tag> PI as a child of
     279    <para>Use the <tag class="xmlpi">dbhtml funcsynopsis-style</tag> PI as a child of
    280280      a <tag>funcprototype</tag> or anywhere within a funcprototype
    281281      control the presentation style for the <tag>funcsynopsis</tag>
     
    314314  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies a path to the location of an image file</refpurpose>
    315315  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    316     <para>Use the <tag>dbhtml img.src.path</tag> PI before or
     316    <para>Use the <tag class="xmlpi">dbhtml img.src.path</tag> PI before or
    317317      after an image (<tag>graphic</tag>,
    318318      <tag>inlinegraphic</tag>, <tag>imagedata</tag>, or
     
    353353  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies the label width for a qandaset</refpurpose>
    354354  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    355     <para>Use the <tag>dbhtml label-width</tag> PI as a child of a
     355    <para>Use the <tag class="xmlpi">dbhtml label-width</tag> PI as a child of a
    356356      <tag>qandaset</tag> to specify the width of labels.</para>
    357357  </refdescription>
     
    383383  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies interval for lines numbers in verbatims</refpurpose>
    384384  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    385     <para>Use the <tag>dbhtml linenumbering.everyNth</tag> PI as a child
     385    <para>Use the <tag class="xmlpi">dbhtml linenumbering.everyNth</tag> PI as a child
    386386      of a &#8220;verbatim&#8221; element &#8211; <tag>programlisting</tag>,
    387387      <tag>screen</tag>, <tag>synopsis</tag> &#8212; to specify
     
    419419  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies separator text for line numbers in verbatims</refpurpose>
    420420  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    421     <para>Use the <tag>dbhtml linenumbering.separator</tag> PI as a child
     421    <para>Use the <tag class="xmlpi">dbhtml linenumbering.separator</tag> PI as a child
    422422      of a &#8220;verbatim&#8221; element &#8211; <tag>programlisting</tag>,
    423423      <tag>screen</tag>, <tag>synopsis</tag> &#8212; to specify
     
    454454  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies width for line numbers in verbatims</refpurpose>
    455455  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    456     <para>Use the <tag>dbhtml linenumbering.width</tag> PI as a child
     456    <para>Use the <tag class="xmlpi">dbhtml linenumbering.width</tag> PI as a child
    457457      of a &#8220;verbatim&#8221; element &#8211; <tag>programlisting</tag>,
    458458      <tag>screen</tag>, <tag>synopsis</tag> &#8212; to specify
     
    490490    segmentedlist</refpurpose>
    491491  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    492     <para>Use the <tag>dbhtml list-presentation</tag> PI as a child of
     492    <para>Use the <tag class="xmlpi">dbhtml list-presentation</tag> PI as a child of
    493493      a <tag>variablelist</tag> or <tag>segmentedlist</tag> to
    494494      control the presentation style for the list (to cause it, for
     
    537537  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies the width of a variablelist or simplelist</refpurpose>
    538538  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    539     <para>Use the <tag>dbhtml list-width</tag> PI as a child of a
     539    <para>Use the <tag class="xmlpi">dbhtml list-width</tag> PI as a child of a
    540540      <tag>variablelist</tag> or a <tag>simplelist</tag> presented
    541541      as a table, to specify the output width.</para>
     
    568568  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies the height for a table row</refpurpose>
    569569  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    570     <para>Use the <tag>dbhtml row-height</tag> PI as a child of a
     570    <para>Use the <tag class="xmlpi">dbhtml row-height</tag> PI as a child of a
    571571      <tag>row</tag> to specify the height of the row.</para>
    572572  </refdescription>
     
    634634  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies summary for table, variablelist, segmentedlist, or qandaset output</refpurpose>
    635635  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    636     <para>Use the <tag>dbhtml table-summary</tag> PI as a child of
     636    <para>Use the <tag class="xmlpi">dbhtml table-summary</tag> PI as a child of
    637637      a <tag>table</tag>, <tag>variablelist</tag>,
    638638      <tag>segmentedlist</tag>, or <tag>qandaset</tag> to specify
     
    668668  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies the width for a table</refpurpose>
    669669  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    670     <para>Use the <tag>dbhtml table-width</tag> PI as a child of a
     670    <para>Use the <tag class="xmlpi">dbhtml table-width</tag> PI as a child of a
    671671      <tag>table</tag> to specify the width of the table in
    672672      output.</para>
     
    702702  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Sets character formatting for terms in a variablelist</refpurpose>
    703703  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    704     <para>Use the <tag>dbhtml term-presentation</tag> PI as a child
     704    <para>Use the <tag class="xmlpi">dbhtml term-presentation</tag> PI as a child
    705705      of a <tag>variablelist</tag> to set character formatting for
    706706      the <tag>term</tag> output of the list.</para>
     
    743743  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies separator text among terms in a varlistentry</refpurpose>
    744744  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    745     <para>Use the <tag>dbhtml term-separator</tag> PI as a child
     745    <para>Use the <tag class="xmlpi">dbhtml term-separator</tag> PI as a child
    746746      of a <tag>variablelist</tag> to specify the separator text
    747747      among <tag>term</tag> instances.</para>
     
    777777  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies the term width for a variablelist</refpurpose>
    778778  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    779     <para>Use the <tag>dbhtml term-width</tag> PI as a child of a
     779    <para>Use the <tag class="xmlpi">dbhtml term-width</tag> PI as a child of a
    780780      <tag>variablelist</tag> to specify the width for
    781781      <tag>term</tag> output.</para>
     
    806806
    807807<doc:pi xmlns="" name="dbhtml_toc">
    808   <refpurpose xmlns="http://www.w3.org/1999/xhtml">Species whether a TOC should be generated for a qandaset</refpurpose>
    809   <refdescription xmlns="http://www.w3.org/1999/xhtml">
    810     <para>Use the <tag>dbhtml toc</tag> PI as a child of a
     808  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Specifies whether a TOC should be generated for a qandaset</refpurpose>
     809  <refdescription xmlns="http://www.w3.org/1999/xhtml">
     810    <para>Use the <tag class="xmlpi">dbhtml toc</tag> PI as a child of a
    811811      <tag>qandaset</tag> to specify whether a table of contents
    812812      (TOC) is generated for the <tag>qandaset</tag>.</para>
     
    846846  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Generates a hyperlinked list of commands</refpurpose>
    847847  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    848     <para>Use the <tag>dbcmdlist</tag> PI as the child of a
    849       <tag>refsynopsisdiv</tag> containing multiple
     848    <para>Use the <tag class="xmlpi">dbcmdlist</tag> PI as the child of any
     849      element (for example, <tag>refsynopsisdiv</tag>) containing multiple
    850850      <tag>cmdsynopsis</tag> instances; a hyperlinked navigational
    851       &#8220;command list&#8221; will be generated at the top of the
    852       <tag>refsynopsisdiv</tag>, enabling users to quickly jump
    853       to to each command synopsis.</para>
     851      &#8220;command list&#8221; will be generated at the top of output for that
     852      element, enabling users to quickly jump
     853      to each command synopsis.</para>
    854854  </refdescription>
    855855  <refsynopsisdiv xmlns="http://www.w3.org/1999/xhtml">
     
    876876  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Generates a hyperlinked list of functions</refpurpose>
    877877  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    878     <para>Use the <tag>dbfunclist</tag> PI as the child of a
    879       <tag>refsynopsisdiv</tag> containing multiple
     878    <para>Use the <tag class="xmlpi">dbfunclist</tag> PI as the child of any
     879      element (for example, <tag>refsynopsisdiv</tag>) containing multiple
    880880      <tag>funcsynopsis</tag> instances; a hyperlinked
    881881      navigational &#8220;function list&#8221; will be generated at the top of
    882       the <tag>refsynopsisdiv</tag>, enabling users to quickly
     882      output for that element, enabling users to quickly
    883883      jump to to each function synopsis.</para>
    884884  </refdescription>
     
    906906  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Copies an external well-formed HTML/XML file into current doc</refpurpose>
    907907  <refdescription xmlns="http://www.w3.org/1999/xhtml">
    908     <para>Use the <tag>dbhtml-include href</tag> PI anywhere in a
     908    <para>Use the <tag class="xmlpi">dbhtml-include href</tag> PI anywhere in a
    909909      document to cause the contents of the file referenced by the
    910910      <code>href</code> pseudo-attribute to be copied/inserted &#8220;as
     
    933933  </refdescription>
    934934  <refsynopsisdiv xmlns="http://www.w3.org/1999/xhtml">
    935     <synopsis><tag class="xmlpi">dbhtml href="<replaceable>URI</replaceable>"</tag></synopsis>
     935    <synopsis><tag class="xmlpi">dbhtml-include href="<replaceable>URI</replaceable>"</tag></synopsis>
    936936  </refsynopsisdiv>
    937937  <refparameter xmlns="http://www.w3.org/1999/xhtml">
     
    11501150</xsl:template>
    11511151
     1152<!-- There are two templates matching this PI in htmlhelp-common.xsl -->
     1153<doc:pi xmlns="" name="dbhh">
     1154  <refpurpose xmlns="http://www.w3.org/1999/xhtml">Sets topic name and topic id for context-sensitive HTML Help</refpurpose>
     1155  <refdescription xmlns="http://www.w3.org/1999/xhtml">
     1156    <para>Use the <tag class="xmlpi">dbhh</tag> PI as a child of components
     1157      that should be used as targets for context-sensitive help requests.</para>
     1158  </refdescription>
     1159  <refsynopsisdiv xmlns="http://www.w3.org/1999/xhtml">
     1160    <synopsis><tag class="xmlpi">dbhh topicname="<replaceable>name</replaceable>" topicid="<replaceable>id</replaceable>"</tag></synopsis>
     1161  </refsynopsisdiv>
     1162  <refparameter xmlns="http://www.w3.org/1999/xhtml">
     1163    <variablelist>
     1164      <varlistentry><term>topicname="<replaceable>name</replaceable>"</term>
     1165        <listitem>
     1166          <para>Specifies a unique string constant that identifies a help topic</para>
     1167        </listitem>
     1168      </varlistentry>
     1169      <varlistentry><term>topicid="<replaceable>id</replaceable>"</term>
     1170        <listitem>
     1171          <para>Specifies a unique integer value for the <literal>topicname</literal> string</para>
     1172        </listitem>
     1173      </varlistentry>
     1174    </variablelist>
     1175  </refparameter>
     1176  <refsee xmlns="http://www.w3.org/1999/xhtml" role="tcg">
     1177    <para><link role="tcg" xlink:href="HtmlHelp.html#HHContextHelp">Context-sensitive help</link></para>
     1178  </refsee>
     1179</doc:pi>
     1180
     1181
    11521182</xsl:stylesheet>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/profile-docbook.xsl

    r1c62f2a rd7c9f58  
    9696  </xsl:message>
    9797
    98   <span xmlns:saxon="http://icl.com/saxon" class="ERROR">
     98  <span style="color: red">
    9999    <xsl:text>&lt;</xsl:text>
    100100    <xsl:value-of select="name(.)"/>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/synop.xsl

    r1c62f2a rd7c9f58  
    2424    <xsl:apply-templates select="." mode="class.attribute"/>
    2525    <p>
    26       <xsl:call-template name="anchor">
    27         <xsl:with-param name="conditional" select="0"/>
    28       </xsl:call-template>
     26      <xsl:if test="..//processing-instruction('dbcmdlist')">
     27        <!-- * Placing a dbcmdlist PI as a child of a particular element -->
     28        <!-- * creates a hyperlinked list of all cmdsynopsis instances -->
     29        <!-- * that are descendants of that element; so for any -->
     30        <!-- * cmdsynopsis that is a descendant of an element containing -->
     31        <!-- * a dbcmdlist PI, we need to output an a@id instance so that -->
     32        <!-- * we will have something to link to -->
     33        <xsl:call-template name="anchor">
     34          <xsl:with-param name="conditional" select="0"/>
     35        </xsl:call-template>
     36      </xsl:if>
    2937      <xsl:apply-templates/>
    3038    </p>
     
    156164
    157165<xsl:template match="funcsynopsis">
     166  <xsl:if test="..//processing-instruction('dbfunclist')">
     167    <!-- * Placing a dbfunclist PI as a child of a particular element -->
     168    <!-- * creates a hyperlinked list of all funcsynopsis instances that -->
     169    <!-- * are descendants of that element; so for any funcsynopsis that is -->
     170    <!-- * a descendant of an element containing a dbfunclist PI, we need -->
     171    <!-- * to output an a@id instance so that we will have something to -->
     172    <!-- * link to -->
     173    <xsl:call-template name="anchor">
     174      <xsl:with-param name="conditional" select="0"/>
     175    </xsl:call-template>
     176  </xsl:if>
    158177  <xsl:call-template name="informal.object"/>
    159178</xsl:template>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/titlepage.xsl

    r1c62f2a rd7c9f58  
    119119    <xsl:apply-templates select="." mode="class.attribute"/>
    120120    <xsl:call-template name="anchor"/>
    121     <xsl:if test="not ($abstract.notitle.enabled = 0)">
     121    <xsl:if test="$abstract.notitle.enabled = 0">
    122122      <xsl:call-template name="formal.object.heading">
    123123        <xsl:with-param name="title">
     
    127127    </xsl:if>
    128128    <xsl:apply-templates mode="titlepage.mode"/>
     129    <xsl:call-template name="process.footnotes"/>
    129130  </div>
    130131</xsl:template>
     
    516517        <xsl:call-template name="make-relative-filename">
    517518          <xsl:with-param name="base.dir" select="$base.dir"/>
    518           <xsl:with-param name="base.name">
    519             <xsl:apply-templates mode="chunk-filename" select="."/>
    520           </xsl:with-param>
     519          <xsl:with-param name="base.name" select="concat($id,$html.ext)"/>
    521520        </xsl:call-template>
    522521      </xsl:variable>
  • BOOK/stylesheets/lfs-xsl/docbook-xsl-snapshot/xhtml/xref.xsl

    r1c62f2a rd7c9f58  
    855855  <xsl:param name="linkend" select="@linkend"/>
    856856  <xsl:param name="a.target"/>
     857  <xsl:param name="xhref" select="@xlink:href"/>
    857858
    858859  <xsl:variable name="content">
     
    901902    <xsl:with-param name="content" select="$content"/>
    902903    <xsl:with-param name="a.target" select="$a.target"/>
     904    <xsl:with-param name="xhref" select="$xhref"/>
    903905  </xsl:call-template>
    904906
Note: See TracChangeset for help on using the changeset viewer.