1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
// This file is part of Zoph.
//
// Zoph 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.
//
// Zoph 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 Zoph; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
function getElementsByClass(searchClass,node,tag) {
var classElements = [];
if (node === null || node === undefined) {
node = document;
}
if (tag === null || tag === undefined) {
tag = '*';
}
// if(tag == '*' && node.getElementsByClassName) {
// return node.getElementsByClassName(searchClass);
// }
var els = node.getElementsByTagName(tag);
var elsLen = els.length;
var pattern = new RegExp('(^|\\s)'+searchClass+'(\\s|$)');
for (var i=0, j=0; i < elsLen; i++) {
if ( pattern.test(els[i].className) ) {
classElements[j] = els[i];
j++;
}
}
return classElements;
}
function trim(stringToTrim) {
if(stringToTrim === null) {
return "";
} else {
// in some browsers is not part of \s, so it is
// specified separately with it's unicode representation \u00A0
return stringToTrim.replace(/^[\s\u00A0]+|[\s\u00A0]+$/g,"");
}
}
function removeChildren(obj) {
if(obj && obj.childNodes) {
while (obj.childNodes[0]) {
obj.removeChild(obj.firstChild);
}
}
}
function clr(obj_id) {
let object=document.getElementById(obj_id);
removeChildren(object);
}
function deleteNode(obj) {
var par=obj.parentNode;
par.removeChild(obj);
}
function createNode(nodetype, value) {
let node=document.createElement(nodetype);
let nodetext=document.createTextNode(value);
node.appendChild(nodetext);
return node;
}
function findInArray(array, search) {
// Some browsers cannot use .indexOf on an array...
//
for (var index in array) {
if(array.hasOwnProperty(index)) {
if(array[index]==search) {
return index;
}
}
}
return -1;
}
function findPos(obj) {
var curleft = 0;
var curtop = 0;
if (obj.offsetParent) {
curleft = obj.offsetLeft;
curtop = obj.offsetTop;
while (obj = obj.offsetParent) {
curleft += obj.offsetLeft;
curtop += obj.offsetTop;
}
}
return [curleft,curtop];
}
function adjustIframe(min, max, iframe) {
// This function will adjust the height of an iframe
// to it's contents, with a set maximum;
let html=document.getElementsByTagName("html")[0];
let height=html.clientHeight + 20;
if(height > max) {
height = max;
} else if (height < min) {
height = min;
}
let objiframe=top.document.getElementById(iframe);
objiframe.style.height=height + "px";
}
function getFileType(url) {
let ext=url.substr(url.lastIndexOf('.') + 1).toLowerCase();
switch(ext) {
case "jpg":
case "gif":
case "png":
return "image";
case "zip":
case "gz":
case "tar":
case "bz":
return "archive";
default:
return "unknown";
}
}
function increaseValueInBrackets(value) {
let leftbracket=value.indexOf("[");
let rightbracket=value.indexOf("]");
let num=parseInt(value.substring(leftbracket + 1, rightbracket),10);
num++;
return value.substring(0,leftbracket) + "[" + num + "]";
}
|