* Check whether the reision has changed * if it has: * rebuild the examples.js * Rebuild the singlefile, copy it * Change all the examples to use the singlefile * Record the most recent rev git-svn-id: http://svn.openlayers.org/trunk/openlayers@7122 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
30 lines
649 B
Bash
Executable File
30 lines
649 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Used to update http://openlayers.org/dev/
|
|
|
|
svn up /www/openlayers/docs/dev;
|
|
|
|
# Get current Revision
|
|
REV=`svn info /www/openlayers/docs/dev/ | grep Revision | awk '{print $2}'`
|
|
|
|
# Get the last svn rev
|
|
touch /tmp/ol_svn_rev
|
|
OLD_REV="o`cat /tmp/ol_svn_rev`"
|
|
|
|
# If they're not equal, do some work.
|
|
if [ ! o$REV = $OLD_REV ]; then
|
|
|
|
cd /www/openlayers/docs/dev/tools/
|
|
python exampleparser.py
|
|
cd /www/openlayers/docs/dev/build
|
|
./build.py
|
|
|
|
cp OpenLayers.js ..
|
|
cd ..
|
|
|
|
sed -i -e 's!../lib/OpenLayers.js!../OpenLayers.js!' examples/*.html
|
|
|
|
# Record the revision
|
|
echo -n $REV > /tmp/ol_svn_rev
|
|
fi
|