]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/bweb/html/bweb.js
ebl fix javascript
[bacula/bacula] / gui / bweb / html / bweb.js
index e92340ccf97f5b1af5888c04c2c2c17934ec08ed..72b50e8f0e7576563ef00ed3911d5efb86dd16b6 100644 (file)
@@ -1,7 +1,37 @@
+// Bweb - A Bacula web interface
+// Bacula® - The Network Backup Solution
+//
+// Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
+//
+// The main author of Bweb is Eric Bollengier.
+// The main author of Bacula is Kern Sibbald, with contributions from
+// many others, a complete list can be found in the file AUTHORS.
+//
+// This program is Free Software; you can redistribute it and/or
+// modify it under the terms of version two of the GNU General Public
+// License as published by the Free Software Foundation plus additions
+// that are listed in the file LICENSE.
+//
+// This program is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+// 02110-1301, USA.
+//
+// Bacula® is a registered trademark of John Walker.
+// The licensor of Bacula is the Free Software Foundation Europe
+// (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zurich,
+// Switzerland, email:ftf@fsfeurope.org.
+
  var even_cell_color = "#FFFFFF";
  var odd_cell_color  = "#EEEEEE";
  var header_color    = "#E1E0DA";
  var rows_per_page   = 20;
+ var bweb_root       = "/bweb/";
  var up_icon         = "/bweb/up.gif";
  var down_icon       = "/bweb/down.gif";
  var prev_icon       = "/bweb/left.gif";
@@ -53,6 +83,52 @@ function bweb_add_refresh(){
        window.setInterval("bweb_refresh()",refresh_time);
 }
 
+function human_size(val)
+{   
+   if (!val) {
+      return '';
+   }
+   var unit = ['b', 'Kb', 'Mb', 'Gb', 'Tb'];
+   var i=0;
+   var format;
+   while (val /1024 > 1) {
+      i++;
+      val /= 1024;
+   }
+
+   var format = (i>0)?1:0;
+   return val.toFixed(format) + ' ' + unit[i];
+}
+
+function human_sec(val)
+{
+   if (!val) {
+      val = 0;
+   }
+   val /= 60;                  // sec -> min
+   
+   if ((val / 60) <= 1) {
+      return val.toFixed(0) + ' mins';
+   }
+
+   val /= 60;                  // min -> hour
+
+   if ((val / 24) <= 1) { 
+      return val.toFixed(0) + ' hours';
+   }
+
+   val /= 24;                   // hour -> day
+
+   if ((val / 365) < 2) { 
+      return val.toFixed(0) + ' days';
+   }
+
+   val /= 365;
+
+   return val.toFixed(0) + ' years';
+}
+
+
 //
 // percent_display("row2", [ { nb: 1, name: "Full"   },
 //                        { nb: 2, name: "Error"  },
@@ -74,11 +150,18 @@ function percent_get_img(type)
    return img;
 }
 
-function percent_display(parent, hash_values)
+var percent_display_nb_slice = 20;
+var percent_usage_nb_slice = 5;
+
+function percent_display(hash_values, parent)
 {
-   var nb_elt=20;
+   var nb_elt=percent_display_nb_slice;
    var tips= "";
 
+   if (!parent) {
+      parent = document.createElement('DIV');
+   }
+
    if (typeof parent != "object") {
       parent = document.getElementById(parent);
    } 
@@ -122,4 +205,105 @@ function percent_display(parent, hash_values)
 
   parent.title = tips;
 
+  return parent;
 }
+
+function percent_usage(value, parent)
+{
+   var nb_elt=percent_usage_nb_slice;
+   var type;
+  
+   if (!parent) {
+      parent = document.createElement('DIV');
+   }   
+
+   if (typeof parent != "object") {
+      parent = document.getElementById(parent);
+   } 
+
+   if (!parent) {
+       alert("E : display_percent(): Can't find parent " + parent);
+       return;
+   }
+
+   if (value <= 0.001) {
+      type = "Empty";
+      value = 0;      
+   } else if (value <= 40) {
+      type = "Ok";
+   } else if (value <= 75) {
+      type = "Warn";
+   } else if (value <= 85) {
+      type = "Crit";
+   } else {
+      type = "Crit";
+   }
+
+   var nb = parseInt(value*nb_elt/100, 10);
+   parent.title = parseInt(value*100,10)/100 + "% used (approximate)";
+
+   for(var i=0; i<nb; i++) {
+      var img= percent_get_img(type);
+      parent.appendChild(img);
+   }
+
+   for(nb;nb < nb_elt;nb++) {
+      var img= percent_get_img("Empty");
+      parent.appendChild(img);       
+   } 
+
+   return parent;
+}
+
+function bweb_get_job_img(status, errors)
+{
+  var ret;
+
+  if (status == "T") {
+     if (errors > 0) {
+        ret = "W.png";
+
+     } else {
+        ret = "T.png";
+     }
+
+  } else {
+     ret = status + ".png";
+  }
+
+  return bweb_root + ret;
+}
+
+function search_media()
+{
+ var what = document.getElementById('searchbox').value;
+ if (what) {
+   document.search.action.value='media';
+   document.search.re_media.value=what;
+   document.search.submit();
+ }
+}
+
+function search_client()
+{
+ var what = document.getElementById('searchbox').value;
+ if (what) {
+   document.search.action.value='client';
+   document.search.re_client.value=what;
+   document.search.submit();
+ }
+}
+
+sfHover = function() {
+ var sfEls = document.getElementById("menu").getElementsByTagName("LI");
+ for (var i=0; i<sfEls.length; i++) {
+    sfEls[i].onmouseover=function() {
+       this.className+=" sfhover";
+    }
+    sfEls[i].onmouseout=function() {
+       this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
+    }
+ }
+}
+
+if (window.attachEvent) window.attachEvent("onload", sfHover);