X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/blobdiff_plain/8d1217ebf1d013d9961c49badf00a72e73964fc4..117aa54f84005638b516723aca2e9d9d2c6283de:/js/jslib.js diff --git a/js/jslib.js b/js/jslib.js index bbf2c13..9a7b26d 100644 --- a/js/jslib.js +++ b/js/jslib.js @@ -17,6 +17,7 @@ qwebirc.util.dictCopy = function(d) { /* how horribly inefficient */ String.prototype.replaceAll = function(f, t) { + //return new RegExp("/" + RegExp.escape(f) + "/g").replace(f, RegExp.escape(t)); var i = this.indexOf(f); var c = this; @@ -40,7 +41,7 @@ String.prototype.splitMax = function(by, max) { /* returns the arguments */ qwebirc.util.parseURI = function(uri) { - var result = {} + var result = new QHash(); var start = uri.indexOf('?'); if(start == -1) @@ -55,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", @@ -117,15 +118,33 @@ qwebirc.util.pad = function(x) { } RegExp.escape = function(text) { - if(!arguments.callee.sRE) { - var specials = [ - '/', '.', '*', '+', '?', '|', - '(', ')', '[', ']', '{', '}', '\\' - ]; - arguments.callee.sRE = new RegExp('(\\' + specials.join('|\\') + ')', 'g'); + return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&"); +}; + +RegExp.fromIRCPattern = function(t) { + /* escape everything but ? . and * */ + var t = t.replace(/[-[\]{}()+,\\^$|#\s]/g, "\\$&"); + t = t.split(""); + var out = []; + + /* now process the rest */ + for(var i=0;i"; + 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 = $(document.createElement("")); - } else { + } + + if(!created) { r = new Element("input"); - r.type = type; - if(name) - r.name = name; - - if(selected) - r.checked = true; + r.setAttribute("type", type); } - + if(name) + r.setAttribute("name", name); + if(id) + 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; } @@ -369,3 +412,8 @@ qwebirc.util.deviceHasKeyboard = function() { return v; } + +qwebirc.util.generateID_ID = 0; +qwebirc.util.generateID = function() { + return "qqa-" + qwebirc.util.generateID_ID++; +} \ No newline at end of file