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:
|
2019-06-08 08:56:30 -04:00
|
|
|
# ./regen.sh [html|chm|xml|latex|docset|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.
|
2015-05-21 19:39:26 -04:00
|
|
|
# If no arguments are passed, HTML is regenerated (just like passing "html").
|
2008-03-08 10:30:12 -05:00
|
|
|
#
|
|
|
|
|
2008-02-24 09:33:49 -05:00
|
|
|
|
2015-05-21 19:39:26 -04:00
|
|
|
# cd to the directory this script is in
|
2008-03-08 09:39:02 -05:00
|
|
|
me=$(basename $0)
|
|
|
|
path=${0%%/$me} # path from which the script has been launched
|
2015-05-21 19:39:26 -04:00
|
|
|
cd "$path"
|
2019-06-08 08:56:30 -04:00
|
|
|
SCRIPTS_DIR="$(pwd)/scripts"
|
|
|
|
|
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.
|
|
|
|
#
|
2014-11-19 17:38:35 -05:00
|
|
|
# Still allow using incompatible version if explicitly requested.
|
2012-11-04 07:44:56 -05:00
|
|
|
if [[ -z $WX_SKIP_DOXYGEN_VERSION_CHECK ]]; then
|
|
|
|
doxygen_version=`$DOXYGEN --version`
|
2014-11-19 17:38:35 -05:00
|
|
|
doxygen_version_required=1.8.8
|
2012-11-04 07:44:56 -05:00
|
|
|
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
|
2015-05-21 19:39:26 -04:00
|
|
|
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"
|
2012-11-03 14:33:23 -04:00
|
|
|
|
|
|
|
# Which format should we generate during this run?
|
|
|
|
case "$1" in
|
|
|
|
all) # All *main* formats, not all formats, here for backwards compat.
|
2015-05-21 19:39:26 -04:00
|
|
|
export GENERATE_HTML="YES"
|
|
|
|
export GENERATE_HTMLHELP="YES"
|
|
|
|
export GENERATE_XML="YES"
|
2012-11-03 14:33:23 -04:00
|
|
|
;;
|
|
|
|
chm)
|
2015-05-21 19:39:26 -04:00
|
|
|
export GENERATE_HTML="YES"
|
|
|
|
export GENERATE_HTMLHELP="YES"
|
2012-11-03 14:33:23 -04:00
|
|
|
;;
|
|
|
|
docset)
|
2015-05-21 19:39:26 -04:00
|
|
|
export GENERATE_DOCSET="YES"
|
|
|
|
export GENERATE_HTML="YES"
|
2019-06-08 08:56:30 -04:00
|
|
|
export GENERATE_TAGFILE="$path/out/wxWidgets.tag"
|
2012-11-03 14:33:23 -04:00
|
|
|
;;
|
|
|
|
latex)
|
2015-05-21 19:39:26 -04:00
|
|
|
export GENERATE_LATEX="YES"
|
2012-11-03 14:33:23 -04:00
|
|
|
;;
|
|
|
|
php) # HTML, but with PHP Search Engine
|
2015-05-21 19:39:26 -04:00
|
|
|
export GENERATE_HTML="YES"
|
|
|
|
export SEARCHENGINE="YES"
|
|
|
|
export SERVER_BASED_SEARCH="YES"
|
2012-11-03 14:33:23 -04:00
|
|
|
;;
|
|
|
|
qch)
|
2015-05-21 19:39:26 -04:00
|
|
|
export GENERATE_HTML="YES"
|
|
|
|
export GENERATE_QHP="YES"
|
2012-11-03 14:33:23 -04:00
|
|
|
;;
|
|
|
|
xml)
|
2015-05-21 19:39:26 -04:00
|
|
|
export GENERATE_XML="YES"
|
2012-11-03 14:33:23 -04:00
|
|
|
;;
|
|
|
|
*) # Default to HTML only
|
2015-05-21 19:39:26 -04:00
|
|
|
export GENERATE_HTML="YES"
|
|
|
|
export SEARCHENGINE="YES"
|
2012-11-03 14:33:23 -04:00
|
|
|
;;
|
|
|
|
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
|
2014-04-13 23:36:37 -04:00
|
|
|
BASENAME="wxWidgets-3.1" # was org.wxwidgets.doxygen.docset.wx30
|
|
|
|
DOCSETNAME="$BASENAME.docset"
|
|
|
|
ATOM="$BASENAME.atom"
|
2018-09-02 17:35:48 -04:00
|
|
|
ATOMDIR="https://docs.wxwidgets.org/docsets"
|
2014-04-13 23:36:37 -04:00
|
|
|
XAR="$BASENAME.xar"
|
2018-09-02 17:35:48 -04:00
|
|
|
XARDIR="https://docs.wxwidgets.org/docsets"
|
2019-06-08 08:56:30 -04:00
|
|
|
|
|
|
|
# See if xcode is installed
|
|
|
|
if [ -x "$(command -v xcode-select)" ]; then
|
|
|
|
XCODE_INSTALL=`xcode-select -print-path`
|
|
|
|
fi
|
2018-09-02 17:35:48 -04:00
|
|
|
|
2011-06-11 23:39:17 -04:00
|
|
|
cd out/html
|
2014-04-13 23:36:37 -04:00
|
|
|
DESTINATIONDIR=`pwd`/../docset
|
2018-09-02 17:35:48 -04:00
|
|
|
|
2014-04-13 23:36:37 -04:00
|
|
|
mkdir -p $DESTINATIONDIR
|
2011-06-11 23:39:17 -04:00
|
|
|
rm -rf $DESTINATIONDIR/$DOCSETNAME
|
|
|
|
rm -f $DESTINATIONDIR/$XAR
|
2018-09-02 17:35:48 -04:00
|
|
|
|
2014-04-13 23:36:37 -04:00
|
|
|
make DOCSET_NAME=$DESTINATIONDIR/$DOCSETNAME
|
2018-09-02 17:35:48 -04:00
|
|
|
|
2019-06-08 08:56:30 -04:00
|
|
|
# Choose which plist modification utility to use
|
|
|
|
if [ -x "$(command -v defaults)" ]; then
|
|
|
|
PLIST_WRITE_CMD="defaults write"
|
|
|
|
else
|
|
|
|
PLIST_WRITE_CMD="python $SCRIPTS_DIR/write_info_tag.py"
|
|
|
|
fi
|
2014-04-13 23:36:37 -04:00
|
|
|
|
2019-06-08 08:56:30 -04:00
|
|
|
# Modify the Info.plist file
|
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info CFBundleVersion 1.3
|
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info CFBundleShortVersionString 1.3
|
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info CFBundleName "wxWidgets 3.1"
|
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetFeedURL $ATOMDIR/$ATOM
|
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetFallbackURL https://docs.wxwidgets.org
|
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetDescription "API reference and conceptual documentation for wxWidgets 3.0"
|
2020-03-05 18:49:56 -05:00
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info NSHumanReadableCopyright "Copyright 1992-2020 wxWidgets team, Portions 1996 Artificial Intelligence Applications Institute"
|
2019-06-08 08:56:30 -04:00
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info isJavaScriptEnabled true
|
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info dashIndexFilePath index.html
|
|
|
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetPlatformFamily wx
|
|
|
|
|
|
|
|
echo "Creating docset database"
|
|
|
|
if ! [ -z "$XCODE_INSTALL" ]; then
|
|
|
|
# Use xcode to create the docset if it is installed
|
|
|
|
$XCODE_INSTALL/usr/bin/docsetutil package -atom $DESTINATIONDIR/$ATOM -download-url $XARDIR/$XAR -output $DESTINATIONDIR/$XAR $DESTINATIONDIR/$DOCSETNAME
|
|
|
|
else
|
|
|
|
# Use doxytag2zealdb to create the database
|
|
|
|
# This requires the python package doxytag2zealdb installed
|
|
|
|
python -m doxytag2zealdb --tag $DESTINATIONDIR/../wxWidgets.tag --db $DESTINATIONDIR/$DOCSETNAME/Contents/Resources/docSet.dsidx --include-parent-scopes --include-function-signatures
|
|
|
|
fi
|
2011-06-11 23:39:17 -04:00
|
|
|
|
2019-06-08 08:56:30 -04:00
|
|
|
# Copy the icon
|
|
|
|
cp $SCRIPTS_DIR/../../../art/wxwin16x16.png $DESTINATIONDIR/$DOCSETNAME/icon.png
|
|
|
|
cp $SCRIPTS_DIR/../../../art/wxwin32x32.png $DESTINATIONDIR/$DOCSETNAME/icon@2x.png
|
2011-06-11 23:39:17 -04:00
|
|
|
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
|
2015-05-21 19:39:26 -04:00
|
|
|
mv temp doxygen.log
|