Hello,

I'm doing a survey of libraries for my company and I was going to document 
my results using quickbook on HEAD.

I have a directory structure set up like:

-survey/
-Jamroot

--evaluation/
---evaluation.qbk
---Jamfile

--subjects/

---libA/
----evaluation/
-----libA.qbk
-----Jamfile

---libB/
----evaluation/
-----libB.qbk
-----Jamfile


What I want to do is have a small introduction, motivation, etc section in 
evaluation.qbk and then have each library's libX.qbk file as a separate 
entry in the TOC.

Sort of like whats here:
http://www.boost.org/regression-logs/cs-win32_metacomm/doc/html/index.html

I was hoping it would be as simple as having the Jamfile in 
/survey/evaluation contain

project survey/evaluation ;

import boostbook : boostbook ;
using quickbook ;

xml evaluation_xml : evaluation.qbk ;

boostbook doc
    :
      evaluation_xml
      ../subjects/libA/evaluation//libA_xml
      ../subjects/libB/evaluation//libB_xml
    :
      <xsl:param>boost.image.src=images/survey.png
      <xsl:param>boost.image.alt="\"Survey\""
      <xsl:param>boost.image.w=100
      <xsl:param>boost.image.h=100
      <xsl:param>nav.layout=none
    ;

But this only gives me an html with the contents of evaluation.qbk.

How can I do this with the quickbook+bbv2 toolchain?

Thanks,

Michael Marcin 




-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-docs mailing list
[email protected]
Unsubscribe and other administrative requests: 
https://lists.sourceforge.net/lists/listinfo/boost-docs

Reply via email to