mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-07 00:04:36 +03:00
Updated fetch.sh to get the reference homepage for the current Arduino version and updated the reference .zip.
This commit is contained in:
@@ -5,12 +5,13 @@
|
|||||||
# Script to download reference pages from Arduino website and change links
|
# Script to download reference pages from Arduino website and change links
|
||||||
# to point to local copies of the pages. A terrible hack.
|
# to point to local copies of the pages. A terrible hack.
|
||||||
|
|
||||||
|
REVISION=`head -1 ../todo.txt | cut -c 1-4`
|
||||||
mkdir reference
|
mkdir reference
|
||||||
cd reference
|
cd reference
|
||||||
curl http://www.arduino.cc/en/Guide/HomePage -o Guide_index.html
|
curl http://www.arduino.cc/en/Guide/HomePage -o Guide_index.html
|
||||||
curl http://www.arduino.cc/en/Main/FAQ -o FAQ.html
|
curl http://www.arduino.cc/en/Main/FAQ -o FAQ.html
|
||||||
curl http://arduino.cc/en/Main/Environment -o environment.html
|
curl http://arduino.cc/en/Main/Environment -o environment.html
|
||||||
curl http://www.arduino.cc/en/Reference/HomePage -o index.html
|
curl http://www.arduino.cc/en/Reference/HomePage$REVISION -o index.html
|
||||||
curl http://www.arduino.cc/en/pub/skins/arduino/arduino.css -o arduino.css
|
curl http://www.arduino.cc/en/pub/skins/arduino/arduino.css -o arduino.css
|
||||||
for i in `grep -o "http://www.arduino.cc/en/Guide/[^']*" Guide_index.html | sort -u | grep -v '?' | cut -d '/' -f 6`; do curl http://www.arduino.cc/en/Guide/$i -o Guide_$i.html; done
|
for i in `grep -o "http://www.arduino.cc/en/Guide/[^']*" Guide_index.html | sort -u | grep -v '?' | cut -d '/' -f 6`; do curl http://www.arduino.cc/en/Guide/$i -o Guide_$i.html; done
|
||||||
for i in `grep -o "http://www.arduino.cc/en/Reference/[^']*" index.html | sort -u | grep -v '?' | cut -d '/' -f 6`; do curl http://www.arduino.cc/en/Reference/$i -o $i.html; done
|
for i in `grep -o "http://www.arduino.cc/en/Reference/[^']*" index.html | sort -u | grep -v '?' | cut -d '/' -f 6`; do curl http://www.arduino.cc/en/Reference/$i -o $i.html; done
|
||||||
@@ -24,4 +25,4 @@ perl -i -pe "s|HomePage.html|index.html|g" *.html
|
|||||||
perl -i -pe "s|href=\"/\"|href=\"http://www.arduino.cc/\"|g" *.html
|
perl -i -pe "s|href=\"/\"|href=\"http://www.arduino.cc/\"|g" *.html
|
||||||
cd ..
|
cd ..
|
||||||
zip -r shared/reference.zip reference
|
zip -r shared/reference.zip reference
|
||||||
#rm -rf reference
|
rm -rf reference
|
||||||
|
Binary file not shown.
Reference in New Issue
Block a user