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

  ViewVC Help
Powered by ViewVC 1.1.26