Allow using doxytag2zealdb for docset generation
This allows to generate docsets on Linux too and not only macOS as before, when it required Xcode. Closes https://github.com/wxWidgets/wxWidgets/pull/1343
This commit is contained in:
committed by
Vadim Zeitlin
parent
04435144ac
commit
d255ac1fd3
@@ -534,7 +534,7 @@ SKIP_FUNCTION_MACROS = YES
|
|||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
TAGFILES =
|
TAGFILES =
|
||||||
GENERATE_TAGFILE =
|
GENERATE_TAGFILE = $(GENERATE_TAGFILE)
|
||||||
ALLEXTERNALS = NO
|
ALLEXTERNALS = NO
|
||||||
EXTERNAL_GROUPS = YES
|
EXTERNAL_GROUPS = YES
|
||||||
EXTERNAL_PAGES = YES
|
EXTERNAL_PAGES = YES
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
# readable.
|
# readable.
|
||||||
#
|
#
|
||||||
# Usage:
|
# Usage:
|
||||||
# ./regen.sh [html|chm|xml|latex|all]
|
# ./regen.sh [html|chm|xml|latex|docset|all]
|
||||||
#
|
#
|
||||||
# Pass "x" to regen only the X output format and "all" to regen them all.
|
# Pass "x" to regen only the X output format and "all" to regen them all.
|
||||||
# If no arguments are passed, HTML is regenerated (just like passing "html").
|
# If no arguments are passed, HTML is regenerated (just like passing "html").
|
||||||
@@ -17,6 +17,8 @@
|
|||||||
me=$(basename $0)
|
me=$(basename $0)
|
||||||
path=${0%%/$me} # path from which the script has been launched
|
path=${0%%/$me} # path from which the script has been launched
|
||||||
cd "$path"
|
cd "$path"
|
||||||
|
SCRIPTS_DIR="$(pwd)/scripts"
|
||||||
|
|
||||||
if [[ -z "$WXWIDGETS" ]]; then
|
if [[ -z "$WXWIDGETS" ]]; then
|
||||||
# Notice the use of -P to ensure we get the canonical path even if there
|
# 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
|
# are symlinks in the current path. This is important because Doxygen
|
||||||
@@ -80,6 +82,7 @@ case "$1" in
|
|||||||
docset)
|
docset)
|
||||||
export GENERATE_DOCSET="YES"
|
export GENERATE_DOCSET="YES"
|
||||||
export GENERATE_HTML="YES"
|
export GENERATE_HTML="YES"
|
||||||
|
export GENERATE_TAGFILE="$path/out/wxWidgets.tag"
|
||||||
;;
|
;;
|
||||||
latex)
|
latex)
|
||||||
export GENERATE_LATEX="YES"
|
export GENERATE_LATEX="YES"
|
||||||
@@ -166,7 +169,11 @@ if [[ "$1" = "docset" ]]; then
|
|||||||
ATOMDIR="https://docs.wxwidgets.org/docsets"
|
ATOMDIR="https://docs.wxwidgets.org/docsets"
|
||||||
XAR="$BASENAME.xar"
|
XAR="$BASENAME.xar"
|
||||||
XARDIR="https://docs.wxwidgets.org/docsets"
|
XARDIR="https://docs.wxwidgets.org/docsets"
|
||||||
XCODE_INSTALL=`xcode-select -print-path`
|
|
||||||
|
# See if xcode is installed
|
||||||
|
if [ -x "$(command -v xcode-select)" ]; then
|
||||||
|
XCODE_INSTALL=`xcode-select -print-path`
|
||||||
|
fi
|
||||||
|
|
||||||
cd out/html
|
cd out/html
|
||||||
DESTINATIONDIR=`pwd`/../docset
|
DESTINATIONDIR=`pwd`/../docset
|
||||||
@@ -177,19 +184,38 @@ if [[ "$1" = "docset" ]]; then
|
|||||||
|
|
||||||
make DOCSET_NAME=$DESTINATIONDIR/$DOCSETNAME
|
make DOCSET_NAME=$DESTINATIONDIR/$DOCSETNAME
|
||||||
|
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info CFBundleVersion 1.3
|
# Choose which plist modification utility to use
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info CFBundleShortVersionString 1.3
|
if [ -x "$(command -v defaults)" ]; then
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info CFBundleName "wxWidgets 3.1"
|
PLIST_WRITE_CMD="defaults write"
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetFeedURL $ATOMDIR/$ATOM
|
else
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetFallbackURL https://docs.wxwidgets.org
|
PLIST_WRITE_CMD="python $SCRIPTS_DIR/write_info_tag.py"
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetDescription "API reference and conceptual documentation for wxWidgets 3.0"
|
fi
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info NSHumanReadableCopyright "Copyright 1992-2019 wxWidgets team, Portions 1996 Artificial Intelligence Applications Institute"
|
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info isJavaScriptEnabled true
|
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info dashIndexFilePath index.html
|
|
||||||
defaults write $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetPlatformFamily wx
|
|
||||||
|
|
||||||
$XCODE_INSTALL/usr/bin/docsetutil package -atom $DESTINATIONDIR/$ATOM -download-url $XARDIR/$XAR -output $DESTINATIONDIR/$XAR $DESTINATIONDIR/$DOCSETNAME
|
# 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"
|
||||||
|
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info NSHumanReadableCopyright "Copyright 1992-2019 wxWidgets team, Portions 1996 Artificial Intelligence Applications Institute"
|
||||||
|
$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
|
||||||
|
|
||||||
|
# Copy the icon
|
||||||
|
cp $SCRIPTS_DIR/../../../art/wxwin16x16.png $DESTINATIONDIR/$DOCSETNAME/icon.png
|
||||||
|
cp $SCRIPTS_DIR/../../../art/wxwin32x32.png $DESTINATIONDIR/$DOCSETNAME/icon@2x.png
|
||||||
cd ../..
|
cd ../..
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
41
docs/doxygen/scripts/write_info_tag.py
Executable file
41
docs/doxygen/scripts/write_info_tag.py
Executable file
@@ -0,0 +1,41 @@
|
|||||||
|
#
|
||||||
|
# write_info_tag.py
|
||||||
|
# Write a key/value pair to an Info.plist file created by Doxygen
|
||||||
|
# while generating docsets.
|
||||||
|
#
|
||||||
|
# Author: Ian McInerney (https://github.com/imciner2)
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import plistlib
|
||||||
|
|
||||||
|
# The first argument is the plist filename without the extension
|
||||||
|
fname = sys.argv[1] + ".plist"
|
||||||
|
|
||||||
|
# The second argument is the key to replace
|
||||||
|
key = sys.argv[2]
|
||||||
|
|
||||||
|
# The thrid argument is the value of the key
|
||||||
|
val = sys.argv[3]
|
||||||
|
|
||||||
|
# Handle boolean values
|
||||||
|
if val.lower() == "true":
|
||||||
|
val = True
|
||||||
|
elif val.lower() == "false":
|
||||||
|
val = False
|
||||||
|
|
||||||
|
|
||||||
|
if sys.version_info >= (3, 4, 0):
|
||||||
|
# Use the new API if python 3.4 is used
|
||||||
|
with open( fname, 'rb' ) as plist_file:
|
||||||
|
pl = plistlib.load( plist_file )
|
||||||
|
|
||||||
|
pl[key] = val
|
||||||
|
|
||||||
|
with open( fname, 'wb' ) as plist_file:
|
||||||
|
pl = plistlib.dump( pl, plist_file )
|
||||||
|
|
||||||
|
else:
|
||||||
|
# Use the old API otherwise (supports python 2.7 as well)
|
||||||
|
pl = plistlib.readPlist( fname )
|
||||||
|
pl[key] = val
|
||||||
|
plistlib.writePlist( pl, fname )
|
Reference in New Issue
Block a user