summaryrefslogtreecommitdiff
path: root/build_tools/prep_tarball
diff options
context:
space:
mode:
authorLeif Madsen <leif@leifmadsen.com>2011-10-06 13:43:52 +0000
committerLeif Madsen <leif@leifmadsen.com>2011-10-06 13:43:52 +0000
commit7b75de509b206668786f600e21d89e783f6f20eb (patch)
treea3dd827ce50174427fa38aeaed9cb73066f52b3b /build_tools/prep_tarball
parente4b07e2d3854d433312c1b22ee1aa9d7adccc5f3 (diff)
Merged revisions 339586 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r339586 | lmadsen | 2011-10-06 08:43:21 -0500 (Thu, 06 Oct 2011) | 16 lines Merged revisions 339566 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r339566 | lmadsen | 2011-10-05 16:30:11 -0500 (Wed, 05 Oct 2011) | 8 lines Update prep_tarball script to download pre-exported documentation. I've updated the prep_tarball script to now download the pre-exported documentation from the Asterisk wiki. This will give us more control over what is being included in the tarball releases, and will make both the PDF and HTML exported documentation look much better (especially when viewing from a console). (Closes issue ASTERISK-18677) ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@339587 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'build_tools/prep_tarball')
-rwxr-xr-xbuild_tools/prep_tarball34
1 files changed, 15 insertions, 19 deletions
diff --git a/build_tools/prep_tarball b/build_tools/prep_tarball
index 3fbe6ca9f..696f195f4 100755
--- a/build_tools/prep_tarball
+++ b/build_tools/prep_tarball
@@ -7,27 +7,23 @@
make -C sounds MENUSELECT_CORE_SOUNDS=CORE-SOUNDS-EN-GSM MENUSELECT_MOH=MOH-OPSOUND-WAV WGET=wget DOWNLOAD=wget all
-if ! which wikiexport.py 2>&1 > /dev/null ; then
- echo
- echo "wikiexport.py not found in \${PATH}."
- echo
- echo "Please add repotools into PATH."
- echo " $ svn co http://svn.asterisk.org/svn/repotools"
- echo
- exit 1
-fi
+branch=$1
-if ! which pdftotext 2>&1 > /dev/null ; then
- echo
- echo "pdftotext not found. Please install it."
- echo
- echo "On Debian/Ubuntu/Fedora/CentOS, install the poppler-utils package."
- echo
+if [ -z "$branch" ]
+then
+ echo "No branch specified. Exiting."
exit 1
fi
+hash unzip 2>&- || { echo >&2 "The unzip application is required but was not found. Aborting."; exit 1; }
+
cd doc
-echo "Exporting Asterisk wiki to a PDF (this will take a minute) ..."
-wikiexport.py
-echo "Converting wiki export PDF to plain text ..."
-pdftotext AST.pdf
+echo "Downloading the PDF and HTML documentation from the Asterisk wiki (this will take a minute) ..."
+wget https://wiki.asterisk.org/wiki/download/attachments/19005471/Asterisk-Admin-Guide-$branch.pdf
+wget https://wiki.asterisk.org/wiki/download/attachments/19005471/Asterisk-Admin-Guide-$branch.html.zip
+echo "Extracting HTML Admin Guide"
+unzip Asterisk-Admin-Guide-$branch.html.zip
+mv AST/ Asterisk-Admin-Guide/
+mv Asterisk-Admin-Guide-1.8.pdf Asterisk-Admin-Guide.pdf
+rm -f Asterisk-Admin-Guide-$branch.html.zip
+echo "Documentation downloaded. Goodbye!"