--- android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/CompareStations.java 2012/02/29 10:45:48 1698 +++ android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/CompareStations.java 2012/02/29 13:03:30 1699 @@ -32,7 +32,7 @@ public class CompareStations extends HttpServlet { private static final long serialVersionUID = 1L; - Map cache = new TimeoutMap(300 * 1000); + Map cache = new TimeoutMap(600 * 1000); protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { @@ -127,12 +127,12 @@ try { boolean tmpdisabled = dao.hasDisabledStation(s); if (tmpdisabled == true) - disabled = "disabled"; + disabled = " - disabled"; } catch (Exception e) { throw new ServletException(e); } - sb.append( "
  • " + s + "  " + data + " - " + disabled + "
  • \n" ); + sb.append( "
  • " + s + "  " + data + "" + disabled + "
  • \n" ); } sb.append("");