| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287 | 
							- <?xml version='1.0'?>
 
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 
-                 version='1.0'>
 
- <!-- ********************************************************************
 
-      $Id: lists.xsl 9307 2012-04-28 03:55:07Z bobstayton $
 
-      ********************************************************************
 
-      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="itemizedlist">
 
-   <!-- Handle spacing="compact" as multiple class attribute instead
 
-        of the deprecated HTML compact attribute -->
 
-   <xsl:variable name="default.class">
 
-     <xsl:value-of select="local-name()"/>
 
-     <xsl:if test="@spacing = 'compact'">
 
-       <xsl:text> compact</xsl:text>
 
-     </xsl:if>
 
-   </xsl:variable>
 
-   
 
-   <xsl:variable name="style.value">
 
-     <xsl:variable name="type">
 
-       <xsl:call-template name="list.itemsymbol"/>
 
-     </xsl:variable>
 
-     <xsl:text>list-style-type: </xsl:text>
 
-     <xsl:value-of select="$type"/>
 
-     <xsl:text>; </xsl:text>
 
-   </xsl:variable>
 
-   <div>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor"/>
 
-     <xsl:if test="title|info/title">
 
-       <xsl:call-template name="formal.object.heading"/>
 
-     </xsl:if>
 
-     <!-- Preserve order of PIs and comments -->
 
-     <xsl:apply-templates 
 
-         select="*[not(self::listitem
 
-                   or self::title
 
-                   or self::titleabbrev)]
 
-                 |comment()[not(preceding-sibling::listitem)]
 
-                 |processing-instruction()[not(preceding-sibling::listitem)]"/>
 
-     <ul>
 
-       <xsl:call-template name="generate.class.attribute">
 
-         <xsl:with-param name="class" select="$default.class"/>
 
-       </xsl:call-template>
 
-       <xsl:choose>
 
-         <xsl:when test="$css.decoration != 0">
 
-           <xsl:attribute name="style">
 
-             <xsl:value-of select="$style.value"/>
 
-           </xsl:attribute>
 
-         </xsl:when>
 
-         <xsl:when test="$make.clean.html != 0">
 
-           <!-- styled by separate css only -->
 
-         </xsl:when>
 
-         <xsl:otherwise>
 
-           <!-- use the old @type attribute -->
 
-           <xsl:attribute name="type">
 
-             <xsl:call-template name="list.itemsymbol"/>
 
-           </xsl:attribute>
 
-         </xsl:otherwise>
 
-       </xsl:choose>
 
-       <xsl:apply-templates 
 
-             select="listitem
 
-                     |comment()[preceding-sibling::listitem]
 
-                     |processing-instruction()[preceding-sibling::listitem]"/>
 
-     </ul>
 
-   </div>
 
- </xsl:template>
 
- <xsl:template match="itemizedlist/title">
 
-   <!-- nop -->
 
- </xsl:template>
 
- <xsl:template match="itemizedlist/listitem">
 
-   <xsl:variable name="mark" select="../@mark"/>
 
-   <xsl:variable name="override" select="@override"/>
 
-   <xsl:variable name="usemark">
 
-     <xsl:choose>
 
-       <xsl:when test="$override != ''">
 
-         <xsl:value-of select="$override"/>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <xsl:value-of select="$mark"/>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </xsl:variable>
 
-   <xsl:variable name="cssmark">
 
-     <xsl:choose>
 
-       <xsl:when test="$usemark = 'opencircle'">circle</xsl:when>
 
-       <xsl:when test="$usemark = 'bullet'">disc</xsl:when>
 
-       <xsl:when test="$usemark = 'box'">square</xsl:when>
 
-       <xsl:otherwise>
 
-         <xsl:value-of select="$usemark"/>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </xsl:variable>
 
-   <li>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:if test="$css.decoration = '1' and $cssmark != ''">
 
-       <xsl:attribute name="style">
 
-         <xsl:text>list-style-type: </xsl:text>
 
-         <xsl:value-of select="$cssmark"/>
 
-       </xsl:attribute>
 
-     </xsl:if>
 
-     <!-- we can't just drop the anchor in since some browsers (Opera)
 
-          get confused about line breaks if we do. So if the first child
 
-          is a para, assume the para will put in the anchor. Otherwise,
 
-          put the anchor in anyway. -->
 
-     <xsl:if test="local-name(child::*[1]) != 'para'">
 
-       <xsl:call-template name="anchor"/>
 
-     </xsl:if>
 
-     <xsl:choose>
 
-       <xsl:when test="$show.revisionflag != 0 and @revisionflag">
 
-         <div class="{@revisionflag}">
 
-           <xsl:apply-templates/>
 
-         </div>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <xsl:apply-templates/>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </li>
 
- </xsl:template>
 
- <xsl:template match="orderedlist">
 
-   <!-- Handle spacing="compact" as multiple class attribute instead
 
-        of the deprecated HTML compact attribute -->
 
-   <xsl:variable name="default.class">
 
-     <xsl:value-of select="local-name()"/>
 
-     <xsl:if test="@spacing = 'compact'">
 
-       <xsl:text> compact</xsl:text>
 
-     </xsl:if>
 
-   </xsl:variable>
 
-   
 
-   <xsl:variable name="start">
 
-     <xsl:call-template name="orderedlist-starting-number"/>
 
-   </xsl:variable>
 
-   <xsl:variable name="numeration">
 
-     <xsl:call-template name="list.numeration"/>
 
-   </xsl:variable>
 
-   <xsl:variable name="type">
 
-     <xsl:choose>
 
-       <xsl:when test="$numeration='arabic'">1</xsl:when>
 
-       <xsl:when test="$numeration='loweralpha'">a</xsl:when>
 
-       <xsl:when test="$numeration='lowerroman'">i</xsl:when>
 
-       <xsl:when test="$numeration='upperalpha'">A</xsl:when>
 
-       <xsl:when test="$numeration='upperroman'">I</xsl:when>
 
-       <!-- What!? This should never happen -->
 
-       <xsl:otherwise>
 
-         <xsl:message>
 
-           <xsl:text>Unexpected numeration: </xsl:text>
 
-           <xsl:value-of select="$numeration"/>
 
-         </xsl:message>
 
-         <xsl:value-of select="1"/>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </xsl:variable>
 
-   <div>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor"/>
 
-     <xsl:if test="title|info/title">
 
-       <xsl:call-template name="formal.object.heading"/>
 
-     </xsl:if>
 
-     <!-- Preserve order of PIs and comments -->
 
-     <xsl:apply-templates 
 
-         select="*[not(self::listitem
 
-                   or self::title
 
-                   or self::titleabbrev)]
 
-                 |comment()[not(preceding-sibling::listitem)]
 
-                 |processing-instruction()[not(preceding-sibling::listitem)]"/>
 
-     <xsl:choose>
 
-       <xsl:when test="@inheritnum='inherit' and ancestor::listitem[parent::orderedlist]">
 
-         <table border="{$table.border.off}">
 
-           <xsl:call-template name="generate.class.attribute">
 
-             <xsl:with-param name="class" select="$default.class"/>
 
-           </xsl:call-template>
 
-           <colgroup>
 
-             <col align="{$direction.align.start}" valign="top"/>
 
-             <col/>
 
-           </colgroup>
 
-           <tbody>
 
-             <xsl:apply-templates 
 
-                 mode="orderedlist-table"
 
-                 select="listitem
 
-                         |comment()[preceding-sibling::listitem]
 
-                         |processing-instruction()[preceding-sibling::listitem]"/>
 
-           </tbody>
 
-         </table>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <ol>
 
-           <xsl:call-template name="generate.class.attribute">
 
-             <xsl:with-param name="class" select="$default.class"/>
 
-           </xsl:call-template>
 
-           <xsl:if test="$start != '1'">
 
-             <xsl:attribute name="start">
 
-               <xsl:value-of select="$start"/>
 
-             </xsl:attribute>
 
-           </xsl:if>
 
-           <xsl:if test="$numeration != ''">
 
-             <xsl:attribute name="type">
 
-               <xsl:value-of select="$type"/>
 
-             </xsl:attribute>
 
-           </xsl:if>
 
-           <xsl:apply-templates 
 
-                 select="listitem
 
-                         |comment()[preceding-sibling::listitem]
 
-                         |processing-instruction()[preceding-sibling::listitem]"/>
 
-         </ol>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </div>
 
- </xsl:template>
 
- <xsl:template match="orderedlist/title">
 
-   <!-- nop -->
 
- </xsl:template>
 
- <xsl:template match="orderedlist/listitem">
 
-   <li>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:if test="@override">
 
-       <xsl:attribute name="value">
 
-         <xsl:value-of select="@override"/>
 
-       </xsl:attribute>
 
-     </xsl:if>
 
-     <!-- we can't just drop the anchor in since some browsers (Opera)
 
-          get confused about line breaks if we do. So if the first child
 
-          is a para, assume the para will put in the anchor. Otherwise,
 
-          put the anchor in anyway. -->
 
-     <xsl:if test="local-name(child::*[1]) != 'para'">
 
-       <xsl:call-template name="anchor"/>
 
-     </xsl:if>
 
-     <xsl:choose>
 
-       <xsl:when test="$show.revisionflag != 0 and @revisionflag">
 
-         <div class="{@revisionflag}">
 
-           <xsl:apply-templates/>
 
-         </div>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <xsl:apply-templates/>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </li>
 
- </xsl:template>
 
- <xsl:template match="orderedlist/listitem" mode="orderedlist-table">
 
-   <tr>
 
-     <td>
 
-       <xsl:apply-templates select="." mode="item-number"/>
 
-     </td>
 
-     <td>
 
-       <xsl:if test="local-name(child::*[1]) != 'para'">
 
-         <xsl:call-template name="id.attribute"/>
 
-         <xsl:call-template name="anchor"/>
 
-       </xsl:if>
 
-       <xsl:choose>
 
-         <xsl:when test="$show.revisionflag != 0 and @revisionflag">
 
-           <div class="{@revisionflag}">
 
-             <xsl:apply-templates/>
 
-           </div>
 
-         </xsl:when>
 
-         <xsl:otherwise>
 
-           <xsl:apply-templates/>
 
-         </xsl:otherwise>
 
-       </xsl:choose>
 
-     </td>
 
-   </tr>
 
- </xsl:template>
 
- <xsl:template match="variablelist">
 
-   <xsl:variable name="pi-presentation">
 
-     <xsl:call-template name="pi.dbhtml_list-presentation"/>
 
-   </xsl:variable>
 
-   <!-- Handle spacing="compact" as multiple class attribute instead
 
-        of the deprecated HTML compact attribute -->
 
-   <xsl:variable name="default.class">
 
-     <xsl:value-of select="local-name()"/>
 
-     <xsl:if test="@spacing = 'compact'">
 
-       <xsl:text> compact</xsl:text>
 
-     </xsl:if>
 
-   </xsl:variable>
 
-   
 
-   <xsl:variable name="presentation">
 
-     <xsl:choose>
 
-       <xsl:when test="$pi-presentation != ''">
 
-         <xsl:value-of select="$pi-presentation"/>
 
-       </xsl:when>
 
-       <xsl:when test="$variablelist.as.table != 0">
 
-         <xsl:value-of select="'table'"/>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <xsl:value-of select="'list'"/>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </xsl:variable>
 
-   <xsl:variable name="list-width">
 
-     <xsl:call-template name="pi.dbhtml_list-width"/>
 
-   </xsl:variable>
 
-   <xsl:variable name="term-width">
 
-     <xsl:call-template name="pi.dbhtml_term-width"/>
 
-   </xsl:variable>
 
-   <xsl:variable name="table-summary">
 
-     <xsl:call-template name="pi.dbhtml_table-summary"/>
 
-   </xsl:variable>
 
-   <div>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor"/>
 
-     <xsl:if test="title|info/title">
 
-       <xsl:call-template name="formal.object.heading"/>
 
-     </xsl:if>
 
-     <xsl:choose>
 
-       <xsl:when test="$presentation = 'table'">
 
-         <!-- Preserve order of PIs and comments -->
 
-         <xsl:apply-templates 
 
-           select="*[not(self::varlistentry
 
-                     or self::title
 
-                     or self::titleabbrev)]
 
-                   |comment()[not(preceding-sibling::varlistentry)]
 
-                   |processing-instruction()[not(preceding-sibling::varlistentry)]"/>
 
-         <table border="{$table.border.off}">
 
-           <xsl:call-template name="generate.class.attribute">
 
-             <xsl:with-param name="class" select="$default.class"/>
 
-           </xsl:call-template>
 
-           <xsl:if test="$list-width != ''">
 
-             <xsl:attribute name="width">
 
-               <xsl:value-of select="$list-width"/>
 
-             </xsl:attribute>
 
-           </xsl:if>
 
-           <xsl:if test="$table-summary != ''">
 
-             <xsl:attribute name="summary">
 
-               <xsl:value-of select="$table-summary"/>
 
-             </xsl:attribute>
 
-           </xsl:if>
 
-           <colgroup>
 
-             <col align="{$direction.align.start}" valign="top">
 
-               <xsl:if test="$term-width != ''">
 
-                 <xsl:attribute name="width">
 
-                   <xsl:value-of select="$term-width"/>
 
-                 </xsl:attribute>
 
-               </xsl:if>
 
-             </col>
 
-             <col/>
 
-           </colgroup>
 
-           <tbody>
 
-             <xsl:apply-templates mode="varlist-table"
 
-               select="varlistentry
 
-                       |comment()[preceding-sibling::varlistentry]
 
-                       |processing-instruction()[preceding-sibling::varlistentry]"/>
 
-           </tbody>
 
-         </table>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <!-- Preserve order of PIs and comments -->
 
-         <xsl:apply-templates 
 
-           select="*[not(self::varlistentry
 
-                     or self::title
 
-                     or self::titleabbrev)]
 
-                   |comment()[not(preceding-sibling::varlistentry)]
 
-                   |processing-instruction()[not(preceding-sibling::varlistentry)]"/>
 
-         <dl>
 
-           <xsl:call-template name="generate.class.attribute">
 
-             <xsl:with-param name="class" select="$default.class"/>
 
-           </xsl:call-template>
 
-           <xsl:apply-templates 
 
-               select="varlistentry
 
-                       |comment()[preceding-sibling::varlistentry]
 
-                       |processing-instruction()[preceding-sibling::varlistentry]"/>
 
-         </dl>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </div>
 
- </xsl:template>
 
- <xsl:template match="variablelist/title">
 
-   <!-- nop -->
 
- </xsl:template>
 
- <xsl:template match="itemizedlist/titleabbrev|orderedlist/titleabbrev">
 
-   <!--nop-->
 
- </xsl:template>
 
- <xsl:template match="variablelist/titleabbrev">
 
-   <!--nop-->
 
- </xsl:template>
 
- <xsl:template match="listitem" mode="xref">
 
-   <xsl:number format="1"/>
 
- </xsl:template>
 
- <xsl:template match="listitem/simpara" priority="2">
 
-   <!-- If a listitem contains only a single simpara, don't output
 
-        the <p> wrapper; this has the effect of creating an li
 
-        with simple text content. -->
 
-   <xsl:choose>
 
-     <xsl:when test="not(preceding-sibling::*)
 
-                     and not (following-sibling::*)">
 
-       <xsl:call-template name="anchor"/>
 
-       <xsl:apply-templates/>
 
-     </xsl:when>
 
-     <xsl:otherwise>
 
-       <p>
 
-         <xsl:call-template name="id.attribute"/>
 
-         <xsl:choose>
 
-           <xsl:when test="@role and $para.propagates.style != 0">
 
-             <xsl:call-template name="common.html.attributes">
 
-               <xsl:with-param name="class" select="@role"/>
 
-             </xsl:call-template>
 
-           </xsl:when>
 
-           <xsl:otherwise>
 
-             <xsl:call-template name="common.html.attributes"/>
 
-           </xsl:otherwise>
 
-         </xsl:choose>
 
-         <xsl:call-template name="anchor"/>
 
-         <xsl:apply-templates/>
 
-       </p>
 
-     </xsl:otherwise>
 
-   </xsl:choose>
 
- </xsl:template>
 
- <xsl:template match="varlistentry">
 
-   <dt>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor"/>
 
-     <xsl:apply-templates select="term"/>
 
-   </dt>
 
-   <dd>
 
-     <xsl:apply-templates select="listitem"/>
 
-   </dd>
 
- </xsl:template>
 
- <xsl:template match="varlistentry" mode="varlist-table">
 
-   <xsl:variable name="presentation">
 
-     <xsl:call-template name="pi.dbhtml_term-presentation">
 
-       <xsl:with-param name="node" select=".."/>
 
-     </xsl:call-template>
 
-   </xsl:variable>
 
-   <xsl:variable name="separator">
 
-     <xsl:call-template name="pi.dbhtml_term-separator">
 
-       <xsl:with-param name="node" select=".."/>
 
-     </xsl:call-template>
 
-   </xsl:variable>
 
-   <tr>
 
-     <xsl:call-template name="tr.attributes">
 
-       <xsl:with-param name="rownum">
 
-         <xsl:number from="variablelist" count="varlistentry"/>
 
-       </xsl:with-param>
 
-     </xsl:call-template>
 
-     <td>
 
-       <xsl:call-template name="id.attribute"/>
 
-       <p>
 
-       <xsl:call-template name="anchor"/>
 
-       <xsl:choose>
 
-         <xsl:when test="$presentation = 'bold'">
 
-           <strong>
 
-             <xsl:apply-templates select="term"/>
 
-             <xsl:value-of select="$separator"/>
 
-           </strong>
 
-         </xsl:when>
 
-         <xsl:when test="$presentation = 'italic'">
 
-           <em>
 
-             <xsl:apply-templates select="term"/>
 
-             <xsl:value-of select="$separator"/>
 
-           </em>
 
-         </xsl:when>
 
-         <xsl:when test="$presentation = 'bold-italic'">
 
-           <strong>
 
-             <em>
 
-               <xsl:apply-templates select="term"/>
 
-               <xsl:value-of select="$separator"/>
 
-             </em>
 
-           </strong>
 
-         </xsl:when>
 
-         <xsl:otherwise>
 
-           <xsl:apply-templates select="term"/>
 
-           <xsl:value-of select="$separator"/>
 
-         </xsl:otherwise>
 
-       </xsl:choose>
 
-       </p>
 
-     </td>
 
-     <td>
 
-       <xsl:apply-templates select="listitem"/>
 
-     </td>
 
-   </tr>
 
- </xsl:template>
 
- <xsl:template match="varlistentry/term">
 
-   <span>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor"/>
 
-     <xsl:call-template name="simple.xlink">
 
-       <xsl:with-param name="content">
 
-         <xsl:apply-templates/>
 
-       </xsl:with-param>
 
-     </xsl:call-template>
 
-     <xsl:choose>
 
-       <xsl:when test="position() = last()"/> <!-- do nothing -->
 
-       <xsl:otherwise>
 
-         <!-- * if we have multiple terms in the same varlistentry, generate -->
 
-         <!-- * a separator (", " by default) and/or an additional line -->
 
-         <!-- * break after each one except the last -->
 
-         <xsl:value-of select="$variablelist.term.separator"/>
 
-         <xsl:if test="not($variablelist.term.break.after = '0')">
 
-           <br/>
 
-         </xsl:if>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </span>
 
- </xsl:template>
 
- <xsl:template match="varlistentry/listitem">
 
-   <!-- we can't just drop the anchor in since some browsers (Opera)
 
-        get confused about line breaks if we do. So if the first child
 
-        is a para, assume the para will put in the anchor. Otherwise,
 
-        put the anchor in anyway. -->
 
-   <xsl:if test="local-name(child::*[1]) != 'para'">
 
-     <xsl:call-template name="anchor"/>
 
-   </xsl:if>
 
-   <xsl:choose>
 
-     <xsl:when test="$show.revisionflag != 0 and @revisionflag">
 
-       <div class="{@revisionflag}">
 
-         <xsl:apply-templates/>
 
-       </div>
 
-     </xsl:when>
 
-     <xsl:otherwise>
 
-       <xsl:apply-templates/>
 
-     </xsl:otherwise>
 
-   </xsl:choose>
 
- </xsl:template>
 
- <!-- ==================================================================== -->
 
- <xsl:template match="simplelist">
 
-   <!-- with no type specified, the default is 'vert' -->
 
-   <xsl:call-template name="anchor"/>
 
-   <table border="{$table.border.off}">
 
-     <xsl:if test="$div.element != 'section'">
 
-       <xsl:attribute name="summary">Simple list</xsl:attribute>
 
-     </xsl:if>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="simplelist.vert">
 
-       <xsl:with-param name="cols">
 
-         <xsl:choose>
 
-           <xsl:when test="@columns">
 
-             <xsl:value-of select="@columns"/>
 
-           </xsl:when>
 
-           <xsl:otherwise>1</xsl:otherwise>
 
-         </xsl:choose>
 
-       </xsl:with-param>
 
-     </xsl:call-template>
 
-   </table>
 
- </xsl:template>
 
- <xsl:template match="simplelist[@type='inline']">
 
-   <span>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <!-- if dbchoice PI exists, use that to determine the choice separator -->
 
-     <!-- (that is, equivalent of "and" or "or" in current locale), or literal -->
 
-     <!-- value of "choice" otherwise -->
 
-     <xsl:variable name="localized-choice-separator">
 
-       <xsl:choose>
 
-         <xsl:when test="processing-instruction('dbchoice')">
 
-           <xsl:call-template name="select.choice.separator"/>
 
-         </xsl:when>
 
-         <xsl:otherwise>
 
-           <!-- empty -->
 
-         </xsl:otherwise>
 
-       </xsl:choose>
 
-     </xsl:variable>
 
-   
 
-     <xsl:for-each select="member">
 
-       <xsl:call-template name="simple.xlink">
 
-         <xsl:with-param name="content">
 
-           <xsl:apply-templates/>
 
-         </xsl:with-param>
 
-       </xsl:call-template>
 
-       <xsl:choose>
 
-         <xsl:when test="position() = last()"/> <!-- do nothing -->
 
-         <xsl:otherwise>
 
-           <xsl:text>, </xsl:text>
 
-           <xsl:if test="position() = last() - 1">
 
-             <xsl:if test="$localized-choice-separator != ''">
 
-               <xsl:value-of select="$localized-choice-separator"/>
 
-               <xsl:text> </xsl:text>
 
-             </xsl:if>
 
-           </xsl:if>
 
-         </xsl:otherwise>
 
-       </xsl:choose>
 
-     </xsl:for-each>
 
-   </span>
 
- </xsl:template>
 
- <xsl:template match="simplelist[@type='horiz']">
 
-   <xsl:call-template name="anchor"/>
 
-   <table border="{$table.border.off}">
 
-     <xsl:if test="$div.element != 'section'">
 
-       <xsl:attribute name="summary">Simple list</xsl:attribute>
 
-     </xsl:if>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="simplelist.horiz">
 
-       <xsl:with-param name="cols">
 
-         <xsl:choose>
 
-           <xsl:when test="@columns">
 
-             <xsl:value-of select="@columns"/>
 
-           </xsl:when>
 
-           <xsl:otherwise>1</xsl:otherwise>
 
-         </xsl:choose>
 
-       </xsl:with-param>
 
-     </xsl:call-template>
 
-   </table>
 
- </xsl:template>
 
- <xsl:template match="simplelist[@type='vert']">
 
-   <xsl:call-template name="anchor"/>
 
-   <table border="{$table.border.off}">
 
-     <xsl:if test="$div.element != 'section'">
 
-       <xsl:attribute name="summary">Simple list</xsl:attribute>
 
-     </xsl:if>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="simplelist.vert">
 
-       <xsl:with-param name="cols">
 
-         <xsl:choose>
 
-           <xsl:when test="@columns">
 
-             <xsl:value-of select="@columns"/>
 
-           </xsl:when>
 
-           <xsl:otherwise>1</xsl:otherwise>
 
-         </xsl:choose>
 
-       </xsl:with-param>
 
-     </xsl:call-template>
 
-   </table>
 
- </xsl:template>
 
- <xsl:template name="simplelist.horiz">
 
-   <xsl:param name="cols">1</xsl:param>
 
-   <xsl:param name="cell">1</xsl:param>
 
-   <xsl:param name="members" select="./member"/>
 
-   <xsl:if test="$cell <= count($members)">
 
-     <tr>
 
-       <xsl:call-template name="tr.attributes">
 
-         <xsl:with-param name="row" select="$members[1]"/>
 
-         <xsl:with-param name="rownum" select="(($cell - 1) div $cols) + 1"/>
 
-       </xsl:call-template>
 
-       <xsl:call-template name="simplelist.horiz.row">
 
-         <xsl:with-param name="cols" select="$cols"/>
 
-         <xsl:with-param name="cell" select="$cell"/>
 
-         <xsl:with-param name="members" select="$members"/>
 
-       </xsl:call-template>
 
-    </tr>
 
-     <xsl:call-template name="simplelist.horiz">
 
-       <xsl:with-param name="cols" select="$cols"/>
 
-       <xsl:with-param name="cell" select="$cell + $cols"/>
 
-       <xsl:with-param name="members" select="$members"/>
 
-     </xsl:call-template>
 
-   </xsl:if>
 
- </xsl:template>
 
- <xsl:template name="simplelist.horiz.row">
 
-   <xsl:param name="cols">1</xsl:param>
 
-   <xsl:param name="cell">1</xsl:param>
 
-   <xsl:param name="members" select="./member"/>
 
-   <xsl:param name="curcol">1</xsl:param>
 
-   <xsl:if test="$curcol <= $cols">
 
-     <td>
 
-       <xsl:choose>
 
-         <xsl:when test="$members[position()=$cell]">
 
-           <xsl:apply-templates select="$members[position()=$cell]"/>
 
-         </xsl:when>
 
-         <xsl:otherwise>
 
-           <xsl:text> </xsl:text>
 
-         </xsl:otherwise>
 
-       </xsl:choose>
 
-     </td>
 
-     <xsl:call-template name="simplelist.horiz.row">
 
-       <xsl:with-param name="cols" select="$cols"/>
 
-       <xsl:with-param name="cell" select="$cell+1"/>
 
-       <xsl:with-param name="members" select="$members"/>
 
-       <xsl:with-param name="curcol" select="$curcol+1"/>
 
-     </xsl:call-template>
 
-   </xsl:if>
 
- </xsl:template>
 
- <xsl:template name="simplelist.vert">
 
-   <xsl:param name="cols">1</xsl:param>
 
-   <xsl:param name="cell">1</xsl:param>
 
-   <xsl:param name="members" select="./member"/>
 
-   <xsl:param name="rows"
 
-              select="floor((count($members)+$cols - 1) div $cols)"/>
 
-   <xsl:if test="$cell <= $rows">
 
-     <tr>
 
-       <xsl:call-template name="tr.attributes">
 
-         <xsl:with-param name="row" select="$members[1]"/>
 
-         <xsl:with-param name="rownum" select="$cell"/>
 
-       </xsl:call-template>
 
-       <xsl:call-template name="simplelist.vert.row">
 
-         <xsl:with-param name="cols" select="$cols"/>
 
-         <xsl:with-param name="rows" select="$rows"/>
 
-         <xsl:with-param name="cell" select="$cell"/>
 
-         <xsl:with-param name="members" select="$members"/>
 
-       </xsl:call-template>
 
-     </tr>
 
-     <xsl:call-template name="simplelist.vert">
 
-       <xsl:with-param name="cols" select="$cols"/>
 
-       <xsl:with-param name="cell" select="$cell+1"/>
 
-       <xsl:with-param name="members" select="$members"/>
 
-       <xsl:with-param name="rows" select="$rows"/>
 
-     </xsl:call-template>
 
-   </xsl:if>
 
- </xsl:template>
 
- <xsl:template name="simplelist.vert.row">
 
-   <xsl:param name="cols">1</xsl:param>
 
-   <xsl:param name="rows">1</xsl:param>
 
-   <xsl:param name="cell">1</xsl:param>
 
-   <xsl:param name="members" select="./member"/>
 
-   <xsl:param name="curcol">1</xsl:param>
 
-   <xsl:if test="$curcol <= $cols">
 
-     <td>
 
-       <xsl:choose>
 
-         <xsl:when test="$members[position()=$cell]">
 
-           <xsl:apply-templates select="$members[position()=$cell]"/>
 
-         </xsl:when>
 
-         <xsl:otherwise>
 
-           <xsl:text> </xsl:text>
 
-         </xsl:otherwise>
 
-       </xsl:choose>
 
-     </td>
 
-     <xsl:call-template name="simplelist.vert.row">
 
-       <xsl:with-param name="cols" select="$cols"/>
 
-       <xsl:with-param name="rows" select="$rows"/>
 
-       <xsl:with-param name="cell" select="$cell+$rows"/>
 
-       <xsl:with-param name="members" select="$members"/>
 
-       <xsl:with-param name="curcol" select="$curcol+1"/>
 
-     </xsl:call-template>
 
-   </xsl:if>
 
- </xsl:template>
 
- <xsl:template match="member">
 
-   <xsl:call-template name="anchor"/>
 
-   <xsl:call-template name="simple.xlink">
 
-     <xsl:with-param name="content">
 
-       <xsl:apply-templates/>
 
-     </xsl:with-param>
 
-   </xsl:call-template>
 
- </xsl:template>
 
- <!-- ==================================================================== -->
 
- <xsl:template match="procedure">
 
-   <xsl:variable name="param.placement"
 
-                 select="substring-after(normalize-space($formal.title.placement),
 
-                                         concat(local-name(.), ' '))"/>
 
-   <xsl:variable name="placement">
 
-     <xsl:choose>
 
-       <xsl:when test="contains($param.placement, ' ')">
 
-         <xsl:value-of select="substring-before($param.placement, ' ')"/>
 
-       </xsl:when>
 
-       <xsl:when test="$param.placement = ''">before</xsl:when>
 
-       <xsl:otherwise>
 
-         <xsl:value-of select="$param.placement"/>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </xsl:variable>
 
-   <!-- Preserve order of PIs and comments -->
 
-   <xsl:variable name="preamble"
 
-         select="*[not(self::step
 
-                   or self::title
 
-                   or self::titleabbrev)]
 
-                 |comment()[not(preceding-sibling::step)]
 
-                 |processing-instruction()[not(preceding-sibling::step)]"/>
 
-   <div>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute">
 
-       <xsl:with-param name="conditional">
 
-         <xsl:choose>
 
-           <xsl:when test="title">0</xsl:when>
 
-           <xsl:otherwise>1</xsl:otherwise>
 
-         </xsl:choose>
 
-       </xsl:with-param>
 
-     </xsl:call-template>
 
-     <xsl:call-template name="anchor">
 
-       <xsl:with-param name="conditional">
 
-         <xsl:choose>
 
-           <xsl:when test="title">0</xsl:when>
 
-           <xsl:otherwise>1</xsl:otherwise>
 
-         </xsl:choose>
 
-       </xsl:with-param>
 
-     </xsl:call-template>
 
-     <xsl:if test="(title or info/title) and $placement = 'before'">
 
-       <xsl:call-template name="formal.object.heading"/>
 
-     </xsl:if>
 
-     <xsl:apply-templates select="$preamble"/>
 
-     <xsl:choose>
 
-       <xsl:when test="count(step) = 1">
 
-         <ul>
 
-           <xsl:call-template name="generate.class.attribute"/>
 
-           <xsl:apply-templates 
 
-             select="step
 
-                     |comment()[preceding-sibling::step]
 
-                     |processing-instruction()[preceding-sibling::step]"/>
 
-         </ul>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <ol>
 
-           <xsl:call-template name="generate.class.attribute"/>
 
-           <xsl:attribute name="type">
 
-             <xsl:value-of select="substring($procedure.step.numeration.formats,1,1)"/>
 
-           </xsl:attribute>
 
-           <xsl:apply-templates 
 
-             select="step
 
-                     |comment()[preceding-sibling::step]
 
-                     |processing-instruction()[preceding-sibling::step]"/>
 
-         </ol>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-     <xsl:if test="(title or info/title) and $placement != 'before'">
 
-       <xsl:call-template name="formal.object.heading"/>
 
-     </xsl:if>
 
-   </div>
 
- </xsl:template>
 
- <xsl:template match="procedure/title">
 
-   <!-- nop -->
 
- </xsl:template>
 
- <xsl:template match="substeps">
 
-   <xsl:variable name="numeration">
 
-     <xsl:call-template name="procedure.step.numeration"/>
 
-   </xsl:variable>
 
-   <xsl:call-template name="anchor"/>
 
-   <ol type="{$numeration}">
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:apply-templates/>
 
-   </ol>
 
- </xsl:template>
 
- <xsl:template match="step">
 
-   <li>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor"/>
 
-     <xsl:apply-templates/>
 
-   </li>
 
- </xsl:template>
 
- <xsl:template match="stepalternatives">
 
-   <xsl:call-template name="anchor"/>
 
-   <ul>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:apply-templates/>
 
-   </ul>
 
- </xsl:template>
 
- <xsl:template match="step/title">
 
-   <p>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <b>
 
-       <xsl:apply-templates/>
 
-     </b>
 
-   </p>
 
- </xsl:template>
 
- <!-- ==================================================================== -->
 
- <xsl:template match="segmentedlist">
 
-   <xsl:variable name="presentation">
 
-     <xsl:call-template name="pi.dbhtml_list-presentation"/>
 
-   </xsl:variable>
 
-   <div>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor"/>
 
-     <xsl:choose>
 
-       <xsl:when test="$presentation = 'table'">
 
-         <xsl:apply-templates select="." mode="seglist-table"/>
 
-       </xsl:when>
 
-       <xsl:when test="$presentation = 'list'">
 
-         <xsl:apply-templates/>
 
-       </xsl:when>
 
-       <xsl:when test="$segmentedlist.as.table != 0">
 
-         <xsl:apply-templates select="." mode="seglist-table"/>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <xsl:apply-templates/>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </div>
 
- </xsl:template>
 
- <xsl:template match="segmentedlist/title">
 
-   <div>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <strong>
 
-       <span>
 
-         <xsl:call-template name="generate.class.attribute"/>
 
-         <xsl:apply-templates/>
 
-       </span>
 
-     </strong>
 
-   </div>
 
- </xsl:template>
 
- <xsl:template match="segtitle">
 
- </xsl:template>
 
- <xsl:template match="segtitle" mode="segtitle-in-seg">
 
-   <xsl:apply-templates/>
 
- </xsl:template>
 
- <xsl:template match="seglistitem">
 
-   <div>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor"/>
 
-     <xsl:apply-templates/>
 
-   </div>
 
- </xsl:template>
 
- <xsl:template match="seg">
 
-   <xsl:variable name="segnum" select="count(preceding-sibling::seg)+1"/>
 
-   <xsl:variable name="seglist" select="ancestor::segmentedlist"/>
 
-   <xsl:variable name="segtitles" select="$seglist/segtitle"/>
 
-   <!--
 
-      Note: segtitle is only going to be the right thing in a well formed
 
-      SegmentedList.  If there are too many Segs or too few SegTitles,
 
-      you'll get something odd...maybe an error
 
-   -->
 
-   <div>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <strong>
 
-       <span class="segtitle">
 
-         <xsl:apply-templates select="$segtitles[$segnum=position()]"
 
-                              mode="segtitle-in-seg"/>
 
-         <xsl:text>: </xsl:text>
 
-       </span>
 
-     </strong>
 
-     <xsl:apply-templates/>
 
-   </div>
 
- </xsl:template>
 
- <xsl:template match="segmentedlist" mode="seglist-table">
 
-   <xsl:variable name="table-summary">
 
-     <xsl:call-template name="pi.dbhtml_table-summary"/>
 
-   </xsl:variable>
 
-   <xsl:variable name="list-width">
 
-     <xsl:call-template name="pi.dbhtml_list-width"/>
 
-   </xsl:variable>
 
-   <xsl:apply-templates select="title"/>
 
-   <table border="{$table.border.off}">
 
-     <xsl:if test="$list-width != ''">
 
-       <xsl:attribute name="width">
 
-         <xsl:value-of select="$list-width"/>
 
-       </xsl:attribute>
 
-     </xsl:if>
 
-     <xsl:if test="$table-summary != '' and $div.element != 'section'">
 
-       <xsl:attribute name="summary">
 
-         <xsl:value-of select="$table-summary"/>
 
-       </xsl:attribute>
 
-     </xsl:if>
 
-     <thead>
 
-       <tr class="segtitle">
 
-         <xsl:call-template name="tr.attributes">
 
-           <xsl:with-param name="row" select="segtitle[1]"/>
 
-           <xsl:with-param name="rownum" select="1"/>
 
-         </xsl:call-template>
 
-         <xsl:apply-templates select="segtitle" mode="seglist-table"/>
 
-       </tr>
 
-     </thead>
 
-     <tbody>
 
-       <xsl:apply-templates select="seglistitem" mode="seglist-table"/>
 
-     </tbody>
 
-   </table>
 
- </xsl:template>
 
- <xsl:template match="segtitle" mode="seglist-table">
 
-   <th><xsl:apply-templates/></th>
 
- </xsl:template>
 
- <xsl:template match="seglistitem" mode="seglist-table">
 
-   <xsl:variable name="seglinum">
 
-     <xsl:number from="segmentedlist" count="seglistitem"/>
 
-   </xsl:variable>
 
-   <tr>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="tr.attributes">
 
-       <xsl:with-param name="rownum" select="$seglinum + 1"/>
 
-     </xsl:call-template>
 
-     <xsl:apply-templates mode="seglist-table"/>
 
-   </tr>
 
- </xsl:template>
 
- <xsl:template match="seg" mode="seglist-table">
 
-   <td>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:apply-templates/>
 
-   </td>
 
- </xsl:template>
 
- <xsl:template match="seg[1]" mode="seglist-table">
 
-   <td>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor">
 
-       <xsl:with-param name="node" select="ancestor::seglistitem"/>
 
-     </xsl:call-template>
 
-     <xsl:apply-templates/>
 
-   </td>
 
- </xsl:template>
 
- <!-- ==================================================================== -->
 
- <xsl:template match="calloutlist">
 
-   <div>
 
-     <xsl:call-template name="common.html.attributes"/>
 
-     <xsl:call-template name="id.attribute"/>
 
-     <xsl:call-template name="anchor"/>
 
-     <xsl:if test="title|info/title">
 
-       <xsl:call-template name="formal.object.heading"/>
 
-     </xsl:if>
 
-     <!-- Preserve order of PIs and comments -->
 
-     <xsl:apply-templates 
 
-          select="*[not(self::callout or self::title or self::titleabbrev)]
 
-                    |comment()[not(preceding-sibling::callout)]
 
-                    |processing-instruction()[not(preceding-sibling::callout)]"/>
 
-     <xsl:choose>
 
-       <xsl:when test="$callout.list.table != 0">
 
-         <table border="{$table.border.off}">
 
-           <xsl:if test="$div.element != 'section'">
 
-             <xsl:attribute name="summary">Callout list</xsl:attribute>
 
-           </xsl:if>
 
-           <xsl:apply-templates select="callout
 
-                                 |comment()[preceding-sibling::callout]
 
-                                 |processing-instruction()[preceding-sibling::callout]"/>
 
-         </table>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <dl>
 
-           <xsl:apply-templates select="." mode="class.attribute"/>
 
-           <xsl:apply-templates select="callout
 
-                                 |comment()[preceding-sibling::callout]
 
-                                 |processing-instruction()[preceding-sibling::callout]"/>
 
-         </dl>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-   </div>
 
- </xsl:template>
 
- <xsl:template match="calloutlist/title">
 
- </xsl:template>
 
- <xsl:template match="callout">
 
-   <xsl:choose>
 
-     <xsl:when test="$callout.list.table != 0">
 
-       <tr>
 
-         <xsl:call-template name="tr.attributes">
 
-           <xsl:with-param name="rownum">
 
-             <xsl:number from="calloutlist" count="callout"/>
 
-           </xsl:with-param>
 
-         </xsl:call-template>
 
-         <td width="5%" valign="top" align="{$direction.align.start}">
 
-           <xsl:call-template name="id.attribute"/>
 
-           <p>
 
-             <xsl:call-template name="anchor"/>
 
-             <xsl:call-template name="callout.arearefs">
 
-               <xsl:with-param name="arearefs" select="@arearefs"/>
 
-             </xsl:call-template>
 
-           </p>
 
-         </td>
 
-         <td valign="top" align="{$direction.align.start}">
 
-           <xsl:apply-templates/>
 
-         </td>
 
-       </tr>
 
-     </xsl:when>
 
-     <xsl:otherwise>
 
-       <dt>
 
-         <xsl:call-template name="id.attribute"/>
 
-         <xsl:call-template name="anchor"/>
 
-         <xsl:call-template name="callout.arearefs">
 
-           <xsl:with-param name="arearefs" select="@arearefs"/>
 
-         </xsl:call-template>
 
-       </dt>
 
-       <dd><xsl:apply-templates/></dd>
 
-     </xsl:otherwise>
 
-   </xsl:choose>
 
- </xsl:template>
 
- <xsl:template match="callout/simpara" priority="2">
 
-   <!-- If a callout contains only a single simpara, don't output
 
-        the <p> wrapper; this has the effect of creating an li
 
-        with simple text content. -->
 
-   <xsl:choose>
 
-     <xsl:when test="not(preceding-sibling::*)
 
-                     and not (following-sibling::*)">
 
-       <xsl:call-template name="anchor"/>
 
-       <xsl:apply-templates/>
 
-     </xsl:when>
 
-     <xsl:otherwise>
 
-       <p>
 
-         <xsl:call-template name="id.attribute"/>
 
-         <xsl:if test="@role and $para.propagates.style != 0">
 
-           <xsl:choose>
 
-             <xsl:when test="@role and $para.propagates.style != 0">
 
-               <xsl:call-template name="common.html.attributes">
 
-                 <xsl:with-param name="class" select="@role"/>
 
-               </xsl:call-template>
 
-             </xsl:when>
 
-             <xsl:otherwise>
 
-               <xsl:call-template name="common.html.attributes"/>
 
-             </xsl:otherwise>
 
-           </xsl:choose>
 
-         </xsl:if>
 
-         <xsl:call-template name="anchor"/>
 
-         <xsl:apply-templates/>
 
-       </p>
 
-     </xsl:otherwise>
 
-   </xsl:choose>
 
- </xsl:template>
 
- <xsl:template name="callout.arearefs">
 
-   <xsl:param name="arearefs"></xsl:param>
 
-   <xsl:if test="$arearefs!=''">
 
-     <xsl:choose>
 
-       <xsl:when test="substring-before($arearefs,' ')=''">
 
-         <xsl:call-template name="callout.arearef">
 
-           <xsl:with-param name="arearef" select="$arearefs"/>
 
-         </xsl:call-template>
 
-       </xsl:when>
 
-       <xsl:otherwise>
 
-         <xsl:call-template name="callout.arearef">
 
-           <xsl:with-param name="arearef"
 
-                           select="substring-before($arearefs,' ')"/>
 
-         </xsl:call-template>
 
-       </xsl:otherwise>
 
-     </xsl:choose>
 
-     <xsl:call-template name="callout.arearefs">
 
-       <xsl:with-param name="arearefs"
 
-                       select="substring-after($arearefs,' ')"/>
 
-     </xsl:call-template>
 
-   </xsl:if>
 
- </xsl:template>
 
- <xsl:template name="callout.arearef">
 
-   <xsl:param name="arearef"></xsl:param>
 
-   <xsl:variable name="targets" select="key('id',$arearef)"/>
 
-   <xsl:variable name="target" select="$targets[1]"/>
 
-   <xsl:call-template name="check.id.unique">
 
-     <xsl:with-param name="linkend" select="$arearef"/>
 
-   </xsl:call-template>
 
-   <xsl:choose>
 
-     <xsl:when test="count($target)=0">
 
-       <xsl:text>???</xsl:text>
 
-     </xsl:when>
 
-     <xsl:when test="local-name($target)='co'">
 
-       <a>
 
-         <xsl:attribute name="href">
 
-           <xsl:text>#</xsl:text>
 
-           <xsl:value-of select="$arearef"/>
 
-         </xsl:attribute>
 
-         <xsl:apply-templates select="$target" mode="callout-bug"/>
 
-       </a>
 
-       <xsl:text> </xsl:text>
 
-     </xsl:when>
 
-     <xsl:when test="local-name($target)='areaset'">
 
-       <xsl:call-template name="callout-bug">
 
-         <xsl:with-param name="conum">
 
-           <xsl:apply-templates select="$target" mode="conumber"/>
 
-         </xsl:with-param>
 
-       </xsl:call-template>
 
-     </xsl:when>
 
-     <xsl:when test="local-name($target)='area'">
 
-       <xsl:choose>
 
-         <xsl:when test="$target/parent::areaset">
 
-           <xsl:call-template name="callout-bug">
 
-             <xsl:with-param name="conum">
 
-               <xsl:apply-templates select="$target/parent::areaset"
 
-                                    mode="conumber"/>
 
-             </xsl:with-param>
 
-           </xsl:call-template>
 
-         </xsl:when>
 
-         <xsl:otherwise>
 
-           <xsl:call-template name="callout-bug">
 
-             <xsl:with-param name="conum">
 
-               <xsl:apply-templates select="$target" mode="conumber"/>
 
-             </xsl:with-param>
 
-           </xsl:call-template>
 
-         </xsl:otherwise>
 
-       </xsl:choose>
 
-     </xsl:when>
 
-     <xsl:otherwise>
 
-       <xsl:text>???</xsl:text>
 
-     </xsl:otherwise>
 
-   </xsl:choose>
 
- </xsl:template>
 
- <!-- ==================================================================== -->
 
- <xsl:template name="orderedlist-starting-number">
 
-   <xsl:param name="list" select="."/>
 
-   <xsl:variable name="pi-start">
 
-     <xsl:call-template name="pi.dbhtml_start">
 
-       <xsl:with-param name="node" select="$list"/>
 
-     </xsl:call-template>
 
-   </xsl:variable>
 
-   <xsl:call-template name="output-orderedlist-starting-number">
 
-     <xsl:with-param name="list" select="$list"/>
 
-     <xsl:with-param name="pi-start" select="$pi-start"/>
 
-   </xsl:call-template>
 
- </xsl:template>
 
- </xsl:stylesheet>
 
 
  |