Changeset 16471


Ignore:
Timestamp:
05/30/13 10:21:14 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16468 r16471  
    108108                                                        var T = [];
    109109                                                        var sources = 0;
     110                                                        var xmlhttp = [];
    110111                                                       
    111112                                                        for(sources=0;sources<source.length;sources++)
     
    115116                                                                if (window.XMLHttpRequest)
    116117                                                                  {// code for IE7+, Firefox, Chrome, Opera, Safari
    117                                                                   xmlhttp=new XMLHttpRequest();
     118                                                                  xmlhttp[sources]=new XMLHttpRequest();
    118119                                                                  }
    119120                                                                 
    120121                                                                else
    121122                                                                  {// code for IE6, IE5
    122                                                                   xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
     123                                                                  xmlhttp[sources]=new ActiveXObject("Microsoft.XMLHTTP");
    123124                                                                  }
    124125                                                               
    125                                                                 xmlhttp.onreadystatechange=function()
     126                                                                xmlhttp[sources].onreadystatechange=function()
    126127                                                                  {
    127128                                                                 
     
    131132                                                                                                Data[sources]= new Array();
    132133                                                                                                                                                               
    133                                                                                                 line=xmlhttp.responseText.split('\n');
     134                                                                                                line=xmlhttp[sources].responseText.split('\n');
    134135                                                                                                for(row=0;row<line.length;row++)
    135136                                                                                                {
     
    145146                                                                }
    146147                                                               
    147                                                                 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[sources])+"&time="+year+"-"+month+"-"+day,true);
    148                                                                 xmlhttp.send();
     148                                                                xmlhttp[sources].open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[sources])+"&time="+year+"-"+month+"-"+day,true);
     149                                                                xmlhttp[sources].send();
    149150                                                                //document.getElementById('data').innerHTML=source.length+""+Data[sources];
    150151                                                                               
Note: See TracChangeset for help on using the changeset viewer.