2008-02-28 16:50:05 -05:00
|
|
|
#!/bin/bash
|
2008-03-08 10:30:12 -05:00
|
|
|
#
|
|
|
|
#
|
2008-02-24 09:33:49 -05:00
|
|
|
# This bash script regenerates the HTML doxygen version of the
|
|
|
|
# wxWidgets manual and adjusts the doxygen log to make it more
|
|
|
|
# readable.
|
2008-03-08 10:30:12 -05:00
|
|
|
#
|
|
|
|
# Usage:
|
2008-03-09 07:08:33 -04:00
|
|
|
# ./regen.sh [html|chm|xml|latex|all]
|
2008-03-08 10:30:12 -05:00
|
|
|
#
|
2008-03-09 07:08:33 -04:00
|
|
|
# Pass "x" to regen only the X output format and "all" to regen them all.
|
2008-03-08 10:30:12 -05:00
|
|
|
# If no arguments are passed all formats are regenerated
|
|
|
|
# (just like passing "all").
|
|
|
|
#
|
|
|
|
|
2008-02-24 09:33:49 -05:00
|
|
|
|
2008-03-09 07:08:33 -04:00
|
|
|
# remember current folder and then cd to the docs/doxygen one
|
2008-03-08 09:39:02 -05:00
|
|
|
me=$(basename $0)
|
|
|
|
path=${0%%/$me} # path from which the script has been launched
|
|
|
|
current=$(pwd)
|
|
|
|
cd $path
|
2012-11-01 13:14:54 -04:00
|
|
|
if [[ -z "$WXWIDGETS" ]]; then
|
2012-11-04 07:44:51 -05:00
|
|
|
# Notice the use of -P to ensure we get the canonical path even if there
|
|
|
|
# are symlinks in the current path. This is important because Doxygen
|
|
|
|
# strips this string from the paths in the generated files textually and it
|
|
|
|
# wouldn't work if it contained symlinks.
|
|
|
|
WXWIDGETS=`cd ../.. && pwd -P`
|
2012-02-21 00:38:53 -05:00
|
|
|
if [ "$OSTYPE" = "cygwin" ]; then
|
2012-11-01 13:14:54 -04:00
|
|
|
WXWIDGETS=`cygpath -w $WXWIDGETS`
|
2012-02-21 00:38:53 -05:00
|
|
|
fi
|
2012-11-01 13:14:54 -04:00
|
|
|
export WXWIDGETS
|
2012-02-21 00:38:53 -05:00
|
|
|
fi
|
2008-03-08 09:39:02 -05:00
|
|
|
|
2012-06-13 19:20:08 -04:00
|
|
|
if [ "$DOXYGEN" = "" ]; then
|
|
|
|
DOXYGEN=doxygen
|
|
|
|
fi
|
|
|
|
|
2012-11-04 07:44:56 -05:00
|
|
|
# Check that doxygen has the correct version as different versions of it are
|
|
|
|
# unfortunately not always (in fact, practically never) compatible.
|
|
|
|
#
|
|
|
|
# Still allow using incompatible version for some quick local testing if really
|
|
|
|
# needed and 1.8.2 can't be installed for whatever reason.
|
|
|
|
if [[ -z $WX_SKIP_DOXYGEN_VERSION_CHECK ]]; then
|
|
|
|
doxygen_version=`$DOXYGEN --version`
|
|
|
|
doxygen_version_required=1.8.2
|
|
|
|
if [[ $doxygen_version != $doxygen_version_required ]]; then
|
|
|
|
echo "Doxygen version $doxygen_version is not supported."
|
|
|
|
echo "Please use Doxygen $doxygen_version_required or export WX_SKIP_DOXYGEN_VERSION_CHECK."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2008-03-08 10:30:12 -05:00
|
|
|
# prepare folders for the cp commands below
|
2008-02-28 16:50:05 -05:00
|
|
|
mkdir -p out/html # we need to copy files in this folder below
|
2012-11-03 14:32:50 -04:00
|
|
|
mkdir -p out/html/generic
|
2008-02-19 08:18:53 -05:00
|
|
|
|
2008-04-16 16:11:08 -04:00
|
|
|
# These are not automatically copied by Doxygen because they're not
|
|
|
|
# used in doxygen documentation, only in our html footer and by our
|
2008-03-08 10:30:12 -05:00
|
|
|
# custom aliases
|
2011-08-27 10:56:33 -04:00
|
|
|
cp images/generic/*png out/html/generic
|
2008-02-19 11:35:45 -05:00
|
|
|
|
2012-11-03 14:33:23 -04:00
|
|
|
# Defaults for settings controlled by this script
|
|
|
|
export GENERATE_DOCSET="NO";
|
|
|
|
export GENERATE_HTML="NO";
|
|
|
|
export GENERATE_HTMLHELP="NO";
|
|
|
|
export GENERATE_LATEX="NO";
|
|
|
|
export GENERATE_QHP="NO";
|
|
|
|
export GENERATE_XML="NO";
|
|
|
|
export SEARCHENGINE="NO";
|
|
|
|
export SERVER_BASED_SEARCH="NO";
|
|
|
|
|
|
|
|
# Which format should we generate during this run?
|
|
|
|
case "$1" in
|
|
|
|
all) # All *main* formats, not all formats, here for backwards compat.
|
|
|
|
export GENERATE_HTML="YES";
|
|
|
|
export GENERATE_HTMLHELP="YES";
|
|
|
|
export GENERATE_XML="YES";
|
|
|
|
;;
|
|
|
|
chm)
|
|
|
|
export GENERATE_HTML="YES";
|
|
|
|
export GENERATE_HTMLHELP="YES";
|
|
|
|
;;
|
|
|
|
docset)
|
|
|
|
export GENERATE_DOCSET="YES";
|
|
|
|
export GENERATE_HTML="YES";
|
|
|
|
;;
|
|
|
|
latex)
|
|
|
|
export GENERATE_LATEX="YES";
|
|
|
|
;;
|
|
|
|
php) # HTML, but with PHP Search Engine
|
|
|
|
export GENERATE_HTML="YES";
|
|
|
|
export SEARCHENGINE="YES";
|
|
|
|
export SERVER_BASED_SEARCH="YES";
|
|
|
|
;;
|
|
|
|
qch)
|
|
|
|
export GENERATE_HTML="YES";
|
|
|
|
export GENERATE_QHP="YES";
|
|
|
|
;;
|
|
|
|
xml)
|
|
|
|
export GENERATE_XML="YES";
|
|
|
|
;;
|
|
|
|
*) # Default to HTML only
|
|
|
|
export GENERATE_HTML="YES";
|
|
|
|
export SEARCHENGINE="YES";
|
|
|
|
;;
|
|
|
|
esac
|
2008-03-08 10:30:12 -05:00
|
|
|
|
2008-02-28 16:50:05 -05:00
|
|
|
#
|
|
|
|
# NOW RUN DOXYGEN
|
|
|
|
#
|
|
|
|
# NB: we do this _after_ copying the required files to the output folders
|
|
|
|
# otherwise when generating the CHM file with Doxygen, those files are
|
|
|
|
# not included!
|
|
|
|
#
|
2012-11-03 14:33:23 -04:00
|
|
|
$DOXYGEN Doxyfile
|
2008-02-28 16:50:05 -05:00
|
|
|
|
2008-11-28 14:28:15 -05:00
|
|
|
if [[ "$1" = "qch" ]]; then
|
|
|
|
# we need to add missing files to the .qhp
|
|
|
|
cd out/html
|
|
|
|
qhelpfile="index.qhp"
|
|
|
|
|
2008-11-30 20:13:01 -05:00
|
|
|
# remove all <file> and <files> tags
|
|
|
|
cat $qhelpfile | grep -v "<file" >temp
|
2008-11-28 14:28:15 -05:00
|
|
|
|
2008-11-30 20:13:01 -05:00
|
|
|
# remove last 4 lines (so we have nothing after the last <keyword> tag)
|
2008-11-28 14:28:15 -05:00
|
|
|
lines=$(wc -l < temp)
|
2008-11-30 20:13:01 -05:00
|
|
|
wanted=`expr $lines - 4`
|
2008-11-28 14:28:15 -05:00
|
|
|
head -n $wanted temp >$qhelpfile
|
|
|
|
|
2008-11-30 20:13:01 -05:00
|
|
|
# generate a list of new <keyword> tags to add to the index file; without
|
|
|
|
# this step in the 'index' tab of Qt assistant the "wxWindow" class is not
|
|
|
|
# present; just "wxWindow::wxWindow" ctor is listed.
|
|
|
|
# NOTE: this operation is not indispensable but produces a QCH easier to use IMO.
|
|
|
|
sed -e 's/<keyword name="wx[a-zA-Z~]*" id="wx\([a-zA-Z]*\)::[a-zA-Z~]*" ref="\([a-z_]*.html\)#.*"/<keyword name="wx\1" id="wx\1" ref="\2"/g' < $qhelpfile | grep "<keyword name=\"wx" | uniq >temp
|
|
|
|
cat temp >>$qhelpfile
|
|
|
|
echo " </keywords>" >>$qhelpfile
|
|
|
|
echo " <files>" >>$qhelpfile
|
|
|
|
|
|
|
|
# remove useless files to make the qch slim
|
|
|
|
rm temp *map *md5
|
2008-11-28 14:28:15 -05:00
|
|
|
|
|
|
|
# add a <file> tag for _any_ file in out/html folder except the .qhp itself
|
2008-11-30 20:13:01 -05:00
|
|
|
for f in * */*png; do
|
2008-11-28 14:28:15 -05:00
|
|
|
if [[ $f != $qhelpfile ]]; then
|
|
|
|
echo " <file>$f</file>" >>$qhelpfile
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# add ending tags to the qhp file
|
|
|
|
echo " </files>
|
|
|
|
</filterSection>
|
|
|
|
</QtHelpProject>" >>$qhelpfile
|
|
|
|
|
2008-11-30 20:13:01 -05:00
|
|
|
# replace keyword names so that they appear fully-qualified in the
|
|
|
|
# "index" tab of the Qt Assistant; e.g. Fit => wxWindow::Fit
|
|
|
|
# NOTE: this operation is not indispendable but produces a QCH easier to use IMO.
|
|
|
|
sed -e 's/<keyword name="[a-zA-Z:~]*" id="\([a-zA-Z]*::[a-zA-Z~]*\)"/<keyword name="\1" id="\1"/g' <$qhelpfile >temp
|
|
|
|
mv temp $qhelpfile
|
|
|
|
|
2008-11-28 14:28:15 -05:00
|
|
|
# last, run qhelpgenerator:
|
|
|
|
cd ../..
|
|
|
|
qhelpgenerator out/html/index.qhp -o out/wx.qch
|
|
|
|
fi
|
|
|
|
|
2011-06-11 23:39:17 -04:00
|
|
|
if [[ "$1" = "docset" ]]; then
|
|
|
|
DOCSETNAME="org.wxwidgets.doxygen.wx29.docset"
|
|
|
|
ATOM="org.wxwidgets.doxygen.docset.wx29.atom"
|
|
|
|
ATOMDIR="http://docs.wxwidgets.org/docsets"
|
|
|
|
XAR="org.wxwidgets.doxygen.docset.wx29.xar"
|
|
|
|
XARDIR="http://docs.wxwidgets.org/docsets"
|
|
|
|
XCODE_INSTALL=`sh xcode-select -print-path`
|
|
|
|
|
|
|
|
cd out/html
|
|
|
|
DESTINATIONDIR=`pwd`
|
|
|
|
|
|
|
|
rm -rf $DESTINATIONDIR/$DOCSETNAME
|
|
|
|
rm -f $DESTINATIONDIR/$XAR
|
|
|
|
|
|
|
|
make
|
|
|
|
|
|
|
|
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info CFBundleVersion 1.3
|
|
|
|
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info CFBundleShortVersionString 1.3
|
|
|
|
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info CFBundleName "wxWidgets 2.9 Library"
|
|
|
|
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetFeedURL $ATOMDIR/$ATOM
|
|
|
|
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetFallbackURL http://docs.wxwidgets.org
|
|
|
|
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetDescription "API reference and conceptual documentation for wxWidgets 2.9"
|
2012-11-03 14:33:12 -04:00
|
|
|
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info NSHumanReadableCopyright "Copyright 1992-2012 wxWidgets team, Portions 1996 Artificial Intelligence Applications Institute"
|
2011-06-11 23:39:17 -04:00
|
|
|
|
|
|
|
$XCODE_INSTALL/usr/bin/docsetutil package -atom $DESTINATIONDIR/$ATOM -download-url $XARDIR/$XAR -output $DESTINATIONDIR/$XAR $DESTINATIONDIR/$DOCSETNAME
|
|
|
|
|
|
|
|
cd ../..
|
|
|
|
fi
|
|
|
|
|
2008-02-19 11:35:45 -05:00
|
|
|
# Doxygen has the annoying habit to put the full path of the
|
|
|
|
# affected files in the log file; remove it to make the log
|
|
|
|
# more readable
|
|
|
|
currpath=`pwd`/
|
2008-02-19 12:28:40 -05:00
|
|
|
interfacepath=`cd ../../interface && pwd`/
|
2011-12-08 10:45:41 -05:00
|
|
|
cat doxygen.log | sed -e "s|$currpath||g" -e "s|$interfacepath||g" > temp
|
|
|
|
cat temp > doxygen.log
|
2008-03-16 13:23:00 -04:00
|
|
|
rm temp
|
2008-02-21 16:11:25 -05:00
|
|
|
|
2008-03-16 13:23:00 -04:00
|
|
|
# return to the original folder from which this script was launched
|
2008-03-08 09:39:02 -05:00
|
|
|
cd $current
|