mirror of
https://github.com/boostorg/geometry.git
synced 2025-05-09 23:24:02 +00:00
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:
parent
8ac60b6610
commit
7b7a35c08b
22
doc/quickbook/doxygen2qbk.pl
Normal file
22
doc/quickbook/doxygen2qbk.pl
Normal 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");
|
Loading…
x
Reference in New Issue
Block a user