forked from I2P_Developers/i2p.i2p
i2ptunnel, susidns: Add headers.jsi Console: Remove onload and use nonce for inline scripts where able Version remaining js links
89 lines
4.6 KiB
Plaintext
89 lines
4.6 KiB
Plaintext
<%@page contentType="text/html" %>
|
|
<%@page trimDirectiveWhitespaces="true"%>
|
|
<%@page pageEncoding="UTF-8"%>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html><head>
|
|
<%@include file="css.jsi" %>
|
|
<%=intl.title("configure bandwidth")%>
|
|
<%@include file="summaryajax.jsi" %>
|
|
</head><body>
|
|
<%@include file="summary.jsi" %>
|
|
<jsp:useBean class="net.i2p.router.web.helpers.ConfigNetHelper" id="nethelper" scope="request" />
|
|
<jsp:setProperty name="nethelper" property="contextId" value="<%=i2pcontextId%>" />
|
|
<h1><%=intl._t("I2P Bandwidth Configuration")%></h1>
|
|
<div class="main" id="config_bandwidth">
|
|
<%@include file="confignav.jsi" %>
|
|
|
|
<jsp:useBean class="net.i2p.router.web.helpers.ConfigNetHandler" id="formhandler" scope="request" />
|
|
<%@include file="formhandler.jsi" %>
|
|
<form action="" method="POST">
|
|
<input type="hidden" name="nonce" value="<%=pageNonce%>">
|
|
<input type="hidden" name="action" value="blah" >
|
|
<input type="hidden" name="ratesOnly" value="1" >
|
|
|
|
<h3 id="bwlimiter" class="tabletitle"><%=intl._t("Bandwidth Limiter")%> <a href="confignet">[<%=intl._t("Advanced Network Configuration")%>]</a></h3>
|
|
<table id="bandwidthconfig" class="configtable">
|
|
<tr><td class="infohelp" colspan="2">
|
|
<b><%=intl._t("I2P will work best if you configure your rates to match the speed of your internet connection.")%></b><p>
|
|
<%=intl._t("All sidebar values are in bytes per second, not bits per second.")%>
|
|
<%=intl._t("You may change your bandwidth limits here.")%>
|
|
<%=intl._t("The more bandwidth you make available, the more you help the network and improve your own anonymity, so please take the time to review the settings.")%>
|
|
<%=intl._t("If you are unsure of your network's speed, use the <a href=\"/welcome?page=3\">Bandwidth Test</a>.")%>
|
|
<%=intl._t("Your upstream share amount (KBps Out) will determine your overall contribution to the network.")%>
|
|
</p></td></tr>
|
|
<%-- display burst, set standard, handler will fix up --%>
|
|
<tr><td><input style="text-align: right; width: 5em;" name="inboundrate" type="text" size="5" maxlength="5" value="<jsp:getProperty name="nethelper" property="inboundBurstRate" />" >
|
|
<%=intl._t("KBps In")%>
|
|
</td><td>(<jsp:getProperty name="nethelper" property="inboundBurstRateBits" />)</td>
|
|
<%--
|
|
<!-- let's keep this simple...
|
|
bursting up to
|
|
<input name="inboundburstrate" type="text" size="5" value="<jsp:getProperty name="nethelper" property="inboundBurstRate" />" /> KBps for
|
|
<jsp:getProperty name="nethelper" property="inboundBurstFactorBox" /><br>
|
|
-->
|
|
--%>
|
|
</tr><tr>
|
|
<%-- display burst, set standard, handler will fix up --%>
|
|
<td><input style="text-align: right; width: 5em;" name="outboundrate" type="text" size="5" maxlength="5" value="<jsp:getProperty name="nethelper" property="outboundBurstRate" />" >
|
|
<%=intl._t("KBps Out")%>
|
|
</td><td>(<jsp:getProperty name="nethelper" property="outboundBurstRateBits" />)</td>
|
|
<%--
|
|
<!-- let's keep this simple...
|
|
bursting up to
|
|
<input name="outboundburstrate" type="text" size="2" value="<jsp:getProperty name="nethelper" property="outboundBurstRate" />" /> KBps for
|
|
<jsp:getProperty name="nethelper" property="outboundBurstFactorBox" /><br>
|
|
<i>KBps = kilobytes per second = 1024 bytes per second = 8192 bits per second.<br>
|
|
A negative rate sets the default.</i><br>
|
|
-->
|
|
--%>
|
|
</tr><tr>
|
|
<td><jsp:getProperty name="nethelper" property="sharePercentageBox" /> <%=intl._t("Share")%></td>
|
|
<td>(<jsp:getProperty name="nethelper" property="shareRateBits" />)
|
|
</td></tr>
|
|
<tr><td class="infohelp" colspan="2">
|
|
<% int share = Math.round(nethelper.getShareBandwidth() * 1.024f);
|
|
if (share < 12) {
|
|
out.print("<b>");
|
|
out.print(intl._t("NOTE"));
|
|
out.print("</b>: ");
|
|
out.print(intl._t("You have configured I2P to share only {0} KBps.", share));
|
|
out.print("\n");
|
|
|
|
out.print(intl._t("I2P requires at least 12KBps to enable sharing. "));
|
|
out.print(intl._t("Please enable sharing (participating in tunnels) by configuring more bandwidth. "));
|
|
out.print(intl._t("It improves your anonymity by creating cover traffic, and helps the network."));
|
|
} else {
|
|
out.print(intl._t("You have configured I2P to share {0} KBps.", share));
|
|
out.print("\n");
|
|
|
|
out.print(intl._t("The higher the share bandwidth the more you improve your anonymity and help the network."));
|
|
}
|
|
%></td></tr>
|
|
<tr><td class="optionsave" colspan="2">
|
|
<input type="reset" class="cancel" value="<%=intl._t("Cancel")%>" >
|
|
<input type="submit" class="accept" name="save" value="<%=intl._t("Save changes")%>" >
|
|
</td></tr>
|
|
</table>
|
|
</form>
|
|
</div></body></html>
|