]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/regen.sh
Last doxygen topic overview cleanup assigned to myself.
[wxWidgets.git] / docs / doxygen / regen.sh
CommitLineData
4411a6b6
FM
1#!/bin/sh
2
cba817ac
FM
3# $Id$
4
5# This bash script regenerates the HTML doxygen version of the
6# wxWidgets manual and adjusts the doxygen log to make it more
7# readable.
8
4411a6b6
FM
9doxygen
10
11# this image is not automatically copied by Doxygen because it's not
12# used in doxygen documentation but only in our html footer...
13cp images/powered-by-wxwidgets.png out/html
d513b59d
FM
14
15# this CSS is automatically copied by Doxygen because it's
16# included by our custom html header...
17cp wxwidgets.css out/html
18
19# Doxygen has the annoying habit to put the full path of the
20# affected files in the log file; remove it to make the log
21# more readable
22currpath=`pwd`/
2c58a7e7
FM
23interfacepath=`cd ../../interface && pwd`/
24cat doxygen.log | sed -e "s|$currpath||g" -e "s|$interfacepath||g" >temp
4514447c
FM
25mv temp doxygen.log
26
27# filter out the following warning which we don't care about
28cat doxygen.log | grep -v ".*supplied.*as.*the.*argument.*is.*not.*an.*input.*file.*" >temp
29mv temp doxygen.log
30