2005-02-16 22:37:24 +00:00
|
|
|
<%@page contentType="text/html"%>
|
2012-01-10 13:21:35 +00:00
|
|
|
<%@page trimDirectiveWhitespaces="true"%>
|
2005-02-16 22:37:24 +00:00
|
|
|
<%@page pageEncoding="UTF-8"%>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
|
2009-10-23 05:07:16 +00:00
|
|
|
<html><head>
|
2009-11-21 13:33:57 +00:00
|
|
|
<%@include file="css.jsi" %>
|
2009-10-23 13:55:44 +00:00
|
|
|
<%=intl.title("tunnel summary")%>
|
2012-06-05 13:37:10 +00:00
|
|
|
<script src="/js/ajax.js" type="text/javascript"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var failMessage = "<hr><b><%=intl._("Router is down")%><\/b>";
|
|
|
|
function requestAjax1() { ajax("/xhr1.jsp", "xhr", <%=intl.getRefresh()%>000); }
|
|
|
|
function initAjax() { setTimeout(requestAjax1, <%=intl.getRefresh()%>000); }
|
|
|
|
</script>
|
|
|
|
</head><body onload="initAjax()">
|
2009-11-21 13:33:57 +00:00
|
|
|
<%@include file="summary.jsi" %><h1><%=intl._("I2P Tunnel Summary")%></h1>
|
2005-02-16 22:37:24 +00:00
|
|
|
<div class="main" id="main">
|
|
|
|
<jsp:useBean class="net.i2p.router.web.TunnelHelper" id="tunnelHelper" scope="request" />
|
2011-12-25 22:37:30 +00:00
|
|
|
<jsp:setProperty name="tunnelHelper" property="contextId" value="<%=(String)session.getAttribute(\"i2p.contextId\")%>" />
|
2010-11-21 20:46:48 +00:00
|
|
|
<% tunnelHelper.storeWriter(out); %>
|
2005-02-16 22:37:24 +00:00
|
|
|
<jsp:getProperty name="tunnelHelper" property="tunnelSummary" />
|
2009-08-15 16:08:33 +00:00
|
|
|
</div></body></html>
|