Changeset fb1a653
- Timestamp:
- Jul 28, 2009 10:53:33 PM (12 years ago)
- Branches:
- master
- Children:
- f1103be
- Parents:
- 22b1d5f
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/routerconsole/java/src/net/i2p/router/web/OldConsoleHelper.java
r22b1d5f rfb1a653 23 23 } 24 24 } catch (IOException ioe) { 25 return "<b>Error rending the console</b>";25 return "<b>Error displaying the console.</b>"; 26 26 } 27 27 } … … 39 39 } 40 40 } catch (IOException ioe) { 41 return "<b>Error rending the console</b>";41 return "<b>Error displaying the console.</b>"; 42 42 } 43 43 } -
apps/routerconsole/jsp/oldstats.jsp
r22b1d5f rfb1a653 17 17 <jsp:getProperty name="oldhelper" property="stats" /> 18 18 </div> 19 19 </div> 20 20 </body> 21 21 </html> -
installer/resources/themes/console/light/console.css
r22b1d5f rfb1a653 622 622 -khtml-border-radius: 4px; 623 623 text-align: justify; 624 -moz-box-shadow: inset 0px 0px 0px 1px #9f9;624 -moz-box-shadow: inset 0px 0px 1px 0px #002; 625 625 overflow-x: scroll; 626 626 } -
router/java/src/net/i2p/router/JobQueue.java
r22b1d5f rfb1a653 608 608 609 609 StringBuilder buf = new StringBuilder(32*1024); 610 buf.append("<h2>JobQueue</h2>"); 611 buf.append("<b><div class=\"joblog\"># runners: ").append(numRunners).append(" [states="); 610 buf.append("<b><div class=\"joblog\"><h3>I2P JobQueue</h3># runners: ").append(numRunners).append(" [states="); 612 611 if (states != null) 613 612 for (int i = 0; i < states.length; i++) -
router/java/src/net/i2p/router/RouterVersion.java
r22b1d5f rfb1a653 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 3 0;21 public final static long BUILD = 31; 22 22 /** for example "-test" */ 23 23 public final static String EXTRA = "-rc"; -
router/java/src/net/i2p/router/admin/StatsGenerator.java
r22b1d5f rfb1a653 30 30 public void generateStatsPage(Writer out) throws IOException { 31 31 StringBuilder buf = new StringBuilder(16*1024); 32 buf.append("< form action=\"/oldstats.jsp\">");32 buf.append("<div class=\"joblog\"><form action=\"/oldstats.jsp\">"); 33 33 buf.append("<select name=\"go\" onChange='location.href=this.value'>"); 34 34 out.write(buf.toString()); … … 67 67 String group = (String)iter.next(); 68 68 Set stats = (Set)groups.get(group); 69 buf.append("<h 2><a name=\"");69 buf.append("<h3><a name=\""); 70 70 buf.append(group); 71 71 buf.append("\">"); 72 72 buf.append(group); 73 buf.append("</a></h 2>");73 buf.append("</a></h3>"); 74 74 buf.append("<ul>"); 75 75 out.write(buf.toString());
Note: See TracChangeset
for help on using the changeset viewer.