mod_admin_web/admin_web/get_deps.sh
author Florian Zeitz <florob@babelmonkeys.de>
Thu, 12 Dec 2013 22:38:20 +0100
changeset 1249 182cb8a8d2d8
parent 1217 b3e2ed890b93
child 1256 ab80da799edf
permissions -rwxr-xr-x
mod_admin_web: Bump strophe.js version (use *all* the SCRAM-SHA-1)
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
1217
b3e2ed890b93 mod_admin_web: Bump jquery version
Florian Zeitz <florob@babelmonkeys.de>
parents: 1120
diff changeset
     2
JQUERY_VERSION="1.10.2"
1249
182cb8a8d2d8 mod_admin_web: Bump strophe.js version (use *all* the SCRAM-SHA-1)
Florian Zeitz <florob@babelmonkeys.de>
parents: 1217
diff changeset
     3
STROPHE_VERSION="1.1.0"
571
817322323fea mod_admin_web: Add bootstrap to get_deps.sh
Matthew Wild <mwild1@gmail.com>
parents: 547
diff changeset
     4
BOOTSTRAP_VERSION="1.4.0"
768
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
     5
ADHOC_COMMITISH="87bfedccdb91e2ff7cfb165e989e5259c155b513"
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
     6
291
94fab3c0a7aa mod_admin_web: replace get_deps.lua with a (working) get_deps.sh
Florian Zeitz <florob@babelmonkeys.de>
parents:
diff changeset
     7
cd www_files/js
768
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
     8
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
     9
rm -f jquery-$JQUERY_VERSION.min.js
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
    10
wget http://code.jquery.com/jquery-$JQUERY_VERSION.min.js
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
    11
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
    12
rm -f adhoc.js
1000
8f290d50087f mod_admin_web: Update URL for adhoc.js
Florian Zeitz <florob@babelmonkeys.de>
parents: 768
diff changeset
    13
wget -O adhoc.js "http://git.babelmonkeys.de/?p=adhocweb.git;a=blob_plain;f=js/adhoc.js;hb=$ADHOC_COMMITISH"
768
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
    14
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
    15
rm -f strophe.min.js
1019
7cba8be42d9e mod_admin_web: Update to new strophejs location, and jQuery 1.9.1
Florian Zeitz <florob@babelmonkeys.de>
parents: 1000
diff changeset
    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
768
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
    17
571
817322323fea mod_admin_web: Add bootstrap to get_deps.sh
Matthew Wild <mwild1@gmail.com>
parents: 547
diff changeset
    18
cd ../css
768
af06e69c807a mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents: 575
diff changeset
    19
rm -f bootstrap-$BOOTSTRAP_VERSION.min.css
1120
fc26a33fc2f3 mod_admin_web: Change bootstrap URL
Florian Zeitz <florob@babelmonkeys.de>
parents: 1023
diff changeset
    20
wget https://raw.github.com/twbs/bootstrap/v$BOOTSTRAP_VERSION/bootstrap.min.css -O bootstrap-$BOOTSTRAP_VERSION.min.css