Fix up status page dependencies

bootstrap-responsive is no longer required.
Make sure we follow redirects when fetching deps

Change-Id: Ib1222fcb590def5c0147a53f046def86da745830
diff --git a/etc/status/.gitignore b/etc/status/.gitignore
index 8b94cad..1ecdbed 100644
--- a/etc/status/.gitignore
+++ b/etc/status/.gitignore
@@ -1,4 +1,4 @@
 public_html/jquery.min.js
-public_html/jquery-visibility.min.js
+public_html/jquery-visibility.js
 public_html/bootstrap
 public_html/jquery.graphite.js
diff --git a/etc/status/fetch-dependencies.sh b/etc/status/fetch-dependencies.sh
index 4868310..b31d0de 100755
--- a/etc/status/fetch-dependencies.sh
+++ b/etc/status/fetch-dependencies.sh
@@ -3,10 +3,10 @@
 echo "Destination: $BASE_DIR/public_html"
 
 echo "Fetching jquery.min.js..."
-curl --silent http://code.jquery.com/jquery.min.js > $BASE_DIR/public_html/jquery.min.js
+curl -L --silent http://code.jquery.com/jquery.min.js > $BASE_DIR/public_html/jquery.min.js
 
 echo "Fetching jquery-visibility.min.js..."
-curl --silent https://raw.githubusercontent.com/mathiasbynens/jquery-visibility/master/jquery-visibility.js > $BASE_DIR/public_html/jquery-visibility.min.js
+curl -L --silent https://raw.githubusercontent.com/mathiasbynens/jquery-visibility/master/jquery-visibility.js > $BASE_DIR/public_html/jquery-visibility.js
 
 echo "Fetching jquery.graphite.js..."
 curl -L --silent https://github.com/prestontimmons/graphitejs/archive/master.zip > jquery-graphite.zip
diff --git a/etc/status/public_html/index.html b/etc/status/public_html/index.html
index d77470b..3bd7a12 100644
--- a/etc/status/public_html/index.html
+++ b/etc/status/public_html/index.html
@@ -20,7 +20,6 @@
 <head>
     <title>Zuul Status</title>
     <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
-    <link rel="stylesheet" href="bootstrap/css/bootstrap-responsive.min.css">
     <link rel="stylesheet" href="styles/zuul.css" />
 </head>
 <body>
@@ -28,7 +27,7 @@
     <div id="zuul_container"></div>
 
     <script src="jquery.min.js"></script>
-    <script src="jquery-visibility.min.js"></script>
+    <script src="jquery-visibility.js"></script>
     <script src="jquery.graphite.js"></script>
     <script src="jquery.zuul.js"></script>
     <script src="zuul.app.js"></script>