2009-07-17 20:57:18 +00:00
|
|
|
<%@page contentType="text/html"%>
|
2012-01-10 13:21:35 +00:00
|
|
|
<%@page trimDirectiveWhitespaces="true"%>
|
2009-07-17 20:57:18 +00:00
|
|
|
<%@page pageEncoding="UTF-8"%>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
|
2009-10-23 05:32:47 +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("config advanced")%>
|
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-07-17 20:57:18 +00:00
|
|
|
|
2009-11-21 13:33:57 +00:00
|
|
|
<%@include file="summary.jsi" %>
|
2009-07-17 20:57:18 +00:00
|
|
|
|
|
|
|
<jsp:useBean class="net.i2p.router.web.ConfigAdvancedHelper" id="advancedhelper" scope="request" />
|
2011-12-25 22:37:30 +00:00
|
|
|
<jsp:setProperty name="advancedhelper" property="contextId" value="<%=(String)session.getAttribute(\"i2p.contextId\")%>" />
|
2009-07-17 20:57:18 +00:00
|
|
|
|
2009-10-23 13:55:44 +00:00
|
|
|
<h1><%=intl._("I2P Advanced Configuration")%></h1>
|
2009-07-17 20:57:18 +00:00
|
|
|
<div class="main" id="main">
|
|
|
|
|
2009-11-21 13:33:57 +00:00
|
|
|
<%@include file="confignav.jsi" %>
|
2009-08-02 12:57:50 +00:00
|
|
|
|
2009-07-17 20:57:18 +00:00
|
|
|
<jsp:useBean class="net.i2p.router.web.ConfigAdvancedHandler" id="formhandler" scope="request" />
|
2010-11-21 20:46:48 +00:00
|
|
|
<% formhandler.storeMethod(request.getMethod()); %>
|
2009-07-17 20:57:18 +00:00
|
|
|
<jsp:setProperty name="formhandler" property="*" />
|
2011-12-25 22:37:30 +00:00
|
|
|
<jsp:setProperty name="formhandler" property="contextId" value="<%=(String)session.getAttribute(\"i2p.contextId\")%>" />
|
2009-07-17 20:57:18 +00:00
|
|
|
<jsp:getProperty name="formhandler" property="allMessages" />
|
|
|
|
<div class="configure">
|
2009-08-02 12:57:50 +00:00
|
|
|
<div class="wideload">
|
2010-11-19 15:23:25 +00:00
|
|
|
<form action="" method="POST">
|
2011-03-09 17:16:28 +00:00
|
|
|
<input type="hidden" name="nonce" value="<jsp:getProperty name="formhandler" property="newNonce" />" >
|
2010-04-05 13:34:45 +00:00
|
|
|
<input type="hidden" name="action" value="blah" >
|
2009-10-23 13:55:44 +00:00
|
|
|
<h3><%=intl._("Advanced I2P Configuration")%></h3>
|
2011-01-02 18:58:06 +00:00
|
|
|
<textarea rows="32" cols="60" name="config" wrap="off" spellcheck="false"><jsp:getProperty name="advancedhelper" property="settings" /></textarea><br><hr>
|
2009-08-15 16:08:33 +00:00
|
|
|
<div class="formaction">
|
2011-11-30 23:23:41 +00:00
|
|
|
<input type="reset" class="cancel" value="<%=intl._("Cancel")%>" >
|
|
|
|
<input type="submit" name="shouldsave" class="accept" value="<%=intl._("Save changes")%>" >
|
2010-04-05 13:34:45 +00:00
|
|
|
<br><b><%=intl._("NOTE")%>:</b> <%=intl._("Some changes may require a restart to take effect.")%>
|
2009-08-15 16:08:33 +00:00
|
|
|
</div></form></div></div></div></body></html>
|