2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-27 19:12:08 +00:00

Fix paths to images and stylesheets to use items located via BOOST_ROOT.

[SVN r50634]
This commit is contained in:
John Maddock
2009-01-16 15:53:16 +00:00
parent d15dd45277
commit bd37fcaebe
2 changed files with 11 additions and 6 deletions

View File

@@ -7,17 +7,19 @@ using quickbook ;
path-constant images_location : html ;
path-constant boost-root : [ get-boost-path ] ;
xml math : math.qbk ;
boostbook standalone
:
math
:
# Path for links to Boost:
<xsl:param>boost.root=../../../../../../../trunk
<xsl:param>boost.root=file://$(boost-root:T)
# Path for libraries index:
<xsl:param>boost.libraries=$(boost-root)/libs/libraries.htm
<xsl:param>boost.libraries=file://$(boost-root:T)/libs/libraries.htm
# Use the main Boost stylesheet:
<xsl:param>html.stylesheet=../../../../../../../trunk/doc/html/boostbook.css
<xsl:param>html.stylesheet=file://$(boost-root:T)/doc/html/boostbook.css
# Some general style settings:
<xsl:param>table.footnote.number.format=1
@@ -73,3 +75,5 @@ boostbook standalone
install pdf-install : standalone : <location>. <install-type>PDF ;

View File

@@ -53,8 +53,9 @@ project math-toolkit
rule get-boost-path
{
return $(boost-root) ;
}