]> jfr.im git - irc/quakenet/qwebirc.git/blobdiff - js/jslib.js
Merge pull request #324 from retropc/master
[irc/quakenet/qwebirc.git] / js / jslib.js
index aeef5ee172aa65b2a37ac57457977f01d7079c3c..1094ff2ec440438f8797582869af20c68dc7c507 100644 (file)
@@ -223,6 +223,10 @@ String.prototype.startsWith = function(what) {
   return this.substring(0, what.length) == what;
 }
 
+String.prototype.endsWith = function(what) {
+  return this.substring(this.length - what.length, this.length) == what;
+};
+
 /* NOT cryptographically secure! */
 qwebirc.util.randHexString = function(numBytes) {
   var getByte = function() {
@@ -260,12 +264,12 @@ qwebirc.util.importJS = function(name, watchFor, onload) {
 qwebirc.util.createInput = function(type, parent, name, selected, id) {
   var created = false;
   var r;
-  if(name)
+  if (name)
     name = "__input" + name;
 
-  if(Browser.Engine.trident) {
+  if (Browser.Engine.trident) {
     var name2;
-    if(name) {
+    if (name) {
       name2 = " name=\"" + escape(name) + "\"";
     } else {
       name2 = "";
@@ -274,8 +278,8 @@ qwebirc.util.createInput = function(type, parent, name, selected, id) {
       var h = "<input type=\"" + type + "\"" + name2 + "/>";
       r = $(document.createElement(h));
       if (type == "radio") {
-        r.addEvent("click", function() {
-          $(document.body).getElements("input[name=" + name + "]").forEach(function(x) {
+        r.addEvent("click", function () {
+          $(document.body).getElements("input[name=" + name + "]").forEach(function (x) {
             x.setAttribute("defaultChecked", x.checked ? "defaultChecked" : "");
           });
         });
@@ -285,10 +289,11 @@ qwebirc.util.createInput = function(type, parent, name, selected, id) {
       /* fallthough, trying it the proper way... */
     }
   }
-  if(!created)
-    r = new Element("input");
 
-  r.setAttribute("type", type);
+  if(!created) {
+    r = new Element("input");
+    r.setAttribute("type", type);
+  }
   if(name)
     r.setAttribute("name", name);
   if(id)
@@ -415,4 +420,38 @@ qwebirc.util.deviceHasKeyboard = function() {
 qwebirc.util.generateID_ID = 0;
 qwebirc.util.generateID = function() {
   return "qqa-" + qwebirc.util.generateID_ID++;
-}
\ No newline at end of file
+};
+
+qwebirc.util.arrayCmp = function(a, b) {
+  for(var p=0;p<a.length;p++) {
+    var ap = a[p];
+    var bp = b[p];
+    if(ap == bp)
+      continue;
+
+    if(ap < bp)
+      return -1;
+
+    return 1;
+  }
+  return 0;
+};
+
+qwebirc.util.__log = function(x) {
+  if(QWEBIRC_DEBUG) {
+    if(typeof console == "undefined") {
+      alert("log: " + x);
+    } else {
+      console.log(x);
+    }
+  }
+};
+
+qwebirc.util.logger = {
+  log: function(x) { qwebirc.util.__log("L " + x) },
+  info: function(x) { qwebirc.util.__log("I " + x) },
+  error: function(x) { qwebirc.util.__log("E " + x) },
+  warn: function(x) { qwebirc.util.__log("W " + x) }
+};
+
+qwebirc.util.log = qwebirc.util.logger.log;