1# Copyright (c) 2002 Douglas Gregor <doug.gregor -at- gmail.com> 2 3# Distributed under the Boost Software License, Version 1.0. 4# (See accompanying file LICENSE_1_0.txt or copy at 5# http://www.boost.org/LICENSE_1_0.txt) 6 7import boostbook ; 8import quickbook ; 9 10xml bind_ : bind.qbk ; 11boostbook standalone_bind 12 : 13 bind_ 14 : 15 <xsl:param>boost.root=../../../.. 16 # File name of HTML output: 17 <xsl:param>root.filename=bind 18 # How far down we chunk nested sections, basically all of them: 19 <xsl:param>chunk.section.depth=0 20 # Don't put the first section on the same page as the TOC: 21 <xsl:param>chunk.first.sections=0 22 # How far down sections get TOC's 23 <xsl:param>toc.section.depth=2 24 # Max depth in each TOC: 25 <xsl:param>toc.max.depth=2 26 # How far down we go with TOC's 27 <xsl:param>generate.section.toc.level=0 28 29 <xsl:param>generate.manifest=0 30 ; 31 32xml mem_fn_ : mem_fn.qbk ; 33boostbook standalone_mem_fn 34 : 35 mem_fn_ 36 : 37 <xsl:param>boost.root=../../../.. 38 # File name of HTML output: 39 <xsl:param>root.filename=mem_fn 40 # How far down we chunk nested sections, basically all of them: 41 <xsl:param>chunk.section.depth=0 42 # Don't put the first section on the same page as the TOC: 43 <xsl:param>chunk.first.sections=0 44 # How far down sections get TOC's 45 <xsl:param>toc.section.depth=2 46 # Max depth in each TOC: 47 <xsl:param>toc.max.depth=2 48 # How far down we go with TOC's 49 <xsl:param>generate.section.toc.level=0 50 51 <xsl:param>generate.manifest=0 52 ; 53 54############################################################################### 55alias boostdoc ; 56explicit boostdoc ; 57alias boostrelease : standalone_bind standalone_mem_fn ; 58explicit boostrelease ; 59