]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - pkgs/webapps/apache-theme/theme/footer.html
Squash changes containing private information
[perso/Immae/Config/Nix.git] / pkgs / webapps / apache-theme / theme / footer.html
diff --git a/pkgs/webapps/apache-theme/theme/footer.html b/pkgs/webapps/apache-theme/theme/footer.html
deleted file mode 100644 (file)
index 57a2012..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-</div><!--/.wrapper-->
-
-<script type="text/javascript">
-// grab the 2nd child and add the parent class. tr:nth-child(2)
-document.getElementsByTagName('tr')[1].className = 'parent';
-// fix links when not adding a / at the end of the URI
-var uri = window.location.pathname.substr(1);
-if (uri.length > 0 && uri.substring(uri.length-1) != '/'){
-       var indexes = document.getElementsByClassName('indexcolname'),
-       i = indexes.length;
-       while (i--){
-           var a = indexes[i].getElementsByTagName('a')[0];
-           a.href = '/' + uri + '/' + a.getAttribute('href',2);
-       }
-}
-
-function getAjax(url, success) {
-  var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
-  xhr.open('GET', url);
-  xhr.onreadystatechange = function() {
-    if (xhr.readyState>3 && xhr.status==200)
-      success(xhr.responseText);
-  };
-  xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
-  xhr.send();
-  return xhr;
-}
-getAjax("title", function(data) {
-  document.getElementById('pagetitle').innerHTML = data;
-});
-</script>