Geomtry: added doxygen2qbk.pl script used to generate Quickbook files from merged Doxygen XML output processed with XSLT using reference.xsl sheet. Based on similar tool from Boost.Asio.

[SVN r60325]
This commit is contained in:
Mateusz Loskot 2010-03-07 20:19:47 +00:00
parent 8ac60b6610
commit 7b7a35c08b

View File

@ -0,0 +1,22 @@
#!/usr/bin/perl -w
# Copyright (c) 2003-2010 Christopher M. Kohlhoff (chris at kohlhoff dot com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
use strict;
system("doxygen reference.dox");
chdir("xml");
system("xsltproc combine.xslt index.xml > all.xml");
chdir("..");
system("xsltproc reference.xsl xml/all.xml > reference2.qbk");
#system("rm -rf xml");
#system("doxygen tutorial.dox");
#chdir("xml");
#system("xsltproc combine.xslt index.xml > all.xml");
#chdir("..");
#system("xsltproc tutorial.xsl xml/all.xml > tutorial.qbk");
#system("rm -rf xml reference.tags");