Changeset 3c76fda8
- Timestamp:
- Jul 25, 2009 11:46:42 PM (11 years ago)
- Branches:
- master
- Children:
- cc533b0
- Parents:
- c5555350
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java
rc5555350 r3c76fda8 58 58 59 59 if (hasTx && hasRx && !_showEvents) { 60 _out.write("< div class=\"graphspanel\"><a href=\"viewstat.jsp?stat=bw.combined"60 _out.write("<a href=\"viewstat.jsp?stat=bw.combined" 61 61 + "&periodCount=" + (3 * _periodCount ) 62 62 + "&width=" + (3 * _width) 63 63 + "&height=" + (3 * _height) 64 + "\" / >");65 _out.write("<img width=\""64 + "\" / target=\"_blank\">"); 65 _out.write("<img class=\"statimage\" width=\"" 66 66 + (_width + 83) + "\" height=\"" + (_height + 92) 67 67 + "\" src=\"viewstat.jsp?stat=bw.combined" … … 83 83 + "&width=" + (3 * _width) 84 84 + "&height=" + (3 * _height) 85 + "\" />");85 + "\" target=\"_blank\" />"); 86 86 _out.write("<img class=\"statimage\" border=\"0\" width=\"" 87 87 + (_width + 83) + "\" height=\"" + (_height + 92) -
apps/routerconsole/jsp/graphs.jsp
rc5555350 r3c76fda8 11 11 <h1>I2P Performance Graphs</h1> 12 12 <div class="main" id="main"> 13 <div class="graphspanel"> 13 14 <jsp:useBean class="net.i2p.router.web.GraphHelper" id="graphHelper" scope="request" /> 14 15 <jsp:setProperty name="graphHelper" property="*" /> -
router/java/src/net/i2p/router/RouterVersion.java
rc5555350 r3c76fda8 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 2 5;21 public final static long BUILD = 26; 22 22 /** for example "-test" */ 23 23 public final static String EXTRA = "-rc";
Note: See TracChangeset
for help on using the changeset viewer.