5 # This bash script regenerates the HTML doxygen version of the
6 # wxWidgets manual and adjusts the doxygen log to make it more
10 # ./regen.sh [html|chm|xml|latex|all]
12 # Pass "x" to regen only the X output format and "all" to regen them all.
13 # If no arguments are passed all formats are regenerated
14 # (just like passing "all").
18 # remember current folder and then cd to the docs/doxygen one
20 path
=${0%%/$me} # path from which the script has been launched
23 if [ "$WXWIDGETS" = "" ]; then
24 export WXWIDGETS
=`cd ../.. && pwd`
25 if [ "$OSTYPE" = "cygwin" ]; then
26 export WXWIDGETS
=`cygpath -w $WXWIDGETS`
30 # prepare folders for the cp commands below
31 mkdir -p out
/html
# we need to copy files in this folder below
32 mkdir -p out
/html
/generic out
/html
/wxmsw out
/html
/wxgtk out
/html
/wxmac
34 # These are not automatically copied by Doxygen because they're not
35 # used in doxygen documentation, only in our html footer and by our
37 cp images
/powered
-by-wxwidgets.png out
/html
38 cp images
/logo_
*.png out
/html
39 cp images
/tab_
*.gif out
/html
40 cp images
/wxmsw
/*png out
/html
/wxmsw
41 cp images
/wxmac
/*png out
/html
/wxmac
42 cp images
/wxgtk
/*png out
/html
/wxgtk
43 cp images
/generic
/*png out
/html
/generic
44 cp wxwidgets.js out
/html
46 # which configuration should we use?
47 if [[ -z "$1" ]]; then
48 cfgfile
="Doxyfile_all"
56 # NB: we do this _after_ copying the required files to the output folders
57 # otherwise when generating the CHM file with Doxygen, those files are
62 if [[ "$1" = "qch" ]]; then
63 # we need to add missing files to the .qhp
67 # remove all <file> and <files> tags
68 cat $qhelpfile | grep -v "<file" >temp
70 # remove last 4 lines (so we have nothing after the last <keyword> tag)
72 wanted
=`expr $lines - 4`
73 head -n $wanted temp
>$qhelpfile
75 # generate a list of new <keyword> tags to add to the index file; without
76 # this step in the 'index' tab of Qt assistant the "wxWindow" class is not
77 # present; just "wxWindow::wxWindow" ctor is listed.
78 # NOTE: this operation is not indispensable but produces a QCH easier to use IMO.
79 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
81 echo " </keywords>" >>$qhelpfile
82 echo " <files>" >>$qhelpfile
84 # remove useless files to make the qch slim
87 # add a <file> tag for _any_ file in out/html folder except the .qhp itself
89 if [[ $f != $qhelpfile ]]; then
90 echo " <file>$f</file>" >>$qhelpfile
94 # add ending tags to the qhp file
97 </QtHelpProject>" >>$qhelpfile
99 # replace keyword names so that they appear fully-qualified in the
100 # "index" tab of the Qt Assistant; e.g. Fit => wxWindow::Fit
101 # NOTE: this operation is not indispendable but produces a QCH easier to use IMO.
102 sed -e 's/<keyword name="[a-zA-Z:~]*" id="\([a-zA-Z]*::[a-zA-Z~]*\)"/<keyword name="\1" id="\1"/g' <$qhelpfile >temp
105 # last, run qhelpgenerator:
107 qhelpgenerator out
/html
/index.qhp
-o out
/wx.qch
110 if [[ "$1" = "docset" ]]; then
111 DOCSETNAME
="org.wxwidgets.doxygen.wx29.docset"
112 ATOM
="org.wxwidgets.doxygen.docset.wx29.atom"
113 ATOMDIR
="http://docs.wxwidgets.org/docsets"
114 XAR
="org.wxwidgets.doxygen.docset.wx29.xar"
115 XARDIR
="http://docs.wxwidgets.org/docsets"
116 XCODE_INSTALL
=`sh xcode-select -print-path`
118 cp wxdocsettabs.css out
/html
/wxtabs.css
119 cp wxdocsetwidgets.css out
/html
/wxwidgets.css
120 cp img_downArrow.png out
/html
121 cp background_navigation.png out
/html
126 rm -rf $DESTINATIONDIR/$DOCSETNAME
127 rm -f $DESTINATIONDIR/$XAR
131 defaults
write $DESTINATIONDIR/$DOCSETNAME/Contents
/Info CFBundleVersion
1.3
132 defaults
write $DESTINATIONDIR/$DOCSETNAME/Contents
/Info CFBundleShortVersionString
1.3
133 defaults
write $DESTINATIONDIR/$DOCSETNAME/Contents
/Info CFBundleName
"wxWidgets 2.9 Library"
134 defaults
write $DESTINATIONDIR/$DOCSETNAME/Contents
/Info DocSetFeedURL
$ATOMDIR/$ATOM
135 defaults
write $DESTINATIONDIR/$DOCSETNAME/Contents
/Info DocSetFallbackURL http
://docs.wxwidgets.org
136 defaults
write $DESTINATIONDIR/$DOCSETNAME/Contents
/Info DocSetDescription
"API reference and conceptual documentation for wxWidgets 2.9"
137 defaults
write $DESTINATIONDIR/$DOCSETNAME/Contents
/Info NSHumanReadableCopyright
"Copyright 1992-2011 wxWidgets team, Portions 1996 Artificial Intelligence Applications Institute"
139 $XCODE_INSTALL/usr
/bin
/docsetutil package
-atom $DESTINATIONDIR/$ATOM -download-url $XARDIR/$XAR -output $DESTINATIONDIR/$XAR $DESTINATIONDIR/$DOCSETNAME
144 # Doxygen has the annoying habit to put the full path of the
145 # affected files in the log file; remove it to make the log
148 interfacepath
=`cd ../../interface && pwd`/
149 cat doxygen.log
| sed -e "s|$currpath||g" -e "s|$interfacepath||g" > temp
150 cat temp
> doxygen.log
153 # return to the original folder from which this script was launched