/*
** ZABBIX
** Copyright (C) 2000-2005 SIA Zabbix
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** 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., 675 Mass Ave, Cambridge, MA 02139, USA.
**/
var agt = navigator.userAgent.toLowerCase();
var OP = (agt.indexOf("opera") != -1) && window.opera;
var IE = (agt.indexOf("msie") != -1) && document.all && !OP;
var SF = (agt.indexOf("safari") != -1);
var KQ = (agt.indexOf("khtml") != -1) && (!SF);
function checkBrowser(){
if(OP) SDI('Opera');
if(IE) SDI('IE');
if(SF) SDI('Safari');
if(KQ) SDI('Konqueror');
return 0;
}
function isset(obj){
return (typeof(obj) != 'undefined');
}
function empty(obj){
if(is_null(obj)) return true;
if(obj == false) return true;
if((obj == 0) || (obj == '0')) return true;
if(is_string(obj) && (obj == '')) return true;
if(is_array(obj) && (obj.length == 0)) return true;
return false;
}
function is_null(obj){
if(obj==null) return true;
return false;
}
function is_number(obj){
return (typeof(obj) == 'number');
}
function is_string(obj){
return (typeof(obj) == 'string');
}
function is_array(obj) {
if (obj.constructor.toString().indexOf("Array") == -1)
return false;
else
return true;
}
if (!Array.prototype.forEach)
{
Array.prototype.forEach = function(fun /*, thisp*/)
{
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var thisp = arguments[1];
for (var i = 0; i < len; i++)
{
if (i in this)
fun.call(thisp, this[i], i, this);
}
};
}
function SDI(msg)
{
alert("DEBUG INFO: " + msg);
}
function close_window()
{
window.setTimeout("window.close()", 500); /* Solve bug for Internet Explorer */
return false;
}
function add_variable(o_el, s_name, x_value, s_formname, o_document)
{
var form;
if(!o_document) o_document = document;
if(s_formname)
{
if( !(form = o_document.forms[s_formname]) )
throw "Missed form with name '"+s_formname+"'.";
}
else if(o_el)
{
if( !(form = o_el.form) )
throw "Missed form in 'o_el' object";
}
else
{
if( !(form = this.form) )
throw "Missed form in 'this' object";
}
var o_variable = o_document.createElement('input');
if( !o_variable ) throw "Can't create element";
o_variable.type = 'hidden';
o_variable.name = s_name;
o_variable.value = x_value;
form.appendChild(o_variable);
return true;
}
function get_scroll_pos()
{
var scrOfX = 0, scrOfY = 0;
if( typeof( window.pageYOffset ) == 'number' )
{ //Netscape compliant
scrOfY = window.pageYOffset;
scrOfX = window.pageXOffset;
}
else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) )
{ //DOM compliant
scrOfY = document.body.scrollTop;
scrOfX = document.body.scrollLeft;
}
else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) )
{ //IE6 standards compliant mode
scrOfY = document.documentElement.scrollTop;
scrOfX = document.documentElement.scrollLeft;
}
return [ scrOfX, scrOfY ];
}
function get_cursor_position(e)
{
e = e || window.event;
var cursor = {x:0, y:0};
if (e.pageX || e.pageY) {
cursor.x = e.pageX;
cursor.y = e.pageY;
}
else {
var de = document.documentElement;
var b = document.body;
cursor.x = e.clientX +
(de.scrollLeft || b.scrollLeft) - (de.clientLeft || 0);
cursor.y = e.clientY +
(de.scrollTop || b.scrollTop) - (de.clientTop || 0);
}
return cursor;
}
function Redirect(url) {
window.location = url;
return false;
}
function create_var(form_name, var_name, var_val, submit)
{
var frmForm = document.forms[form_name];
if(!frmForm) return false;
var objVar = document.createElement('input');
if(!objVar) return false;
objVar.setAttribute('type', 'hidden');
objVar.setAttribute('name', var_name);
objVar.setAttribute('value', var_val);
frmForm.appendChild(objVar);
if(submit)
frmForm.submit();
return false;
}
function Confirm(msg){
if(confirm(msg,'title'))
return true;
else
return false;
}
function PopUp(url,width,height,form_name){
if(!width) width = 600;
if(!height) height = 450;
if(!form_name) form_name = 'zbx_popup';
var left = (screen.width-(width+150))/2;
var top = (screen.height-(height+150))/2;
var popup = window.open(url,form_name,'width=' + width +',height=' + height + ',top='+ top +',left='+ left +
',resizable=yes,scrollbars=yes,location=no,menubar=no');
popup.focus();
return false;
}
function CheckAll(form_name, chkMain, shkName){
var frmForm = document.forms[form_name];
var value = frmForm.elements[chkMain].checked;
for (var i=0; i < frmForm.length; i++)
{
name = frmForm.elements[i].name.split('[')[0];
if(frmForm.elements[i].type != 'checkbox') continue;
if(name == chkMain) continue;
if(shkName && shkName != name) continue;
if(frmForm.elements[i].disabled == true) continue;
frmForm.elements[i].checked = value;
}
}
function openWinCentered(loc, winname, iwidth, iheight, params){
tp=Math.ceil((screen.height-iheight)/2);
lf=Math.ceil((screen.width-iwidth)/2);
if (params.length > 0){
params = ', ' + params;
}
var WinObjReferer = window.open(loc,winname,"width="+iwidth+",height="+iheight+",top="+tp+",left="+lf+params);
WinObjReferer.focus();
}
function getPosition(obj){
var pos = {top: 0, left: 0};
if (isset(obj.offsetParent)) {
pos.left = obj.offsetLeft;
pos.top = obj.offsetTop;
while (obj = obj.offsetParent) {
pos.left += obj.offsetLeft;
pos.top += obj.offsetTop;
}
}
return pos;
}
function cancelEvent(event){
event = event || window.event;
//SDI(event);
if(IE){
event.cancelBubble = true;
event.returnValue = false;
}
else{
event.stopPropagation();
event.preventDefault();
}
return false;
}
/************************************************************************************/
/* Pages stuff */
/************************************************************************************/
function GetSelectedText(obj){
if(IE){
obj.focus();
return document.selection.createRange().text;
}
else if(obj.selectionStart){
if(obj.selectionStart != obj.selectionEnd) {
var s = obj.selectionStart;
var e = obj.selectionEnd;
return obj.value.substring(s, e);
}
}
return obj.value;
}
function ScaleChartToParenElement(obj_name)
{
var obj = document.getElementsByName(obj_name);
if(obj.length <= 0) throw "Can't find objects with name [" + obj_name +"]";
for(i = obj.length-1; i>=0; i--)
{
obj[i].src += "&width=" + (obj[i].parentNode.offsetWidth - obj[i].parentNode.offsetLeft - 10);
}
}
function insert_sizeable_graph(graph_id,url){
if(isset(ZBX_G_WIDTH)) url += "&width="+ZBX_G_WIDTH;
document.write('
');
}
function remove_childs(form_name,rmvbyname,tag){
tag = tag.toUpperCase();
var frmForm = document.forms[form_name];
for (var i=0; i < frmForm.length; i++){
if(frmForm.elements[i].type != 'checkbox') continue;
if(frmForm.elements[i].disabled == true) continue;
if(frmForm.elements[i].checked != true) continue;
var splt = frmForm.elements[i].name.split('[');
var name = splt[0];
var serviceid = splt[1];
if(rmvbyname && rmvbyname != name) continue;
// if(frmForm.elements[i].name != rmvbyname+'['+serviceid+'[serviceid]') continue;
remove_element(frmForm.elements[i],tag);
i--;
}
}
function remove_element(elmnt,tag){
if(elmnt.nodeName == tag){
elmnt.parentNode.removeChild(elmnt);
} else if(elmnt.nodeType == 9){
return;
} else {
remove_element(elmnt.parentNode,tag);
}
}
function resizeiframe(id){
id = id || 'iframe';
var iframe = document.getElementById(id);
var indoc = (IE)?iframe.contentWindow.document:iframe.contentDocument;
if(typeof(indoc) == 'undefined') return;
var height = parseInt(indoc.getElementsByTagName('body')[0].scrollHeight);
var height2 = parseInt(indoc.getElementsByTagName('body')[0].offsetHeight);
if(height2 > height){
height = height2;
}
iframe.style.height = (height)+'px';
if(!is_null($('scroll')) && showgraphmenu){
showgraphmenu('iframe');
}
}
function get_bodywidth(){
var w = parseInt(document.body.scrollWidth);
var w2 = parseInt(document.body.offsetWidth);
if(KQ){
w = (w2 < w)?w2:w;
w-=16;
}
else{
w = (w2 > w)?w2:w;
}
return w;
}