The Jamfile.v2 contains: <---------------- import toolset ; toolset.using doxygen ;
project boost/doc ; import boostbook : boostbook ;
boostbook managed_ptr-doc : refcycle_counted.xml ;
doxygen autodoc
: [ glob ../../../boost/managed_ptr/*.hpp ] ;>---------------- Running `bjam --v2 autodoc` produces subdirectory, xml, with what looks like an xml file for the *.hpp sources. Also produced is file:
autodoc.boostbook
What should I do to get the manage_ptr-doc target to place the xml/*.xml files inside a section, "Reference" of refcycle_counted.xml? So far, I tried:
<section><title>Reference</title> <xi:include href="xml/index.xml"/> </section>
however, this resulted in error messages:
<-------------
cd /home/evansl/prog_dev/boost-root.ln/development_lje/libs/managed_ptr/doc/
bjam --v2
...found 67 targets...
...updating 2 targets...
xslt-xsltproc ../../../../bin.v2/development_lje/libs/managed_ptr/doc/gcc/debug/refcycle_counted.docbook
xslt-xsltproc-dir html/HTML.manifest
Writing ch01s02.html for section
Writing user-guide.html for section(user-guide)
No template matches doxygen in section.
No template matches compound in doxygen.
...
>-------------
There is:
<-------------
<xsl:template match="doxygen">
<library-reference>
<xsl:if test="string($boost.doxygen.reftitle) != ''">
<title><xsl:copy-of select="$boost.doxygen.reftitle"/></title>
</xsl:if>
<xsl:apply-templates select="key('compounds-by-kind', 'file')"/>
</library-reference>
</xsl:template>>--------------- in tools/boostbook/xsl/doxygen/doxygen2boostbook.xsl; however, I'm unsure how to use this.
Any help appreciated.
------------------------------------------------------- This SF.Net email is sponsored by OSTG. Have you noticed the changes on Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now, one more big change to announce. We are now OSTG- Open Source Technology Group. Come see the changes on the new OSTG site. www.ostg.com _______________________________________________ Boost-docs mailing list [EMAIL PROTECTED] Unsubscribe and other administrative requests: https://lists.sourceforge.net/lists/listinfo/boost-docs
