mirror of
https://github.com/boostorg/circular_buffer.git
synced 2026-01-26 06:22:30 +00:00
55 lines
2.0 KiB
Bash
55 lines
2.0 KiB
Bash
#!/bin/sh
|
|
################################################################################
|
|
# Shell script which updates the Circular Buffer library documentation with #
|
|
# the latest source code documentation (which is in the source files). #
|
|
# #
|
|
# Copyright (c) 2003-2008 Jan Gaspar #
|
|
# #
|
|
# Use, modification, and distribution is subject to the Boost Software #
|
|
# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at #
|
|
# http://www.boost.org/LICENSE_1_0.txt) #
|
|
################################################################################
|
|
|
|
CONTAINER=$1
|
|
DOCFILE="$CONTAINER.html"
|
|
XSLT="$CONTAINER.xslt"
|
|
XHTML="$CONTAINER.xhtml"
|
|
SPECIALIZATION=${CONTAINER#circular_buffer_}
|
|
|
|
if [ ${#SPECIALIZATION} -gt 0 ]; then
|
|
DOCFILE=${DOCFILE#circular_buffer_}
|
|
XSLT=${XSLT#circular_buffer_}
|
|
XHTML=${XHTML#circular_buffer_}
|
|
fi
|
|
|
|
if [ -f $DOCFILE ]; then
|
|
|
|
echo Starting Doxygen ...
|
|
doxygen
|
|
|
|
echo Converting Doxygen generated source code documentation into XHTML ...
|
|
xsltproc --stringparam container $CONTAINER --stringparam xmldir srcdoc -o srcdoc/srcdoc.xhtml $XSLT srcdoc/index.xml
|
|
|
|
echo Preprocessing $DOCFILE ...
|
|
sed 's/<a\s*id="[^"]*"/<a /g' $DOCFILE | sed 's/<a\s*\(name="[^"]*"\)\s*\(id="[^"]*"\)/<a \1/g' > srcdoc/$DOCFILE
|
|
|
|
echo Converting preprocessed $DOCFILE into XHTML ...
|
|
xsltproc --html -o srcdoc/$XHTML html2xhtml.xslt srcdoc/$DOCFILE
|
|
|
|
echo Generating $DOCFILE with updated source code documentation ...
|
|
xsltproc --stringparam srcdoc srcdoc/srcdoc.xhtml -o $DOCFILE update_srcdoc.xslt srcdoc/$XHTML
|
|
|
|
echo Correcting and pretty-printing $DOCFILE with HTML Tidy ...
|
|
tidy -ashtml -config Tidy.conf $DOCFILE
|
|
|
|
echo Removing temporary directory ...
|
|
rm -rf srcdoc
|
|
|
|
echo Done.
|
|
|
|
else
|
|
|
|
echo Usage: update_srcdoc.sh container
|
|
|
|
fi
|