![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/share/boostbook/xsl/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) 2002 Douglas Gregor <doug.gregor -at- gmail.com> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:key name="library-categories" match="library" use="libraryinfo/librarycategory/@name"/> <xsl:template match="librarylist"> <itemizedlist spacing="compact"> <xsl:apply-templates select="//library" mode="build-library-list"> <xsl:sort select="@name"/> </xsl:apply-templates> </itemizedlist> </xsl:template> <xsl:template name="library.link"> <xsl:param name="node" select="."/> <xsl:param name="name" select="$node/attribute::name"/> <xsl:choose> <xsl:when test="$node/attribute::html-only = 1"> <xsl:variable name="url"> <xsl:choose> <xsl:when test="$node/attribute::url"> <xsl:value-of select="$node/attribute::url"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="concat($boost.root, '/libs/', $node/attribute::dirname, '/index.html')"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <ulink> <xsl:attribute name="url"> <xsl:value-of select="$url"/> </xsl:attribute> <xsl:value-of select="$name"/> </ulink> </xsl:when> <xsl:otherwise> <xsl:call-template name="internal-link"> <xsl:with-param name="to"> <xsl:choose> <xsl:when test="$node/attribute::id"> <xsl:value-of select="$node/attribute::id"/> </xsl:when> <xsl:otherwise> <xsl:call-template name="generate.id"> <xsl:with-param name="node" select="$node"/> </xsl:call-template> </xsl:otherwise> </xsl:choose> </xsl:with-param> <xsl:with-param name="text" select="$name"/> </xsl:call-template> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="library" mode="build-library-list"> <listitem> <simpara> <xsl:call-template name="library.link"/> <xsl:text> - </xsl:text> <xsl:apply-templates select="libraryinfo/librarypurpose" mode="build-library-list"/> </simpara> </listitem> </xsl:template> <xsl:template match="librarypurpose" mode="build-library-list"> <xsl:apply-templates/> <xsl:text>, from </xsl:text> <xsl:apply-templates select="../author" mode="display-author-list"/> </xsl:template> <xsl:template match="author" mode="display-author-list"> <xsl:if test="(position() > 1) and (count(../author) > 2)"> <xsl:text>, </xsl:text> </xsl:if> <xsl:if test="(position() = count(../author)) and (position() > 1)"> <xsl:if test="position() < 3"> <xsl:text> </xsl:text> </xsl:if> <xsl:text>and </xsl:text> </xsl:if> <xsl:apply-templates select="firstname/text()"/> <xsl:text> </xsl:text> <xsl:apply-templates select="surname/text()"/> <xsl:if test="(position() = count(../author))"> <xsl:text>.</xsl:text> </xsl:if> </xsl:template> <xsl:template match="librarycategorylist"> <xsl:apply-templates/> </xsl:template> <xsl:template match="librarycategorydef"> <section> <title><xsl:apply-templates/></title> <xsl:variable name="name" select="@name"/> <itemizedlist spacing="compact"> <xsl:apply-templates select="key('library-categories', $name)" mode="build-library-list"> <xsl:sort select="@name"/> </xsl:apply-templates> </itemizedlist> </section> </xsl:template> <xsl:template match="libraryinfo"> <chapterinfo> <xsl:apply-templates select="author|authorgroup/author|copyright|legalnotice"/> </chapterinfo> </xsl:template> <xsl:template match="librarypurpose|librarycategory"/> </xsl:stylesheet>