Changeset 16429


Ignore:
Timestamp:
05/29/13 14:54:37 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16411 r16429  
    109109                                                        var val = [];
    110110                                                        var T = [];
    111                                                         var src = 0;
     111                                                        int sources = 0;
    112112                                                       
    113                                                                 for(src=0;src<source.length;src++)
     113                                                                for(sources=0;src<source.length;sources++)
    114114                                                                  {
    115115                                                                if (window.XMLHttpRequest)
     
    128128                                                                        {
    129129                                                                                       
    130                                                                                                 Data[src]= new Array();
    131                                                                                                 //Data[src]= new Array();
     130                                                                                                Data[sources]= new Array();
     131                                                                                                //Data[sources]= new Array();
    132132                                                                                               
    133133                                                                                                line=xmlhttp.responseText.split('\n');
     
    135135                                                                                                {
    136136                                                                                                        rows=line[row].split(',');
    137                                                                                                         Data[src].push(rows[4]);
     137                                                                                                        Data[sources].push(rows[4]);
    138138                                                                                                }
    139139                                                                                       
    140140                                                                                       
    141                                                                                         GraphData(Data, src);
    142                                                                                         //document.getElementById('data').innerHTML=Data[src];
     141                                                                                        GraphData(Data, sources);
     142                                                                                        //document.getElementById('data').innerHTML=Data[sources];
    143143                                                                        }
    144144                                                                }
    145145                                                               
    146                                                                 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[src])+"&time="+year+"-"+month+"-"+day,true);
     146                                                                xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[sources])+"&time="+year+"-"+month+"-"+day,true);
    147147                                                                xmlhttp.send();
    148                                                                 document.getElementById('data').innerHTML=source.length+""+src;
     148                                                                document.getElementById('data').innerHTML=source.length+""+sources;
    149149                                                                }
    150150                                                       
     
    155155                                                                        /*for(ii=0;ii<Data[i].length;ii++)
    156156                                                                        {*/
    157                                                                                 document.getElementById('day').innerHTML=array[i];
     157                                                                                document.getElementById('day').innerHTML=array[index];
    158158                                                                        /*}*/
    159159                                                                }
Note: See TracChangeset for help on using the changeset viewer.