mirror of https://github.com/CIRCL/AIL-framework
45 lines
1.6 KiB
Bash
Executable File
45 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
wget http://dygraphs.com/dygraph-combined.js -O ./static/js/dygraph-combined.js
|
|
|
|
SBADMIN_VERSION='1.0.4'
|
|
|
|
rm -rf temp
|
|
mkdir temp
|
|
|
|
wget https://github.com/BlackrockDigital/startbootstrap-sb-admin/archive/v${SBADMIN_VERSION}.zip -O temp/${SBADMIN_VERSION}.zip
|
|
unzip temp/${SBADMIN_VERSION}.zip -d temp/
|
|
mv temp/startbootstrap-sb-admin-${SBADMIN_VERSION} temp/sb-admin-2
|
|
|
|
rm -rf ./static/js/plugins
|
|
mv temp/sb-admin-2/js/* ./static/js/
|
|
|
|
rm -rf ./static/fonts/ ./static/font-awesome/
|
|
mv temp/sb-admin-2/fonts/ ./static/
|
|
mv temp/sb-admin-2/font-awesome/ ./static/
|
|
|
|
rm -rf ./static/css/plugins/
|
|
mv temp/sb-admin-2/css/* ./static/css/
|
|
|
|
rm -rf temp
|
|
|
|
JQVERSION="1.12.4"
|
|
wget http://code.jquery.com/jquery-${JQVERSION}.js -O ./static/js/jquery.js
|
|
|
|
#Ressources for dataTable
|
|
wget https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js -O ./static/js/jquery.dataTables.min.js
|
|
wget https://cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css -O ./static/css/dataTables.bootstrap.css
|
|
wget https://cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.js -O ./static/js/dataTables.bootstrap.js
|
|
|
|
#Ressource for graph
|
|
wget https://raw.githubusercontent.com/flot/flot/master/jquery.flot.js -O ./static/js/jquery.flot.js
|
|
wget https://raw.githubusercontent.com/flot/flot/master/jquery.flot.pie.js -O ./static/js/jquery.flot.pie.js
|
|
wget https://raw.githubusercontent.com/flot/flot/master/jquery.flot.time.js -O ./static/js/jquery.flot.time.js
|
|
|
|
mkdir -p ./static/image
|
|
pushd static/image
|
|
wget https://www.circl.lu/assets/images/logos/AIL.png -O AIL.png
|
|
popd
|