434ce2cd05
fixed up CMake files so that they run from the command line adjusted CMake files so that they exclude tests which can't be run
81 lines
2.8 KiB
XML
81 lines
2.8 KiB
XML
<?xml version='1.0'?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<!-- ************** HTML ************** -->
|
|
<xsl:import href="http://www.boost.org/tools/boostbook/xsl/html.xsl"/>
|
|
|
|
<!--
|
|
Make library documentation header using some elements from boostbook stylesheets.
|
|
Override boost book implemenation of header.navigation with our own
|
|
-->
|
|
<xsl:template name = "header.navigation">
|
|
<xsl:param name = "prev" select = "/foo"/>
|
|
<xsl:param name = "next" select = "/foo"/>
|
|
<xsl:param name = "nav.context"/>
|
|
<table cellpadding = "2" width = "100%"><tr>
|
|
<td valign = "top">
|
|
<img href="index.html" height="164px" src="pre-boost.jpg" alt="Library Documentation Index" />
|
|
</td>
|
|
<td><h2>Safe Numerics</h2></td>
|
|
</tr></table>
|
|
<xsl:call-template name = "navbar.spirit">
|
|
<xsl:with-param name = "prev" select = "$prev"/>
|
|
<xsl:with-param name = "next" select = "$next"/>
|
|
<xsl:with-param name = "nav.context" select = "$nav.context"/>
|
|
</xsl:call-template>
|
|
</xsl:template>
|
|
|
|
<!-- remove "Chapter 1" from first page -->
|
|
<xsl:param name="chapter.autolabel" select="0"/>
|
|
<!-- leave the html files in the directory ../html -->
|
|
<xsl:param name="base.dir" select="'../html/'"/>
|
|
|
|
<!-- ******* Table of Contents ******** -->
|
|
<!-- How far down sections get TOC's -->
|
|
<xsl:param name = "toc.section.depth" select="2" />
|
|
|
|
<!-- Max depth in each TOC: -->
|
|
<xsl:param name = "toc.max.depth" select="2" />
|
|
|
|
<!-- How far down we go with TOC's -->
|
|
<xsl:param name="generate.section.toc.level" select="2" />
|
|
|
|
<!-- ************ Chunking ************ -->
|
|
|
|
<!--
|
|
BoostBook takes a section node id like safe_numeric.safe_cast
|
|
and renders it as safe_numeric/safe_cast. Presumably they do this
|
|
so they can make a huge "book" with all the libraries in subdirectories.
|
|
But we want something different. To my mind, this should have been
|
|
done using the library "directory" attribute. But of course that
|
|
doesn't matter now. We'll just re-hack the path to eliminate
|
|
the "safe_numeric/" from the above example.
|
|
-->
|
|
|
|
<xsl:template match="*" mode="recursive-chunk-filename">
|
|
<xsl:variable name="their">
|
|
<xsl:apply-imports mode="recursive-chunk-filename" select="."/>
|
|
</xsl:variable>
|
|
<xsl:choose>
|
|
<xsl:when test="contains($their, '/')">
|
|
<xsl:value-of select="substring-after($their, '/')" />
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="$their"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:template>
|
|
|
|
<!-- don't make first sections special - leave TOC in different file -->
|
|
<xsl:param name="chunk.first.sections" select="3" />
|
|
|
|
<!-- How far down we chunk nested sections -->
|
|
<!--
|
|
Note: each chunk have to start with a section with an id
|
|
Otherwise the chunk (i.e. file) will be lost. There is no
|
|
checking of this
|
|
-->
|
|
<xsl:param name="chunk.section.depth" select="3" />
|
|
|
|
</xsl:stylesheet>
|