| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480 | <?xml version="1.0"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"                version="1.0"><xsl:output method="html"/><xsl:param name="nav.graphics" select="1"/><xsl:param name="nav.pointer" select="1"/><xsl:param name="nav.revisionflag" select="1"/><xsl:param name="toc.spacer.text">   </xsl:param><xsl:param name="toc.spacer.image">graphics/blank.gif</xsl:param><xsl:param name="nav.icon.path">graphics/navicons/</xsl:param><xsl:param name="nav.icon.extension">.gif</xsl:param><!-- styles: folder, folder16, plusminus, triangle, arrow --><xsl:param name="nav.icon.style">triangle</xsl:param><xsl:param name="nav.text.spacer"> </xsl:param><xsl:param name="nav.text.current.open">+</xsl:param><xsl:param name="nav.text.current.page">+</xsl:param><xsl:param name="nav.text.other.open"> </xsl:param><xsl:param name="nav.text.other.closed"> </xsl:param><xsl:param name="nav.text.other.page"> </xsl:param><xsl:param name="nav.text.revisionflag.added">New</xsl:param><xsl:param name="nav.text.revisionflag.changed">Changed</xsl:param><xsl:param name="nav.text.revisionflag.deleted"></xsl:param><xsl:param name="nav.text.revisionflag.off"></xsl:param><xsl:param name="nav.text.pointer"><-</xsl:param><xsl:param name="toc.expand.depth" select="1"/><!-- ==================================================================== --> <xsl:template match="toc/title|tocentry/title|titleabbrev">  <xsl:apply-templates/></xsl:template><xsl:template match="toc">  <xsl:param name="pageid" select="@id"/>  <xsl:variable name="relpath">    <xsl:call-template name="toc-rel-path">      <xsl:with-param name="pageid" select="$pageid"/>    </xsl:call-template>  </xsl:variable>  <xsl:variable name="homebanner"                select="/autolayout/config[@param='homebanner-tabular'][1]"/>  <xsl:variable name="banner"                select="/autolayout/config[@param='banner-tabular'][1]"/>  <xsl:choose>    <xsl:when test="$pageid = @id">      <img align="left" border="0">        <xsl:attribute name="src">          <xsl:value-of select="$relpath"/>          <xsl:value-of select="$homebanner/@value"/>        </xsl:attribute>        <xsl:attribute name="alt">          <xsl:value-of select="$homebanner/@altval"/>        </xsl:attribute>      </img>      <br clear="all"/>      <br/>    </xsl:when>    <xsl:otherwise>      <a href="{$relpath}{@dir}{$filename-prefix}{@filename}">        <img align="left" border="0">          <xsl:attribute name="src">            <xsl:value-of select="$relpath"/>            <xsl:value-of select="$banner/@value"/>          </xsl:attribute>          <xsl:attribute name="alt">            <xsl:value-of select="$banner/@altval"/>          </xsl:attribute>        </img>      </a>      <br clear="all"/>      <br/>    </xsl:otherwise>  </xsl:choose>  <xsl:apply-templates select="tocentry">    <xsl:with-param name="pageid" select="$pageid"/>    <xsl:with-param name="relpath" select="$relpath"/>  </xsl:apply-templates>  <br/></xsl:template><!-- ==================================================================== --><xsl:template match="tocentry">  <xsl:param name="pageid" select="@id"/>  <xsl:param name="toclevel" select="count(ancestor::*)"/>  <xsl:param name="relpath" select="''"/>  <xsl:param name="revisionflag" select="@revisionflag"/>  <xsl:variable name="page" select="."/>  <xsl:variable name="target"                select="($page/descendant-or-self::tocentry[not(@tocskip) or @tocskip = '0']                       |$page/following::tocentry[@tocskip and @tocskip='0'])[1]"/>  <xsl:variable name="depth" select="count(ancestor::*)-1"/>  <xsl:variable name="isdescendant">    <xsl:choose>      <xsl:when test="ancestor::*[@id=$pageid]">1</xsl:when>      <xsl:otherwise>0</xsl:otherwise>    </xsl:choose>  </xsl:variable>  <xsl:variable name="hasdescendant">    <xsl:choose>      <xsl:when test="descendant::tocentry != ''">1</xsl:when>      <xsl:otherwise>0</xsl:otherwise>    </xsl:choose>  </xsl:variable>  <xsl:variable name="isancestor">    <xsl:choose>      <xsl:when test="descendant::*[@id=$pageid]">1</xsl:when>      <xsl:otherwise>0</xsl:otherwise>    </xsl:choose>  </xsl:variable>  <xsl:variable name="use.toc.expand.depth">    <xsl:variable name="config-param" select="ancestor::autolayout/config[@param='toc.expand.depth']/@value"/>    <xsl:choose>      <!-- toc.expand.depth attribute is not in DTD -->      <xsl:when test="ancestor::toc/@toc.expand.depth">        <xsl:value-of select="ancestor::toc/@toc.expand.depth"/>      </xsl:when>      <xsl:when test="floor($config-param) > 0">        <xsl:value-of select="$config-param"/>      </xsl:when>      <xsl:otherwise>        <xsl:value-of select="$toc.expand.depth"/>      </xsl:otherwise>    </xsl:choose>  </xsl:variable>  <xsl:variable name="is.open">    <xsl:choose>      <xsl:when test="$pageid = @id                      or $isancestor='1'                      or $depth < $use.toc.expand.depth">1</xsl:when>      <xsl:otherwise>0</xsl:otherwise>    </xsl:choose>  </xsl:variable>  <!-- For any entry in the TOC:       1. It is the current page          a. it is a leaf             current/leaf          b. it is an open page       current/open       2. It is not the current page          a. it is a leaf             other/leaf          b. it is an open page       other/open          c. it is a closed page      other/closed  -->  <xsl:variable name="preceding-icon">    <xsl:value-of select="$relpath"/>    <xsl:value-of select="$nav.icon.path"/>    <xsl:value-of select="$nav.icon.style"/>    <xsl:choose>      <xsl:when test="$pageid=@id">        <xsl:choose>          <xsl:when test="$hasdescendant != 0">            <xsl:text>/current/open</xsl:text>          </xsl:when>          <xsl:otherwise>            <xsl:text>/current/leaf</xsl:text>          </xsl:otherwise>        </xsl:choose>      </xsl:when>      <xsl:otherwise>        <xsl:choose>          <xsl:when test="$hasdescendant = 0">            <xsl:text>/other/leaf</xsl:text>          </xsl:when>          <xsl:when test="$is.open != 0">            <xsl:text>/other/open</xsl:text>          </xsl:when>          <xsl:otherwise>            <xsl:text>/other/closed</xsl:text>          </xsl:otherwise>        </xsl:choose>      </xsl:otherwise>    </xsl:choose>    <xsl:value-of select="$nav.icon.extension"/>  </xsl:variable>  <xsl:variable name="preceding-text">    <xsl:choose>      <xsl:when test="$pageid=@id">        <xsl:choose>          <xsl:when test="$hasdescendant != 0">            <xsl:value-of select="$nav.text.current.open"/>          </xsl:when>          <xsl:otherwise>            <xsl:value-of select="$nav.text.current.page"/>          </xsl:otherwise>        </xsl:choose>      </xsl:when>      <xsl:otherwise>        <xsl:choose>          <xsl:when test="$isancestor != 0">            <xsl:value-of select="$nav.text.other.open"/>          </xsl:when>          <xsl:when test="$hasdescendant != 0">            <xsl:value-of select="$nav.text.other.closed"/>          </xsl:when>          <xsl:otherwise>            <xsl:value-of select="$nav.text.other.page"/>          </xsl:otherwise>        </xsl:choose>      </xsl:otherwise>    </xsl:choose>  </xsl:variable>  <xsl:variable name="following-icon">    <xsl:value-of select="$relpath"/>    <xsl:value-of select="$nav.icon.path"/>    <xsl:value-of select="$nav.icon.style"/>    <xsl:text>/current/pointer</xsl:text>    <xsl:value-of select="$nav.icon.extension"/>  </xsl:variable>  <xsl:variable name="following-text">    <xsl:value-of select="$nav.text.pointer"/>  </xsl:variable>  <xsl:variable name="revisionflag-icon">    <xsl:value-of select="$relpath"/>    <xsl:value-of select="$nav.icon.path"/>    <xsl:value-of select="$nav.icon.style"/>    <xsl:text>/</xsl:text>    <xsl:value-of select="$revisionflag"/>    <xsl:value-of select="$nav.icon.extension"/>  </xsl:variable>  <xsl:variable name="revisionflag-text">    <xsl:choose>      <xsl:when test="$revisionflag = 'changed'">        <xsl:value-of select="$nav.text.revisionflag.changed"/>      </xsl:when>      <xsl:when test="$revisionflag = 'added'">        <xsl:value-of select="$nav.text.revisionflag.added"/>      </xsl:when>      <xsl:when test="$revisionflag = 'deleted'">        <xsl:value-of select="$nav.text.revisionflag.deleted"/>      </xsl:when>      <xsl:otherwise>        <xsl:value-of select="$nav.text.revisionflag.off"/>      </xsl:otherwise>    </xsl:choose>  </xsl:variable>  <span>    <xsl:if test="$toclevel = 2">      <xsl:attribute name="class">        <xsl:text>toplevel</xsl:text>      </xsl:attribute>    </xsl:if>    <xsl:if test="$toclevel > 2">      <xsl:attribute name="class">        <xsl:text>shrink</xsl:text>        <xsl:value-of select="$toclevel - 2"/>      </xsl:attribute>    </xsl:if>    <xsl:call-template name="insert.spacers">      <xsl:with-param name="count" select="$toclevel - 1"/>      <xsl:with-param name="relpath" select="$relpath"/>    </xsl:call-template>    <xsl:choose>      <xsl:when test="$nav.graphics != 0">        <xsl:call-template name="link.to.page">          <xsl:with-param name="href" select="@href"/>          <xsl:with-param name="page" select="$target"/>          <xsl:with-param name="relpath" select="$relpath"/>          <xsl:with-param name="linktext">            <img src="{$preceding-icon}" alt="{$preceding-text}" border="0"/>          </xsl:with-param>        </xsl:call-template>      </xsl:when>      <xsl:otherwise>        <xsl:value-of select="$preceding-text"/>      </xsl:otherwise>    </xsl:choose>    <xsl:choose>      <xsl:when test="$pageid = @id">        <span class="curpage">          <xsl:choose>            <xsl:when test="titleabbrev">              <xsl:apply-templates select="titleabbrev"/>            </xsl:when>            <xsl:otherwise>              <xsl:apply-templates select="title"/>            </xsl:otherwise>          </xsl:choose>          <xsl:if test="$nav.revisionflag != '0' and $revisionflag">            <xsl:value-of select="$nav.text.spacer"/>            <xsl:choose>              <xsl:when test="$nav.graphics = '1'">                <img src="{$revisionflag-icon}" alt="{$revisionflag-text}" align="bottom"/>              </xsl:when>              <xsl:otherwise>                <xsl:text>(</xsl:text>                <xsl:value-of select="$revisionflag-text"/>                <xsl:text>)</xsl:text>              </xsl:otherwise>            </xsl:choose>	  </xsl:if>          <xsl:if test="$nav.pointer != '0'">            <xsl:value-of select="$nav.text.spacer"/>            <xsl:choose>              <xsl:when test="$nav.graphics = '1'">                <img src="{$following-icon}" alt="{$following-text}"/>              </xsl:when>              <xsl:otherwise>                <xsl:value-of select="$following-text"/>              </xsl:otherwise>            </xsl:choose>	  </xsl:if>        </span>        <br/>      </xsl:when>      <xsl:otherwise>        <span>          <xsl:choose>            <xsl:when test="$isdescendant='0'">              <xsl:choose>                <xsl:when test="$isancestor='1'">                  <xsl:attribute name="class">ancestor</xsl:attribute>                </xsl:when>                <xsl:otherwise>                  <xsl:attribute name="class">otherpage</xsl:attribute>                </xsl:otherwise>              </xsl:choose>            </xsl:when>            <xsl:otherwise>              <!-- IS a descendant of curpage -->              <xsl:attribute name="class">descendant</xsl:attribute>            </xsl:otherwise>          </xsl:choose>          <xsl:call-template name="link.to.page">            <xsl:with-param name="href" select="@href"/>            <xsl:with-param name="page" select="$target"/>            <xsl:with-param name="relpath" select="$relpath"/>            <xsl:with-param name="linktext">              <xsl:choose>                <xsl:when test="titleabbrev">                  <xsl:apply-templates select="titleabbrev"/>                </xsl:when>                <xsl:otherwise>                  <xsl:apply-templates select="title"/>                </xsl:otherwise>              </xsl:choose>            </xsl:with-param>          </xsl:call-template>          <xsl:if test="$nav.revisionflag != '0' and $revisionflag">            <xsl:value-of select="$nav.text.spacer"/>            <xsl:choose>              <xsl:when test="$nav.graphics = '1'">                <img src="{$revisionflag-icon}" alt="{$revisionflag-text}"/>              </xsl:when>              <xsl:otherwise>                <xsl:text>(</xsl:text>                <xsl:value-of select="$revisionflag-text"/>                <xsl:text>)</xsl:text>              </xsl:otherwise>            </xsl:choose>	  </xsl:if>        </span>        <br/>      </xsl:otherwise>    </xsl:choose>  </span>  <xsl:if test="$is.open != 0">    <xsl:apply-templates select="tocentry">      <xsl:with-param name="pageid" select="$pageid"/>      <xsl:with-param name="relpath" select="$relpath"/>    </xsl:apply-templates>  </xsl:if></xsl:template><xsl:template name="insert.spacers">  <xsl:param name="count" select="0"/>  <xsl:param name="relpath"/>  <xsl:if test="$count>0">    <xsl:choose>      <xsl:when test="$nav.graphics != 0">        <img src="{$relpath}{$toc.spacer.image}" alt="{$toc.spacer.text}"/>      </xsl:when>      <xsl:otherwise>        <xsl:value-of select="$toc.spacer.text"/>      </xsl:otherwise>    </xsl:choose>    <xsl:call-template name="insert.spacers">      <xsl:with-param name="count" select="$count - 1"/>      <xsl:with-param name="relpath" select="$relpath"/>    </xsl:call-template>  </xsl:if></xsl:template><xsl:template match="toc|tocentry|notoc" mode="toc-rel-path">  <xsl:call-template name="toc-rel-path"/></xsl:template><xsl:template name="toc-rel-path">  <xsl:param name="pageid" select="@id"/>  <xsl:variable name="entry" select="$autolayout//*[@id=$pageid]"/>  <xsl:variable name="filename" select="concat($entry/@dir,$entry/@filename)"/>  <xsl:variable name="slash-count">    <xsl:call-template name="toc-directory-depth">      <xsl:with-param name="filename" select="$filename"/>    </xsl:call-template>  </xsl:variable>  <xsl:variable name="depth">    <xsl:choose>      <xsl:when test="starts-with($filename, '/')">        <xsl:value-of select="$slash-count - 1"/>      </xsl:when>      <xsl:otherwise>        <xsl:value-of select="$slash-count"/>      </xsl:otherwise>    </xsl:choose>  </xsl:variable><!--  <xsl:message>    <xsl:value-of select="$filename"/>    <xsl:text> depth=</xsl:text>    <xsl:value-of select="$depth"/>  </xsl:message>-->  <xsl:if test="$depth > 0">    <xsl:call-template name="copy-string">      <xsl:with-param name="string">../</xsl:with-param>      <xsl:with-param name="count" select="$depth"/>    </xsl:call-template>  </xsl:if></xsl:template><xsl:template name="toc-directory-depth">  <xsl:param name="filename"></xsl:param>  <xsl:param name="count" select="0"/>  <xsl:choose>    <xsl:when test='contains($filename,"/")'>      <xsl:call-template name="toc-directory-depth">        <xsl:with-param name="filename"                        select="substring-after($filename,'/')"/>        <xsl:with-param name="count" select="$count + 1"/>      </xsl:call-template>    </xsl:when>    <xsl:otherwise>      <xsl:value-of select="$count"/>    </xsl:otherwise>  </xsl:choose></xsl:template></xsl:stylesheet>
 |