forked from I2P_Developers/i2p.i2p
Console:
- Add spans to /stats page to avoid summary info breaking mid-sentence, and to aid presentation - Adjust /stats CSS so information isn't over-dense - Set graph size for generated graphs on /stats to 600x200 - Fix netdb leaseset tables - Ensure we only iconify add to addressbook links and not b32 dests - Individual icons for I2PSnark and I2P Plugins on /home - Add div to upnpstatus on peers to comply with layout - Fix various unclosed/erroneous tags
This commit is contained in:
@ -676,7 +676,7 @@ public class UPnP extends ControlPoint implements DeviceChangeListener, EventLis
|
||||
/** warning - slow */
|
||||
public String renderStatusHTML() {
|
||||
final StringBuilder sb = new StringBuilder();
|
||||
sb.append("<h3><a name=\"upnp\"></a>").append(_t("UPnP Status")).append("</h3>");
|
||||
sb.append("<h3 id=\"upnp\">").append(_t("UPnP Status")).append("</h3><div id=\"upnpscan\">");
|
||||
|
||||
synchronized(_otherUDNs) {
|
||||
if (!_otherUDNs.isEmpty()) {
|
||||
@ -727,7 +727,7 @@ public class UPnP extends ControlPoint implements DeviceChangeListener, EventLis
|
||||
}
|
||||
}
|
||||
|
||||
sb.append("</p>");
|
||||
sb.append("</p></div>");
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user