Brian Silverman | ce4aa8d | 2018-08-04 23:36:03 -0700 | [diff] [blame^] | 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 | |
| 7 | project doc/bind ; |
| 8 | |
| 9 | import boostbook ; |
| 10 | import quickbook ; |
| 11 | |
| 12 | xml bind_ : bind.qbk ; |
| 13 | boostbook standalone_bind |
| 14 | : |
| 15 | bind_ |
| 16 | : |
| 17 | <xsl:param>boost.root=../../../.. |
| 18 | # File name of HTML output: |
| 19 | <xsl:param>root.filename=bind |
| 20 | # How far down we chunk nested sections, basically all of them: |
| 21 | <xsl:param>chunk.section.depth=0 |
| 22 | # Don't put the first section on the same page as the TOC: |
| 23 | <xsl:param>chunk.first.sections=0 |
| 24 | # How far down sections get TOC's |
| 25 | <xsl:param>toc.section.depth=2 |
| 26 | # Max depth in each TOC: |
| 27 | <xsl:param>toc.max.depth=2 |
| 28 | # How far down we go with TOC's |
| 29 | <xsl:param>generate.section.toc.level=0 |
| 30 | |
| 31 | <xsl:param>generate.manifest=0 |
| 32 | ; |
| 33 | |
| 34 | xml mem_fn_ : mem_fn.qbk ; |
| 35 | boostbook standalone_mem_fn |
| 36 | : |
| 37 | mem_fn_ |
| 38 | : |
| 39 | <xsl:param>boost.root=../../../.. |
| 40 | # File name of HTML output: |
| 41 | <xsl:param>root.filename=mem_fn |
| 42 | # How far down we chunk nested sections, basically all of them: |
| 43 | <xsl:param>chunk.section.depth=0 |
| 44 | # Don't put the first section on the same page as the TOC: |
| 45 | <xsl:param>chunk.first.sections=0 |
| 46 | # How far down sections get TOC's |
| 47 | <xsl:param>toc.section.depth=2 |
| 48 | # Max depth in each TOC: |
| 49 | <xsl:param>toc.max.depth=2 |
| 50 | # How far down we go with TOC's |
| 51 | <xsl:param>generate.section.toc.level=0 |
| 52 | |
| 53 | <xsl:param>generate.manifest=0 |
| 54 | ; |
| 55 | |
| 56 | ############################################################################### |
| 57 | alias boostdoc ; |
| 58 | explicit boostdoc ; |
| 59 | alias boostrelease : standalone_bind standalone_mem_fn ; |
| 60 | explicit boostrelease ; |