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

Legend:
Removed from v.18  
changed lines
  Added in v.61

  ViewVC Help
Powered by ViewVC 1.1.26