1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/httpd/templates/refresh-wiki-docs.sh

74 lines
3.1 KiB
Bash
Raw Normal View History

#!/bin/bash -x
2017-10-12 23:37:38 +00:00
2017-10-13 03:03:35 +00:00
# Pull down repo's entire wiki (and similar) to create offline docs
2017-10-12 23:37:38 +00:00
2017-06-13 18:50:07 +00:00
set -e
source /etc/iiab/iiab.env
2017-10-13 03:03:35 +00:00
INPUT=/tmp/iiab-wiki
OUTPUT=/tmp/iiab-wiki.out
2017-10-12 23:37:38 +00:00
DESTPATH=/library/www/html/info
rm -rf $INPUT
rm -rf $OUTPUT
mkdir -p $INPUT
mkdir -p $OUTPUT
2017-10-12 23:37:38 +00:00
git clone https://github.com/iiab/iiab.wiki.git $INPUT
2017-10-13 03:03:35 +00:00
for f in `ls $INPUT`; do
FTRIMMED=${f%.md}
2017-10-12 23:37:38 +00:00
if [ $FTRIMMED = "Home" ]; then FTRIMMED=index; fi
2017-10-13 03:03:35 +00:00
pandoc -s $INPUT/$f -o $OUTPUT/$FTRIMMED.html
done
2017-10-12 23:37:38 +00:00
rsync -av $OUTPUT/ $DESTPATH
2017-10-13 03:03:35 +00:00
# To Do: find more pages to d/l and offline links to fix, based on "fieldback" from truly remote implementer/operators
# Download FAQ etc
2017-10-12 23:37:38 +00:00
lynx -reload -source http://wiki.laptop.org/go/IIAB/FAQ > $DESTPATH/FAQ.html
lynx -reload -source http://wiki.laptop.org/go/IIAB/Security > $DESTPATH/Security.html
lynx -reload -source http://wiki.laptop.org/go/IIAB/local_vars.yml > $DESTPATH/local_vars.yml
lynx -reload -source http://wiki.laptop.org/go/IIAB/local_vars_min.yml > $DESTPATH/local_vars_min.yml
lynx -reload -source http://wiki.laptop.org/go/IIAB/local_vars_big.yml > $DESTPATH/local_vars_big.yml
2017-10-13 03:03:35 +00:00
# Download older release notes
2017-10-12 23:37:38 +00:00
lynx -reload -source https://github.com/XSCE/xsce/wiki/IIAB-6.2-Release-Notes > $DESTPATH/IIAB-6.2-Release-Notes.html
lynx -reload -source https://github.com/XSCE/xsce/blob/release-6.2/ReleaseNotes6.0.md > $DESTPATH/ReleaseNotes6.0.html
lynx -reload -source https://github.com/XSCE/xsce/blob/release-6.2/ReleaseNotes6.1.md > $DESTPATH/ReleaseNotes6.1.html
2017-10-13 03:03:35 +00:00
# Make links refer to local items
for f in $DESTPATH/*.html; do
sed -i -r "s|https://github.com/iiab/iiab/wiki/([-.A-Za-z0-9]*)|\1.html|g" $f
sed -i -e "s|https://github.com/xsce/xsce/blob/release-6.2/\(.*\)\.md\">|\1.html\">|g" $f
sed -i -e "s|https://github.com/xsce/xsce/wiki/\(.*\)\">|\1.html\">|g" $f
sed -i -e "s|http://wiki.laptop.org/go/IIAB/FAQ|FAQ.html|g" $f
sed -i -e "s|/go/IIAB/FAQ|FAQ.html|g" $f
sed -i -e "s|http://wiki.iiab.io/FAQ|FAQ.html|g" $f
sed -i -e "s|http://FAQ.IIAB.IO|FAQ.html|g" $f
sed -i -e "s|http://faq.iiab.io|FAQ.html|g" $f
sed -i -e "s|http://schoolserver.org/FAQ|FAQ.html|g" $f
sed -i -e "s|http://schoolserver.org/faq|FAQ.html|g" $f
sed -i -e "s|http://wiki.laptop.org/go/XS_Community_Edition/FAQ|FAQ.html|g" $f
sed -i -e "s|http://wiki.laptop.org/go/IIAB/Security|Security.html|g" $f
sed -i -e "s|/go/IIAB/Security|Security.html|g" $f
sed -i -e "s|http://wiki.iiab.io/Security|Security.html|g" $f
sed -i -e "s|http://wiki.laptop.org/go/IIAB/local_vars.yml|local_vars.yml|g" $f
sed -i -e "s|/go/IIAB/local_vars.yml|local_vars.yml|g" $f
sed -i -e "s|http://wiki.iiab.io/local_vars.yml|local_vars.yml|g" $f
sed -i -e "s|http://wiki.laptop.org/go/IIAB/local_vars_min.yml|local_vars_min.yml|g" $f
sed -i -e "s|/go/IIAB/local_vars_min.yml|local_vars_min.yml|g" $f
sed -i -e "s|http://wiki.iiab.io/local_vars_min.yml|local_vars_min.yml|g" $f
sed -i -e "s|http://wiki.laptop.org/go/IIAB/local_vars_big.yml|local_vars_big.yml|g" $f
sed -i -e "s|/go/IIAB/local_vars_big.yml|local_vars_big.yml|g" $f
sed -i -e "s|http://wiki.iiab.io/local_vars_big.yml|local_vars_big.yml|g" $f
done
2017-10-12 23:37:38 +00:00
2017-06-20 01:12:18 +00:00
exit 0