Software / code / prosody-modules
Comparison
mod_admin_web/admin_web/get_deps.sh @ 1270:7c3c3343365c
mod_admin_web: Bump strophe.js version
| author | Florian Zeitz <florob@babelmonkeys.de> |
|---|---|
| date | Sun, 05 Jan 2014 01:39:49 +0100 |
| parent | 1256:ab80da799edf |
| child | 2786:127d5452e4bb |
comparison
equal
deleted
inserted
replaced
| 1269:69d42d2427f7 | 1270:7c3c3343365c |
|---|---|
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 JQUERY_VERSION="1.10.2" | 2 JQUERY_VERSION="1.10.2" |
| 3 STROPHE_VERSION="1.1.1" | 3 STROPHE_VERSION="1.1.2" |
| 4 BOOTSTRAP_VERSION="1.4.0" | 4 BOOTSTRAP_VERSION="1.4.0" |
| 5 ADHOC_COMMITISH="87bfedccdb91e2ff7cfb165e989e5259c155b513" | 5 ADHOC_COMMITISH="87bfedccdb91e2ff7cfb165e989e5259c155b513" |
| 6 | 6 |
| 7 cd www_files/js | 7 cd www_files/js |
| 8 | 8 |
| 9 rm -f jquery-$JQUERY_VERSION.min.js | 9 rm -f jquery-$JQUERY_VERSION.min.js |
| 10 wget http://code.jquery.com/jquery-$JQUERY_VERSION.min.js | 10 wget http://code.jquery.com/jquery-$JQUERY_VERSION.min.js || exit 1 |
| 11 | 11 |
| 12 rm -f adhoc.js | 12 rm -f adhoc.js |
| 13 wget -O adhoc.js "http://git.babelmonkeys.de/?p=adhocweb.git;a=blob_plain;f=js/adhoc.js;hb=$ADHOC_COMMITISH" | 13 wget -O adhoc.js "http://git.babelmonkeys.de/?p=adhocweb.git;a=blob_plain;f=js/adhoc.js;hb=$ADHOC_COMMITISH" || exit 1 |
| 14 | 14 |
| 15 rm -f strophe.min.js | 15 rm -f strophe.min.js |
| 16 wget https://raw.github.com/strophe/strophe.im/gh-pages/strophejs/downloads/strophejs-$STROPHE_VERSION.tar.gz && tar xzf strophejs-$STROPHE_VERSION.tar.gz strophejs-$STROPHE_VERSION/strophe.min.js --strip-components=1 && rm strophejs-$STROPHE_VERSION.tar.gz | 16 wget https://raw.github.com/strophe/strophe.im/gh-pages/strophejs/downloads/strophejs-$STROPHE_VERSION.tar.gz && tar xzf strophejs-$STROPHE_VERSION.tar.gz strophejs-$STROPHE_VERSION/strophe.min.js --strip-components=1 && rm strophejs-$STROPHE_VERSION.tar.gz || exit 1 |
| 17 | 17 |
| 18 cd ../css | 18 cd ../css |
| 19 rm -f bootstrap-$BOOTSTRAP_VERSION.min.css | 19 rm -f bootstrap-$BOOTSTRAP_VERSION.min.css |
| 20 wget https://raw.github.com/twbs/bootstrap/v$BOOTSTRAP_VERSION/bootstrap.min.css -O bootstrap-$BOOTSTRAP_VERSION.min.css | 20 wget https://raw.github.com/twbs/bootstrap/v$BOOTSTRAP_VERSION/bootstrap.min.css -O bootstrap-$BOOTSTRAP_VERSION.min.css || exit 1 |