| 1 | <%@page contentType="text/html"%> |
|---|
| 2 | <%@page trimDirectiveWhitespaces="true"%> |
|---|
| 3 | <%@page pageEncoding="UTF-8"%> |
|---|
| 4 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
|---|
| 5 | |
|---|
| 6 | <html><head> |
|---|
| 7 | <%@include file="css.jsi" %> |
|---|
| 8 | <%=intl.title("config advanced")%> |
|---|
| 9 | </head><body> |
|---|
| 10 | |
|---|
| 11 | <%@include file="summary.jsi" %> |
|---|
| 12 | |
|---|
| 13 | <jsp:useBean class="net.i2p.router.web.ConfigAdvancedHelper" id="advancedhelper" scope="request" /> |
|---|
| 14 | <jsp:setProperty name="advancedhelper" property="contextId" value="<%=(String)session.getAttribute(\"i2p.contextId\")%>" /> |
|---|
| 15 | |
|---|
| 16 | <h1><%=intl._("I2P Advanced Configuration")%></h1> |
|---|
| 17 | <div class="main" id="main"> |
|---|
| 18 | |
|---|
| 19 | <%@include file="confignav.jsi" %> |
|---|
| 20 | |
|---|
| 21 | <jsp:useBean class="net.i2p.router.web.ConfigAdvancedHandler" id="formhandler" scope="request" /> |
|---|
| 22 | <% formhandler.storeMethod(request.getMethod()); %> |
|---|
| 23 | <jsp:setProperty name="formhandler" property="*" /> |
|---|
| 24 | <jsp:setProperty name="formhandler" property="contextId" value="<%=(String)session.getAttribute(\"i2p.contextId\")%>" /> |
|---|
| 25 | <jsp:getProperty name="formhandler" property="allMessages" /> |
|---|
| 26 | <div class="configure"> |
|---|
| 27 | <div class="wideload"> |
|---|
| 28 | <form action="" method="POST"> |
|---|
| 29 | <input type="hidden" name="nonce" value="<jsp:getProperty name="formhandler" property="newNonce" />" > |
|---|
| 30 | <input type="hidden" name="action" value="blah" > |
|---|
| 31 | <h3><%=intl._("Advanced I2P Configuration")%></h3> |
|---|
| 32 | <textarea rows="32" cols="60" name="config" wrap="off" spellcheck="false"><jsp:getProperty name="advancedhelper" property="settings" /></textarea><br><hr> |
|---|
| 33 | <div class="formaction"> |
|---|
| 34 | <input type="reset" class="cancel" value="<%=intl._("Cancel")%>" > |
|---|
| 35 | <input type="submit" name="shouldsave" class="accept" value="<%=intl._("Save changes")%>" > |
|---|
| 36 | <br><b><%=intl._("NOTE")%>:</b> <%=intl._("Some changes may require a restart to take effect.")%> |
|---|
| 37 | </div></form></div></div></div></body></html> |
|---|