source: trunk/www.guidonia.net/wp/wp-includes/js/jquery/jquery.schedule.js@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 3.4 KB
Line 
1
2(function($){$.scheduler=function(){this.bucket={};return;};$.scheduler.prototype={schedule:function(){var ctx={"id":null,"time":1000,"repeat":false,"protect":false,"obj":null,"func":function(){},"args":[]};function _isfn(fn){return(!!fn&&typeof fn!="string"&&typeof fn[0]=="undefined"&&RegExp("function","i").test(fn+""));};var i=0;var override=false;if(typeof arguments[i]=="object"&&arguments.length>1){override=true;i++;}
3if(typeof arguments[i]=="object"){for(var option in arguments[i])
4if(typeof ctx[option]!="undefined")
5ctx[option]=arguments[i][option];i++;}
6if(typeof arguments[i]=="number"||(typeof arguments[i]=="string"&&arguments[i].match(RegExp("^[0-9]+[smhdw]$"))))
7ctx["time"]=arguments[i++];if(typeof arguments[i]=="boolean")
8ctx["repeat"]=arguments[i++];if(typeof arguments[i]=="boolean")
9ctx["protect"]=arguments[i++];if(typeof arguments[i]=="object"&&typeof arguments[i+1]=="string"&&_isfn(arguments[i][arguments[i+1]])){ctx["obj"]=arguments[i++];ctx["func"]=arguments[i++];}
10else if(typeof arguments[i]!="undefined"&&(_isfn(arguments[i])||typeof arguments[i]=="string"))
11ctx["func"]=arguments[i++];while(typeof arguments[i]!="undefined")
12ctx["args"].push(arguments[i++]);if(override){if(typeof arguments[1]=="object"){for(var option in arguments[0])
13if(typeof ctx[option]!="undefined"&&typeof arguments[1][option]=="undefined")
14ctx[option]=arguments[0][option];}
15else{for(var option in arguments[0])
16if(typeof ctx[option]!="undefined")
17ctx[option]=arguments[0][option];}
18i++;}
19ctx["_scheduler"]=this;ctx["_handle"]=null;var match=String(ctx["time"]).match(RegExp("^([0-9]+)([smhdw])$"));if(match&&match[0]!="undefined"&&match[1]!="undefined")
20ctx["time"]=String(parseInt(match[1])*{s:1000,m:1000*60,h:1000*60*60,d:1000*60*60*24,w:1000*60*60*24*7}[match[2]]);if(ctx["id"]==null)
21ctx["id"]=(String(ctx["repeat"])+":"
22+String(ctx["protect"])+":"
23+String(ctx["time"])+":"
24+String(ctx["obj"])+":"
25+String(ctx["func"])+":"
26+String(ctx["args"]));if(ctx["protect"])
27if(typeof this.bucket[ctx["id"]]!="undefined")
28return this.bucket[ctx["id"]];if(!_isfn(ctx["func"])){if(ctx["obj"]!=null&&typeof ctx["obj"]=="object"&&typeof ctx["func"]=="string"&&_isfn(ctx["obj"][ctx["func"]]))
29ctx["func"]=ctx["obj"][ctx["func"]];else
30ctx["func"]=eval("function () { "+ctx["func"]+" }");}
31ctx["_handle"]=this._schedule(ctx);this.bucket[ctx["id"]]=ctx;return ctx;},reschedule:function(ctx){if(typeof ctx=="string")
32ctx=this.bucket[ctx];ctx["_handle"]=this._schedule(ctx);return ctx;},_schedule:function(ctx){var trampoline=function(){var obj=(ctx["obj"]!=null?ctx["obj"]:ctx);(ctx["func"]).apply(obj,ctx["args"]);if(typeof(ctx["_scheduler"]).bucket[ctx["id"]]!="undefined"&&ctx["repeat"])
33(ctx["_scheduler"])._schedule(ctx);else
34delete(ctx["_scheduler"]).bucket[ctx["id"]];};return setTimeout(trampoline,ctx["time"]);},cancel:function(ctx){if(typeof ctx=="string")
35ctx=this.bucket[ctx];if(typeof ctx=="object"){clearTimeout(ctx["_handle"]);delete this.bucket[ctx["id"]];}}};$.extend({scheduler$:new $.scheduler(),schedule:function(){return $.scheduler$.schedule.apply($.scheduler$,arguments)},reschedule:function(){return $.scheduler$.reschedule.apply($.scheduler$,arguments)},cancel:function(){return $.scheduler$.cancel.apply($.scheduler$,arguments)}});$.fn.extend({schedule:function(){var a=[{}];for(var i=0;i<arguments.length;i++)
36a.push(arguments[i]);return this.each(function(){a[0]={"id":this,"obj":this};return $.schedule.apply($,a);});}});})(jQuery);
Note: See TracBrowser for help on using the repository browser.