Status: Move external dependencies into public_html/lib

Change-Id: Ib0cfdda5ded53af8e89aa239bd2f6e442f2537e3
This commit is contained in:
Timo Tijhof 2015-04-02 01:04:18 +01:00
parent 95e9d23832
commit 6beaff3d52
3 changed files with 7 additions and 11 deletions

View File

@ -1,4 +1 @@
public_html/jquery.min.js public_html/lib
public_html/jquery-visibility.js
public_html/bootstrap
public_html/jquery.graphite.js

View File

@ -1,6 +1,7 @@
#!/bin/bash #!/bin/bash
BASE_DIR=$(cd $(dirname $0); pwd) BASE_DIR=$(cd $(dirname $0); pwd)
DEST_DIR=$BASE_DIR/public_html DEST_DIR=$BASE_DIR/public_html/lib
mkdir -p $DEST_DIR
echo "Destination: $DEST_DIR" echo "Destination: $DEST_DIR"
echo "Fetching jquery.min.js..." echo "Fetching jquery.min.js..."

View File

@ -19,16 +19,14 @@ under the License.
<html dir="ltr" lang="en"> <html dir="ltr" lang="en">
<head> <head>
<title>Zuul Status</title> <title>Zuul Status</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/zuul.css" /> <link rel="stylesheet" href="styles/zuul.css" />
</head> </head>
<body> <body>
<div id="zuul_container"></div> <div id="zuul_container"></div>
<script src="lib/jquery.min.js"></script>
<script src="jquery.min.js"></script> <script src="lib/jquery-visibility.js"></script>
<script src="jquery-visibility.js"></script> <script src="lib/jquery.graphite.js"></script>
<script src="jquery.graphite.js"></script>
<script src="jquery.zuul.js"></script> <script src="jquery.zuul.js"></script>
<script src="zuul.app.js"></script> <script src="zuul.app.js"></script>
<script> <script>