/[meteor]/googlecode.com/svn/trunk/public_html/meteor.js
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /googlecode.com/svn/trunk/public_html/meteor.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 30 by andrew.betts, Wed Oct 10 22:24:32 2007 UTC revision 60 by andrew.betts, Tue Mar 25 22:34:16 2008 UTC
# Line 1  Line 1 
1  // Set domain at highest level  /*
2  var domainparts = document.domain.split(".");  stream: xhrinteractive, iframe, serversent
3  document.domain = domainparts[domainparts.length-2]+"."+domainparts[domainparts.length-1];  longpoll
4    smartpoll
5  Function.prototype.bind = function(obj) {  simplepoll
6          var method = this,  */
7          temp = function() {  
8                  return method.apply(obj, arguments);  Meteor = {
9          };  
10          return temp;          callbacks: {
11  }                  process: function() {},
12  Function.prototype.andThen=function(g) {                  reset: function() {},
13          var f=this;                  eof: function() {},
14          var a=this.arguments                  statuschanged: function() {},
15          return function(args) {                  changemode: function() {}
16                  f(a);g(args);          },
17          }          channelcount: 0,
18  };          channels: {},
19            debugmode: false,
20  function Meteor(instID) {          frameref: null,
21            host: null,
22          this.transferDoc = false;          hostid: null,
23          this.pingtimer = false;          maxpollfreq: 60000,
24          this.updatepollfreqtimer = false;          minpollfreq: 2000,
25          this.lastrequest = 0;          mode: "stream",
26          this.recvtimes = [];          pingtimeout: 20000,
27          this.MHostId = false;          pingtimer: null,
28          this.callback_process = function() {};          pollfreq: 3000,
29          this.callback_reset = function() {};          port: 80,
30          this.callback_eof = function() {};          polltimeout: 30000,
31          this.callback_changemode = function() {};          recvtimes: [],
32          this.callback_statuschanged = function() {};          status: 0,
33          this.persist = 1;          updatepollfreqtimer: null,
34          this.frameloadtimer = false;  
35          this.debugmode = false;          register: function(ifr) {
36          this.subsurl = false;                  ifr.p = Meteor.process;
37          this.channels = {};                  ifr.r = Meteor.reset;
38          this.channelcount = 0;                  ifr.eof = Meteor.eof;
39          this.streamreq = false;                  ifr.ch = Meteor.channelInfo;
40          this.byteoffset = 0;                  clearTimeout(Meteor.frameloadtimer);
41                    Meteor.setstatus(4);
42          // Documented public properties                  Meteor.log("Frame registered");
43          this.subdomain = "data";          },
44          this.dynamicpageaddress = "push";  
45          this.smartpoll = 1;          joinChannel: function(channelname, backtrack) {
46          this.pollfreq = 2000;                  if (typeof(Meteor.channels[channelname]) != "undefined") throw "Cannot join channel "+channelname+": already subscribed";
47          this.minpollfreq = 2000;                  Meteor.channels[channelname] = {backtrack:backtrack};
48          this.mode = "stream";                  Meteor.log("Joined channel "+channelname);
49          this.polltimeout = 30000;                  Meteor.channelcount++;
50          this.pingtimeout = 10000;                  if (Meteor.status != 0) Meteor.connect();
51          this.maxmessages = 0;          },
52          this.status = 0;  
53            leaveChannel: function(channelname) {
54          /* Statuses:    0 = Uninitialised,                  if (typeof(Meteor.channels[channelname]) == "undefined") throw "Cannot leave channel "+channelname+": not subscribed";
55                                          1 = Loading stream,                  delete Meteor.channels[channelname];
56                                          2 = Loading controller frame,                  Meteor.log("Left channel "+channelname);
57                                          3 = Controller frame timeout, retrying.                  Meteor.channelcount--;
58                                          4 = Controller frame loaded and ready                  if (Meteor.channelcount && Meteor.status != 0) Meteor.connect();
59                                          5 = Receiving data                  else Meteor.disconnect();
60          */          },
61    
62          this.instID = (typeof(instID) != "undefined") ? instID : 0;          connect: function() {
63          this.MHostId = Math.floor(Math.random()*100000000)+""+this.instID;                  Meteor.log("Connecting");
64  }                  if (!Meteor.host) throw "Meteor host not specified";
65                    if (isNaN(Meteor.port)) throw "Meteor port not specified";
66  Meteor.instances = new Array();                  if (!Meteor.channelcount) throw "No channels specified";
67                    if (Meteor.status) Meteor.disconnect();
68  Meteor.create = function(instID) {                  Meteor.setstatus(1);
69          if (!instID) instID = Meteor.instances.length;                  var now = new Date();
70          Meteor.instances[instID] = new Meteor(instID);                  var t = now.getTime();
71          return Meteor.instances[instID];                  if (!Meteor.hostid) Meteor.hostid = t+""+Math.floor(Math.random()*1000000)
72  }                  document.domain = Meteor.extract_xss_domain(document.domain);
73                    if (Meteor.mode=="stream") Meteor.mode = Meteor.selectStreamTransport();
74  Meteor.register = function(ifr) {                  Meteor.log("Selected "+Meteor.mode+" transport");
75          instid = new String(ifr.window.frameElement.id);                  if (Meteor.mode=="xhrinteractive" || Meteor.mode=="iframe" || Meteor.mode=="serversent") {
76          instid = instid.replace(/.*_([0-9]*)$/, "$1");                          if (Meteor.mode == "iframe") {
77          ifr.p = this.instances[instid].process.bind(this.instances[instid]);                                  Meteor.loadFrame(Meteor.getSubsUrl());
78          ifr.r = this.instances[instid].reset.bind(this.instances[instid]);                          } else {
79          ifr.eof = this.instances[instid].eof.bind(this.instances[instid]);                                  Meteor.loadFrame("http://"+Meteor.host+((Meteor.port==80)?"":":"+Meteor.port)+"/stream.html");
80          ifr.get = this.instances[instid].get.bind(this.instances[instid]);                          }
81          ifr.increasepolldelay = this.instances[instid].increasepolldelay.bind(this.instances[instid]);                          clearTimeout(Meteor.pingtimer);
82          clearTimeout(this.instances[instid].frameloadtimer);                          Meteor.pingtimer = setTimeout(Meteor.pollmode, Meteor.pingtimeout);
83          this.instances[instid].setstatus(4);  
84          if (this.debugmode) console.log("Frame registered");                  } else {
85  }                          Meteor.loadFrame("http://"+Meteor.host+((Meteor.port==80)?"":":"+Meteor.port)+"/poll.html");
86                            Meteor.recvtimes[0] = t;
87  Meteor.reset = function(ifr) {                          if (Meteor.updatepollfreqtimer) clearTimeout(Meteor.updatepollfreqtimer);
88          instid = new String(ifr.window.frameElement.id);                          if (Meteor.mode=='smartpoll') Meteor.updatepollfreqtimer = setInterval(Meteor.updatepollfreq, 10000);
89          instid = instid.replace(/.*_([0-9]*)$/, "$1");                          if (Meteor.mode=='longpoll') Meteor.pollfreq = Meteor.minpollfreq;
90          this.instances[instid].reset();                  }
91  }                  Meteor.lastrequest = t;
92            },
93  window.onunload = function() {  
94          for (var i in Meteor.instances) {          disconnect: function() {
95                  if (Meteor.instances[i].transferDoc) delete Meteor.instances[i].transferDoc;                  if (Meteor.status) {
96          }                          clearTimeout(Meteor.pingtimer);
97  }                          clearTimeout(Meteor.updatepollfreqtimer);
98                            clearTimeout(Meteor.frameloadtimer);
99                            if (typeof CollectGarbage == 'function') CollectGarbage();
100  Meteor.prototype.joinChannel = function(channelname, backtrack) {                          if (Meteor.status != 6) Meteor.setstatus(0);
101          if (typeof(this.channels[channelname]) != "undefined") throw "Cannot join channel "+channelname+": already subscribed";                          if (Meteor.frameref.tagName=='IFRAME') {
102          this.channels[channelname] = {backtrack:backtrack, lastmsgreceived:0};                                  Meteor.frameref.parentNode.removeChild(Meteor.frameref);
103          if (this.debugmode) console.log("Joined channel "+channelname+", channel list follows");                          } else {
104          if (this.debugmode) console.log(this.channels);                                  Meteor.frameref.open();
105          if (this.status != 0) this.start();                                  Meteor.frameref.close();
106          this.channelcount++;                          }
107  }                          delete Meteor.frameref;
108                            Meteor.log("Disconnected");
109  Meteor.prototype.leaveChannel = function(channelname) {                  }
110          if (typeof(this.channels[channelname]) == "undefined") throw "Cannot leave channel "+channelname+": not subscribed";          },
111          delete this.channels[channelname];          
112          if (this.status != 0) this.start();          selectStreamTransport: function() {
113          this.channelcount--;                  try {
114  }                          var test = ActiveXObject;
115                            return "iframe";
116  Meteor.prototype.start = function() {                  } catch (e) {}
117          this.persist = (this.persist)?1:0;                  if ((typeof window.addEventStream) == "function") return "iframe";
118          this.smartpoll = (this.smartpoll)?1:0;                  return "xhrinteractive";
119          this.mode = (this.mode=="stream")?"stream":"poll";          },
120          if (!this.subdomain || !this.channelcount) throw "Channel or Meteor subdomain host not specified";  
121          this.stop();          getSubsUrl: function() {
122          var now = new Date();                  var surl = "http://" + Meteor.host + ((Meteor.port==80)?"":":"+Meteor.port) + "/push/" + Meteor.hostid + "/" + Meteor.mode;
123          var t = now.getTime();                  for (var c in Meteor.channels) {
124          this.setstatus(1);                          surl += "/"+c;
125          this.updateSubsUrl();                          if (typeof Meteor.channels[c].lastmsgreceived != 'undefined' && Meteor.channels[c].lastmsgreceived >= 0) {
126          if (this.mode=="stream") {                                  surl += ".r"+(Meteor.channels[c].lastmsgreceived+1);
127                  if (document.all) {                          } else if (Meteor.channels[c].backtrack > 0) {
128                          this.createIframe(this.subsurl);                                  surl += ".b"+Meteor.channels[c].backtrack;
129                  } else {                          } else if (Meteor.channels[c].backtrack != undefined) {
130                          this.createIframe("http://"+this.subdomain+"."+location.hostname+"/stream.html");                                  surl += ".h";
131                  }                          }
132                  var f = this.pollmode.bind(this);                  }
133                  clearTimeout(this.pingtimer);                  var now = new Date();
134                  this.pingtimer = setTimeout(f, this.pingtimeout);                  surl += "?nc="+now.getTime();
135                    return surl;
136          } else {          },
137                  this.createIframe("http://"+this.subdomain+"."+location.hostname+"/poll.html?nc="+t);  
138                  this.recvtimes[0] = t;          loadFrame: function(url) {
139                  if (this.updatepollfreqtimer) clearTimeout(this.updatepollfreqtimer);                  try {
140                  this.updatepollfreqtimer = setInterval(this.updatepollfreq.bind(this), 2500);                          if (!Meteor.frameref) {
141          }                                  var transferDoc = new ActiveXObject("htmlfile");
142          this.lastrequest = t;                                  Meteor.frameref = transferDoc;
143  }                          }
144                            Meteor.frameref.open();
145  Meteor.prototype.updateSubsUrl = function() {                          Meteor.frameref.write("<html><script>");
146                            Meteor.frameref.write("document.domain=\""+(document.domain)+"\";");
147          // If streaming or long polling, connection should persist                          Meteor.frameref.write("</"+"script></html>");
148          this.persist = (this.mode == "stream" || (this.mode=='poll' && this.maxmessages > 0)) ? 1 : 0;                          Meteor.frameref.parentWindow.Meteor = Meteor;
149          var surl = "http://" + this.subdomain + "." + location.hostname + "/" + this.dynamicpageaddress + "?id=" + this.MHostId;                          Meteor.frameref.close();
150          if (this.persist && this.mode != "stream") surl += "&maxmessages=" + this.maxmessages;                          var ifrDiv = Meteor.frameref.createElement("div");
151          surl += "&persist="+this.persist;                          Meteor.frameref.appendChild(ifrDiv);
152          for (var c in this.channels) {                          ifrDiv.innerHTML = "<iframe src=\""+url+"\"></iframe>";
153                  surl += "&channel="+c;                  } catch (e) {
154                  if (this.channels[c].lastmsgreceived > 0) {                          if (!Meteor.frameref) {
155                          surl += "&restartfrom="+(this.channels[c].lastmsgreceived+1);                                  var ifr = document.createElement("IFRAME");
156                  } else if (this.channels[c].backtrack > 0) {                                  ifr.style.width = "10px";
157                          surl += "&backtrack="+this.channels[c].backtrack;                                  ifr.style.height = "10px";
158                  } else if (this.channels[c].backtrack < 0 || isNaN(this.channels[c].backtrack)) {                                  ifr.style.border = "none";
159                          surl += "&restartfrom=";                                  ifr.style.position = "absolute";
160                  }                                  ifr.style.top = "-10px";
161          }                                  ifr.style.marginTop = "-10px";
162          this.subsurl = surl;                                  ifr.style.zIndex = "-20";
163  }                                  ifr.Meteor = Meteor;
164                                    document.body.appendChild(ifr);
165  Meteor.prototype.createIframe = function(url) {                                  Meteor.frameref = ifr;
166          delete this.transferDoc;                          }
167          if (document.all) try { this.transferDoc = new ActiveXObject("htmlfile") } catch(ex) { this.transferDoc = null }                          Meteor.frameref.setAttribute("src", url);
168          if (document.all && this.transferDoc) {                  }
169                  this.transferDoc.open();                  Meteor.log("Loading URL '"+url+"' into frame...");
170                  this.transferDoc.write("<html>");                  Meteor.frameloadtimer = setTimeout(Meteor.frameloadtimeout, 5000);
171                  this.transferDoc.write("<script>document.domain=\""+(document.domain)+"\";</"+"script>");          },
172                  this.transferDoc.write("</html>");  
173                  this.transferDoc.parentWindow.Meteor = Meteor;          pollmode: function() {
174                  this.transferDoc.close();                  Meteor.log("Ping timeout");
175                  var ifrDiv = this.transferDoc.createElement("div");                  if (Meteor.mode != "smartpoll") {
176                  this.transferDoc.appendChild(ifrDiv);                          Meteor.mode="smartpoll";
177                  ifrDiv.innerHTML = "<iframe id=\"meteorframe_"+this.instID+"\" src=\""+url+"\" style=\"display: none;\"></iframe>";                          Meteor.callbacks["changemode"]("poll");
178          } else {                          clearTimeout(Meteor.pingtimer);
179                  var ifr = document.createElement("IFRAME");                          Meteor.lastpingtime = false;
180                  ifr.style.width = "10px";                  }
181                  ifr.style.height = "10px";                  Meteor.connect();
182                  ifr.style.border = "none";          },
183                  ifr.style.position = "absolute";  
184                  ifr.style.top = "-10px";          process: function(id, channel, data) {
185                  ifr.style.marginTop = "-10px";                  if (id == -1) {
186                  ifr.style.zIndex = "-20";                          Meteor.log("Ping");
187                  ifr.setAttribute("id", "meteorframe_"+this.instID);                          Meteor.ping();
188                  ifr.Meteor = Meteor;                  } else if (typeof(Meteor.channels[channel]) != "undefined") {
189                  if (document.compatMode=='CSS1Compat') {                          Meteor.log("Message "+id+" received on channel "+channel+" (last id on channel: "+Meteor.channels[channel].lastmsgreceived+")\n"+data);
190                          var innerifr = document.createElement("IFRAME");                          Meteor.callbacks["process"](data);
191                          innerifr.setAttribute("src", url);                          Meteor.channels[channel].lastmsgreceived = id;
192                          innerifr.setAttribute("id", "meteorinnerframe_"+this.instID);                          if (Meteor.mode=="smartpoll") {
193                          ifr.appendChild(innerifr);                                  var now = new Date();
194                          document.body.appendChild(ifr);                                  Meteor.recvtimes[Meteor.recvtimes.length] = now.getTime();
195                  } else {                                  while (Meteor.recvtimes.length > 5) Meteor.recvtimes.shift();
196                          ifr.setAttribute("src", url);                          }
197                          document.body.appendChild(ifr);                  }
198                  }                  Meteor.setstatus(5);
199          }          },
200          if (this.debugmode) console.log("Loading URL '"+url+"' into frame...");  
201          var f = this.frameloadtimeout.bind(this);          ping: function() {
202          this.frameloadtimer = setTimeout(f, 5000);                  if (Meteor.pingtimer) {
203  }                          clearTimeout(Meteor.pingtimer);
204                            Meteor.pingtimer = setTimeout(Meteor.pollmode, Meteor.pingtimeout);
205  Meteor.prototype.stop = function() {                          var now = new Date();
206          if (typeof(this.transferDoc)=="object") {                          Meteor.lastpingtime = now.getTime();
207                  this.transferDoc = false;                  }
208          }                  Meteor.setstatus(5);
209          if (document.getElementById("meteorframe_"+this.instID)) {          },
210                  document.getElementById("meteorframe_"+this.instID).src="about:blank";  
211                  document.body.removeChild(document.getElementById("meteorframe_"+this.instID));          reset: function() {
212          }                  if (Meteor.status != 6) {
213          clearTimeout(this.pingtimer);                          Meteor.log("Stream reset");
214          clearTimeout(this.updatepollfreqtimer);                          Meteor.ping();
215          clearTimeout(this.frameloadtimer);                          Meteor.callbacks["reset"]();
216          this.setstatus(0);                          var now = new Date();
217  }                          var t = now.getTime();
218                            var x = Meteor.pollfreq - (t-Meteor.lastrequest);
219  Meteor.prototype.pollmode = function() {                          if (x < 10) x = 10;
220          if (this.debugmode) console.log("Ping timeout");                          setTimeout(Meteor.connect, x);
221          this.mode="poll";                  }
222          this.start();          },
223          this.callback_changemode("poll");  
224          this.lastpingtime = false;          eof: function() {
225  }                  Meteor.log("Received end of stream, will not reconnect");
226                    Meteor.callbacks["eof"]();
227  Meteor.prototype.process = function(id, channel, data) {                  Meteor.setstatus(6);
228          if (id == -1) {                  Meteor.disconnect();
229                  if (this.debugmode) console.log("Ping");          },
230                  this.ping();  
231          } else if (typeof(this.channels[channel]) != "undefined" && id > this.channels[channel].lastmsgreceived) {          channelInfo: function(channel, id) {
232                  if (this.debugmode) console.log("Message "+id+" received on channel "+channel+" (last id on channel: "+this.channels[channel].lastmsgreceived+")\n"+data);                  Meteor.channels[channel].lastmsgreceived = id;
233                  this.callback_process(data);                  Meteor.log("Received channel info for channel "+channel+": resume from "+id);
234                  this.channels[channel].lastmsgreceived = id;          },
235                  if (this.mode=="poll") {  
236                          var now = new Date();          updatepollfreq: function() {
237                          var t = now.getTime();                  var now = new Date();
238                          this.recvtimes[this.recvtimes.length] = t;                  var t = now.getTime();
239                          while (this.recvtimes.length > 5) this.recvtimes.shift();                  var avg = 0;
240                  }                  for (var i=1; i<Meteor.recvtimes.length; i++) {
241          }                          avg += (Meteor.recvtimes[i]-Meteor.recvtimes[i-1]);
242          this.updateSubsUrl();                  }
243          this.setstatus(5);                  avg += (t-Meteor.recvtimes[Meteor.recvtimes.length-1]);
244  }                  avg /= Meteor.recvtimes.length;
245                    var target = avg/2;
246  Meteor.prototype.ping = function() {                  if (target < Meteor.pollfreq && Meteor.pollfreq > Meteor.minpollfreq) Meteor.pollfreq = Math.ceil(Meteor.pollfreq*0.9);
247          if (this.mode=="stream" && this.pingtimer) {                  if (target > Meteor.pollfreq && Meteor.pollfreq < Meteor.maxpollfreq) Meteor.pollfreq = Math.floor(Meteor.pollfreq*1.05);
248                  clearTimeout(this.pingtimer);          },
249                  var f = this.pollmode.bind(this);  
250                  this.pingtimer = setTimeout(f, this.pingtimeout);          registerEventCallback: function(evt, funcRef) {
251                  var now = new Date();                  Function.prototype.andThen=function(g) {
252                  this.lastpingtime = now.getTime();                          var f=this;
253          }                          var a=Meteor.arguments
254          this.setstatus(5);                          return function(args) {
255  }                                  f(a);g(args);
256                            }
257  Meteor.prototype.reset = function() {                  };
258          if (this.debugmode) console.log("Stream reset");                  if (typeof Meteor.callbacks[evt] == "function") {
259          var now = new Date();                          Meteor.callbacks[evt] = (Meteor.callbacks[evt]).andThen(funcRef);
260          var t = now.getTime();                  } else {
261          var x = this.pollfreq - (t-this.lastrequest);                          Meteor.callbacks[evt] = funcRef;
262          if (x < 10) x = 10;                  }
263          this.ping();          },
264          this.callback_reset();  
265          setTimeout(this.start.bind(this), x);          frameloadtimeout: function() {
266  }                  Meteor.log("Frame load timeout");
267                    if (Meteor.frameloadtimer) clearTimeout(Meteor.frameloadtimer);
268  Meteor.prototype.eof = function() {                  Meteor.setstatus(3);
269          this.callback_eof();                  Meteor.pollmode();
270  }          },
271    
272  Meteor.prototype.get = function(varname) {          extract_xss_domain: function(old_domain) {
273          eval("var a = this."+varname+";");                  if (old_domain.match(/^(\d{1,3}\.){3}\d{1,3}$/)) return old_domain;
274          if (typeof(a) == "undefined") throw "Cannot get value of "+varname;                  domain_pieces = old_domain.split('.');
275          return a;                  return domain_pieces.slice(-2, domain_pieces.length).join(".");
276  }          },
277    
278  Meteor.prototype.increasepolldelay = function() {          setstatus: function(newstatus) {
279          this.pollfreq *= 2;                  // Statuses:    0 = Uninitialised,
280  }                  //                              1 = Loading stream,
281                    //                              2 = Loading controller frame,
282  Meteor.prototype.updatepollfreq = function() {                  //                              3 = Controller frame timeout, retrying.
283          if (this.smartpoll) {                  //                              4 = Controller frame loaded and ready
284                  var now = new Date();                  //                              5 = Receiving data
285                  var t = now.getTime();                  //                              6 = End of stream, will not reconnect
286                  var avg = 0;  
287                  for (var i=1; i<this.recvtimes.length; i++) {                  if (Meteor.status != newstatus) {
288                          var x = (this.recvtimes[i]-this.recvtimes[i-1]);                          Meteor.status = newstatus;
289                          avg += (x>60000)? 60000 : x;                          Meteor.callbacks["statuschanged"](newstatus);
290                  }                  }
291                  x = (t-this.recvtimes[this.recvtimes.length-1]);          },
292                  avg += (x>180000)? 180000 : x;  
293                  avg /= this.recvtimes.length;          log: function(logstr) {
294                  if ((avg/3) < this.pollfreq && (avg/3) >= this.minpollfreq) this.pollfreq = Math.ceil(this.pollfreq*0.9);                  if (Meteor.debugmode) {
295                  if ((avg/3) > this.pollfreq) this.pollfreq = Math.floor(this.pollfreq*1.05);                          if (window.console) {
296          }                                  window.console.log(logstr);
297  }                          } else if (document.getElementById("meteorlogoutput")) {
298                                    document.getElementById("meteorlogoutput").innerHTML += logstr+"<br/>";
299  Meteor.prototype.registerEventCallback = function(evt, funcRef) {                          }
300          if (evt=="process") {                  }
301                  this.callback_process = (this.callback_process).andThen(funcRef);          }
302          } else if (evt=="reset") {  }
303                  this.callback_reset = (this.callback_reset).andThen(funcRef);  
304          } else if (evt=="eof") {  var oldonunload = window.onunload;
305                  this.callback_eof = (this.callback_eof).andThen(funcRef);  if (typeof window.onunload != 'function') {
306          } else if (evt=="changemode") {          window.onunload = Meteor.disconnect;
307                  this.callback_changemode = (this.callback_changemode).andThen(funcRef);  } else {
308          } else if (evt=="changestatus") {          window.onunload = function() {
309                  this.callback_statuschanged = (this.callback_statuschanged).andThen(funcRef);                  if (oldonunload) oldonunload();
310          }                  Meteor.disconnect();
311  }          }
312    }
 Meteor.prototype.frameloadtimeout = function() {  
         if (this.debugmode) console.log("Frame load timeout");  
         if (this.frameloadtimer) clearTimeout(this.frameloadtimer);  
         this.setstatus(3);  
         setTimeout(this.start.bind(this), 5000);  
 }  
 Meteor.prototype.setstatus = function(newstatus) {  
         if (this.status != newstatus) {  
                 this.status = newstatus;  
                 this.callback_statuschanged(newstatus);  
         }  
 }  
   
   
 Meteor.createCookie = function(name,value,days) {  
         if (days) {  
                 var date = new Date();  
                 date.setTime(date.getTime()+(days*24*60*60*1000));  
                 var expires = "; expires="+date.toGMTString();  
         }  
         else var expires = "";  
         document.cookie = name+"="+value+expires+"; path=/";  
 }  
   
 Meteor.readCookie = function(name) {  
         var nameEQ = name + "=";  
         var ca = document.cookie.split(';');  
         for(var i=0;i < ca.length;i++) {  
                 var c = ca[i];  
                 while (c.charAt(0)==' ') c = c.substring(1,c.length);  
                 if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);  
         }  
         return null;  
 }  
   
 Meteor.eraseCookie = function(name) {  
         createCookie(name,"",-1);  
 }  

Legend:
Removed from v.30  
changed lines
  Added in v.60

  ViewVC Help
Powered by ViewVC 1.1.26