/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/RequestPlotter.java
ViewVC logotype

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/RequestPlotter.java

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

revision 1370 by torben, Wed Apr 20 21:31:45 2011 UTC revision 1431 by torben, Mon May 2 19:28:02 2011 UTC
# Line 58  public class RequestPlotter extends Http Line 58  public class RequestPlotter extends Http
58                  return fileStr.substring(fileStr.length() - 3).equals(".gz");                  return fileStr.substring(fileStr.length() - 3).equals(".gz");
59          }          }
60                    
61          protected File[] getFiles(int count) {          public static File[] getFiles(int count) {
62                  File accessLogDir = new File("/home/app/domain1/logs/access/");                  File accessLogDir = new File("/home/app/domain1/logs/access/");
63                  //File accessLogDir = new File("/home/torben/inst/glassfishv3/glassfish/domains/domain1/logs/access/");                  //File accessLogDir = new File("/home/torben/inst/glassfishv3/glassfish/domains/domain1/logs/access/");
64                                    
# Line 267  public class RequestPlotter extends Http Line 267  public class RequestPlotter extends Http
267                  for(RequestPosition current : list) {                  for(RequestPosition current : list) {
268                          String id = color + count++;                          String id = color + count++;
269                          sb.append( " <Placemark id=\"" + id + "\">\n" );                          sb.append( " <Placemark id=\"" + id + "\">\n" );
270                            sb.append( "  <name>").append(current.time).append("</name>\n" );
271                          sb.append( "  <styleUrl>#").append(color).append("</styleUrl>\n" );                          sb.append( "  <styleUrl>#").append(color).append("</styleUrl>\n" );
272                          sb.append( "  <description><![CDATA[IP=").append(current.ip).append("<br/>Time=").append(current.time).append("]]></description>\n" );                          sb.append( "  <description><![CDATA[IP=").append(current.ip).append("<br/> ]]></description>\n" );
273                          sb.append( "  <Point><coordinates>").append(current.lng).append(",").append(current.lat).append(",0</coordinates></Point>\n" );                          sb.append( "  <Point><coordinates>").append(current.lng).append(",").append(current.lat).append(",0</coordinates></Point>\n" );
274                          sb.append( " </Placemark>\n" );                                          sb.append( " </Placemark>\n" );                
275                  }                                }              
# Line 403  public class RequestPlotter extends Http Line 404  public class RequestPlotter extends Http
404                          byte bytes[] = baos.toByteArray();                          byte bytes[] = baos.toByteArray();
405    
406                          resp.setContentType(KMZ);                          resp.setContentType(KMZ);
407                          resp.setContentLength( bytes.length );                          resp.setHeader("Content-Disposition", "attachment; filename=Traininfo-requestplotter.kmz");
408                            resp.setContentLength( bytes.length );                  
409                          resp.getOutputStream().write(bytes);                          resp.getOutputStream().write(bytes);
410    
411                  } else {                  } else {
412                          resp.setContentType(KML);                          byte bytes[] = kmlData.getBytes();
413                          resp.getWriter().print( kmlData );                          
414                            resp.setContentType(KML);                      
415                            resp.setContentLength( bytes.length );
416                            resp.getOutputStream().write(bytes);
417                  }                  }
418          }          }
419  }  }

Legend:
Removed from v.1370  
changed lines
  Added in v.1431

  ViewVC Help
Powered by ViewVC 1.1.20