mod_admin_web/admin_web/get_deps.sh
author Marco Cirillo <maranda@lightwitch.org>
Thu, 22 Sep 2011 15:00:39 +0000
changeset 439 c01679811fe8
parent 397 7331e2669f24
child 539 99465bbfa205
permissions -rwxr-xr-x
mod_register_redirect: renamed mod_register_url, and added options to allow more customization.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
291
94fab3c0a7aa mod_admin_web: replace get_deps.lua with a (working) get_deps.sh
Florian Zeitz <florob@babelmonkeys.de>
parents:
diff changeset
     1
#!/bin/sh
397
7331e2669f24 mod_admin_web: Update dependencies / remove need to build strophe.js (Thanks Zash)
Florian Zeitz <florob@babelmonkeys.de>
parents: 332
diff changeset
     2
JQUERY_VERSION="1.6.2"
7331e2669f24 mod_admin_web: Update dependencies / remove need to build strophe.js (Thanks Zash)
Florian Zeitz <florob@babelmonkeys.de>
parents: 332
diff changeset
     3
STROPHE_VERSION="1.0.2"
291
94fab3c0a7aa mod_admin_web: replace get_deps.lua with a (working) get_deps.sh
Florian Zeitz <florob@babelmonkeys.de>
parents:
diff changeset
     4
cd www_files/js
397
7331e2669f24 mod_admin_web: Update dependencies / remove need to build strophe.js (Thanks Zash)
Florian Zeitz <florob@babelmonkeys.de>
parents: 332
diff changeset
     5
test -e jquery-$JQUERY_VERSION.min.js || wget http://code.jquery.com/jquery-$JQUERY_VERSION.min.js
297
a70284e01453 mod_admin_web: Add support for calling adhoc commands
Florian Zeitz <florob@babelmonkeys.de>
parents: 291
diff changeset
     6
test -e adhoc.js || wget http://cgit.babelmonkeys.de/cgit.cgi/adhocweb/plain/js/adhoc.js
397
7331e2669f24 mod_admin_web: Update dependencies / remove need to build strophe.js (Thanks Zash)
Florian Zeitz <florob@babelmonkeys.de>
parents: 332
diff changeset
     7
test -e strophe.min.js || (wget https://github.com/downloads/metajack/strophejs/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)