X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/blobdiff_plain/b90b6d5facb79f68488c5dfc206419562f033b1f..015ab79ac65cca3c99282e6c735412131f92e4f9:/js/jslib.js diff --git a/js/jslib.js b/js/jslib.js index 173bcb4..1094ff2 100644 --- a/js/jslib.js +++ b/js/jslib.js @@ -39,10 +39,9 @@ String.prototype.splitMax = function(by, max) { return newitems; } - /* returns the arguments */ qwebirc.util.parseURI = function(uri) { - var result = {} + var result = new QHash(); var start = uri.indexOf('?'); if(start == -1) @@ -57,11 +56,11 @@ qwebirc.util.parseURI = function(uri) { if(r.length < 2) continue; - result[unescape(r[0])] = unescape(r[1]); + result.put(unescape(r[0]), unescape(r[1])); } return result; -} +}; qwebirc.util.DaysOfWeek = { 0: "Sun", @@ -224,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() { @@ -259,35 +262,48 @@ qwebirc.util.importJS = function(name, watchFor, onload) { } qwebirc.util.createInput = function(type, parent, name, selected, id) { + var created = false; var r; - if(Browser.Engine.trident) { - if(name) { - name = " name=\"" + escape(name) + "\""; - } else { - name = ""; - } - if(id) { - id = " id=\"" + escape(id) + "\""; + if (name) + name = "__input" + name; + + if (Browser.Engine.trident) { + var name2; + if (name) { + name2 = " name=\"" + escape(name) + "\""; } else { - id = ""; + name2 = ""; } try { - return $(document.createElement("")); - } catch(e) { + var h = ""; + r = $(document.createElement(h)); + if (type == "radio") { + r.addEvent("click", function () { + $(document.body).getElements("input[name=" + name + "]").forEach(function (x) { + x.setAttribute("defaultChecked", x.checked ? "defaultChecked" : ""); + }); + }); + } + created = true; + } catch (e) { /* fallthough, trying it the proper way... */ } } - - r = new Element("input"); - r.type = type; + + if(!created) { + r = new Element("input"); + r.setAttribute("type", type); + } if(name) - r.name = name; + r.setAttribute("name", name); if(id) - r.id = id; - - if(selected) - r.checked = true; - + r.setAttribute("id", id); + if(selected) { + r.setAttribute("checked", "checked"); + if(type == "radio" && Browser.Engine.trident) + r.setAttribute("defaultChecked", "defaultChecked"); + } + parent.appendChild(r); return r; } @@ -404,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