2004-07-24 02:06:07 +00:00
|
|
|
<%@page contentType="text/html"%>
|
2012-01-10 13:21:35 +00:00
|
|
|
<%@page trimDirectiveWhitespaces="true"%>
|
2004-07-24 02:06:07 +00:00
|
|
|
<%@page pageEncoding="UTF-8"%>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
|
2009-10-23 13:00:38 +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("peer profiles")%>
|
2012-06-05 13:37:10 +00:00
|
|
|
<script src="/js/ajax.js" type="text/javascript"></script>
|
2012-07-17 00:47:08 +00:00
|
|
|
<%@include file="summaryajax.jsi" %>
|
2012-06-05 13:37:10 +00:00
|
|
|
</head><body onload="initAjax()">
|
|
|
|
<%@include file="summary.jsi" %>
|
2009-10-23 13:55:44 +00:00
|
|
|
<h1><%=intl._("I2P Network Peer Profiles")%></h1>
|
2009-08-02 13:57:29 +00:00
|
|
|
<div class="main" id="main"><div class="wideload">
|
2004-07-24 02:06:07 +00:00
|
|
|
<jsp:useBean class="net.i2p.router.web.ProfilesHelper" id="profilesHelper" scope="request" />
|
2011-12-25 22:37:30 +00:00
|
|
|
<jsp:setProperty name="profilesHelper" property="contextId" value="<%=(String)session.getAttribute(\"i2p.contextId\")%>" />
|
2012-06-01 13:30:38 +00:00
|
|
|
<%
|
|
|
|
profilesHelper.storeWriter(out);
|
|
|
|
if (allowIFrame)
|
|
|
|
profilesHelper.allowGraphical();
|
|
|
|
%>
|
2011-12-25 22:37:30 +00:00
|
|
|
<jsp:setProperty name="profilesHelper" property="full" value="<%=request.getParameter(\"f\")%>" />
|
2012-06-01 13:30:38 +00:00
|
|
|
<jsp:getProperty name="profilesHelper" property="summary" />
|
2009-10-12 23:55:21 +00:00
|
|
|
<hr></div></div></body></html>
|