forked from I2P_Developers/i2p.i2p
99 lines
3.9 KiB
Plaintext
99 lines
3.9 KiB
Plaintext
<%@page contentType="text/html"%>
|
|
<%@page pageEncoding="UTF-8"%>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
<html><head>
|
|
<%@include file="css.jsi" %>
|
|
<%=intl.title("config clients")%>
|
|
<style type='text/css'>
|
|
button span.hide{
|
|
display:none;
|
|
}
|
|
input.default { width: 1px; height: 1px; visibility: hidden; }
|
|
</style>
|
|
<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.ConfigClientsHelper" id="clientshelper" scope="request" />
|
|
<jsp:setProperty name="clientshelper" property="contextId" value="<%=i2pcontextId%>" />
|
|
<jsp:setProperty name="clientshelper" property="edit" value="<%=request.getParameter(\"edit\")%>" />
|
|
<h1><%=intl._t("I2P Client Configuration")%></h1>
|
|
<div class="main" id="config_i2cp">
|
|
<%@include file="confignav.jsi" %>
|
|
|
|
<jsp:useBean class="net.i2p.router.web.helpers.ConfigClientsHandler" id="formhandler" scope="request" />
|
|
<%@include file="formhandler.jsi" %>
|
|
<div class="configure">
|
|
<h3 id="advancedclientconfig"><a name="i2cp"></a><%=intl._t("Advanced Client Interface Configuration")%></h3>
|
|
<form action="configi2cp" method="POST">
|
|
<input type="hidden" name="nonce" value="<%=pageNonce%>" >
|
|
<table class="configtable" id="externali2cp">
|
|
<tr><td class="infowarn">
|
|
<b><%=intl._t("The default settings will work for most people.")%></b>
|
|
<%=intl._t("Any changes made here must also be configured in the external client.")%>
|
|
<%=intl._t("Many clients do not support SSL or authorization.")%>
|
|
<i><%=intl._t("All changes require restart to take effect.")%></i>
|
|
</td></tr>
|
|
<tr><th><%=intl._t("External I2CP (I2P Client Protocol) Interface Configuration")%></th></tr>
|
|
<tr><td>
|
|
<label><input type="radio" class="optbox" name="mode" value="1" <%=clientshelper.i2cpModeChecked(1) %> >
|
|
<%=intl._t("Enabled without SSL")%></label><br>
|
|
<label><input type="radio" class="optbox" name="mode" value="2" <%=clientshelper.i2cpModeChecked(2) %> >
|
|
<%=intl._t("Enabled with SSL required")%></label><br>
|
|
<%
|
|
// returns nonempty string if disabled
|
|
String disableChecked = clientshelper.i2cpModeChecked(0);
|
|
boolean isDisabled = disableChecked.length() > 0;
|
|
%>
|
|
<label><input type="radio" class="optbox" name="mode" value="0" <%=disableChecked%> >
|
|
<%=intl._t("Disabled - Clients outside this Java process may not connect")%></label><br>
|
|
</td></tr>
|
|
<%
|
|
if (!isDisabled) {
|
|
%>
|
|
<tr><td>
|
|
<b><%=intl._t("I2CP Interface")%>:</b>
|
|
<select name="interface">
|
|
<%
|
|
String[] ips = clientshelper.intfcAddresses();
|
|
for (int i = 0; i < ips.length; i++) {
|
|
out.print("<option value=\"");
|
|
out.print(ips[i]);
|
|
out.print('\"');
|
|
if (clientshelper.isIFSelected(ips[i]))
|
|
out.print(" selected=\"selected\"");
|
|
out.print('>');
|
|
out.print(ips[i]);
|
|
out.print("</option>\n");
|
|
}
|
|
%>
|
|
</select>
|
|
<b><%=intl._t("I2CP Port")%>:</b>
|
|
<input name="port" type="text" size="5" maxlength="5" value="<jsp:getProperty name="clientshelper" property="port" />" >
|
|
</td></tr>
|
|
<tr><th><%=intl._t("Authorization")%></th></tr>
|
|
<tr><td>
|
|
<label><input type="checkbox" class="optbox" name="auth" value="true" <jsp:getProperty name="clientshelper" property="auth" /> >
|
|
<%=intl._t("Require username and password")%></label><br>
|
|
</td></tr>
|
|
<tr><td>
|
|
<b><%=intl._t("Username")%>:</b>
|
|
<input name="user" type="text" value="" />
|
|
<b><%=intl._t("Password")%>:</b>
|
|
<input name="nofilter_pw" type="password" value="" />
|
|
</td></tr>
|
|
<%
|
|
} // !isDisabled
|
|
%>
|
|
<tr><td class="optionsave" align="right">
|
|
<input type="submit" class="default" name="action" value="<%=intl._t("Save Interface Configuration")%>" />
|
|
<input type="submit" class="cancel" name="foo" value="<%=intl._t("Cancel")%>" />
|
|
<input type="submit" class="accept" name="action" value="<%=intl._t("Save Interface Configuration")%>" />
|
|
</td></tr>
|
|
</table>
|
|
</form>
|
|
</div></div></body></html>
|