forked from I2P_Developers/i2p.i2p
* stats.jsp: Link to graph page, not single image
This commit is contained in:
@@ -215,11 +215,12 @@ public class StatsGenerator {
|
||||
buf.append(")");
|
||||
}
|
||||
if (curRate.getSummaryListener() != null) {
|
||||
buf.append(" <a href=\"viewstat.jsp?stat=").append(name);
|
||||
buf.append("&period=").append(periods[i]);
|
||||
buf.append(" <a href=\"graph?stat=").append(name)
|
||||
.append('.').append(periods[i]);
|
||||
buf.append("\">").append(_("Graph Data")).append("</a> - ");
|
||||
buf.append(" <a href=\"viewstat.jsp?stat=").append(name);
|
||||
buf.append("&period=").append(periods[i]).append("&showEvents=true\">").append(_("Graph Event Count")).append("</a> - ");
|
||||
buf.append(" <a href=\"graph?stat=").append(name)
|
||||
.append('.').append(periods[i]);
|
||||
buf.append("&showEvents=true\">").append(_("Graph Event Count")).append("</a> - ");
|
||||
buf.append("<a href=\"viewstat.jsp?stat=").append(name);
|
||||
buf.append("&period=").append(periods[i]);
|
||||
buf.append("&format=xml\">").append(_("Export Data as XML")).append("</a>");
|
||||
|
12
history.txt
12
history.txt
@@ -1,3 +1,13 @@
|
||||
2012-11-13 zzz
|
||||
* Bandwidth Limiter: Fix stats broken in -1
|
||||
* HTTP Proxy: Store referrer of new addresses in address book
|
||||
* NTCP:
|
||||
- Fix NPE (ticket #770)
|
||||
- Use ByteCache for buffers
|
||||
* SOCKS: Reduce log level of connect errors
|
||||
* SSU: Fix bug that would drop 512 byte messages
|
||||
* stats.jsp: Link to graph page, not single image
|
||||
|
||||
2012-11-10 kytv
|
||||
* eepget: Add logic to figure out the path to java.exe (java isn't always added to the system path
|
||||
in Windows) (ticket #769)
|
||||
@@ -92,7 +102,7 @@
|
||||
- Prep for RouterApp interface by storing context in a field,
|
||||
shuffle around what's static and what's not (ticket #347)
|
||||
- Convert to RouterApp interface
|
||||
- Convert from basic to digest authentication
|
||||
- Convert from basic to digest authentication (ticket #652)
|
||||
- Use new password manager (ticket #731)
|
||||
* Core: New password manager for storing passwords in router.config
|
||||
in consistent ways, including salting and hashing if possible.
|
||||
|
@@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 5;
|
||||
public final static long BUILD = 6;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user