# HG changeset patch # User Matthew Wild # Date 1326816347 0 # Node ID 817322323fea94755e6549a93646b1748ff16bfe # Parent 390d995bedcf14fb93d214173654c55e6da9e9d9 mod_admin_web: Add bootstrap to get_deps.sh diff -r 390d995bedcf -r 817322323fea mod_admin_web/admin_web/get_deps.sh --- a/mod_admin_web/admin_web/get_deps.sh Tue Jan 17 16:04:54 2012 +0000 +++ b/mod_admin_web/admin_web/get_deps.sh Tue Jan 17 16:05:47 2012 +0000 @@ -1,7 +1,10 @@ #!/bin/sh JQUERY_VERSION="1.7.1" STROPHE_VERSION="1.0.2" +BOOTSTRAP_VERSION="1.4.0" cd www_files/js test -e jquery-$JQUERY_VERSION.min.js || wget http://code.jquery.com/jquery-$JQUERY_VERSION.min.js test -e adhoc.js || wget -O adhoc.js "http://cgit.babelmonkeys.de/cgit.cgi/adhocweb/plain/js/adhoc.js?id=e55b23864a9911c15d930b43ed9afe1df5943bf7" 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) +cd ../css +test -e bootstrap-$BOOTSTRAP_VERSION.min.css || wget http://twitter.github.com/bootstrap/$BOOTSTRAP_VERSION/bootstrap.min.css -O bootstrap-$BOOTSTRAP_VERSION.min.css