forked from I2P_Developers/i2p.i2p
21 lines
872 B
Plaintext
21 lines
872 B
Plaintext
<%@page contentType="text/html"%>
|
|
<%@page trimDirectiveWhitespaces="true"%>
|
|
<%@page pageEncoding="UTF-8"%>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
<html><head>
|
|
<%@include file="css.jsi" %>
|
|
<%=intl.title("statistics")%>
|
|
<script src="/js/ajax.js" type="text/javascript"></script>
|
|
<%@include file="summaryajax.jsi" %>
|
|
</head><body onload="initAjax()">
|
|
<%@include file="summary.jsi" %>
|
|
<jsp:useBean class="net.i2p.router.web.helpers.OldConsoleHelper" id="oldhelper" scope="request" />
|
|
<jsp:setProperty name="oldhelper" property="contextId" value="<%=i2pcontextId%>" />
|
|
<% oldhelper.storeWriter(out); %>
|
|
<jsp:setProperty name="oldhelper" property="full" value="<%=request.getParameter(\"f\")%>" />
|
|
<h1><%=intl._t("I2P Router Statistics")%></h1>
|
|
<div class="main" id="stats">
|
|
<jsp:getProperty name="oldhelper" property="stats" />
|
|
</div></body></html>
|