Changeset f95100a
- Timestamp:
- May 23, 2016 11:02:10 AM (5 years ago)
- Branches:
- master
- Children:
- 804011d
- Parents:
- bbc2454
- Location:
- apps
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/routerconsole/java/src/net/i2p/router/web/BanlistRenderer.java
rbbc2454 rf95100a 79 79 } 80 80 if (!key.equals(Hash.FAKE_HASH)) { 81 buf.append(" (<a href=\"configpeer?peer=").append(key.toBase64())82 .append("#unsh\"> ").append(_t("unban now")).append("</a>)");81 buf.append(" <a href=\"configpeer?peer=").append(key.toBase64()) 82 .append("#unsh\">[").append(_t("unban now")).append("]</a>"); 83 83 } 84 84 buf.append("</li>\n"); -
apps/routerconsole/java/src/net/i2p/router/web/GraphHelper.java
rbbc2454 rf95100a 323 323 324 324 _out.write("</p><p><i>" + _t("All times are UTC.") + "</i></p>\n"); 325 326 _out.write("<p><a href=\"graphs\">" + _t("Return to main graphs page") + "</a></p>\n"); 325 327 } catch (IOException ioe) { 326 328 ioe.printStackTrace(); … … 354 356 String nonce = CSSHelper.getNonce(); 355 357 try { 356 _out.write("<br><h3 id=\"graphdisplay\">" + _t("Configure Graph Display") + " [<a href=\"configstats\">" + _t("Select Stats") + "</a>]</h3>");358 _out.write("<br><h3 id=\"graphdisplay\">" + _t("Configure Graph Display") + " <a href=\"configstats\">[" + _t("Select Stats") + "]</a></h3>"); 357 359 _out.write("<form action=\"graphs\" method=\"POST\">\n" + 358 360 "<input type=\"hidden\" name=\"action\" value=\"save\">\n" + -
apps/routerconsole/java/src/net/i2p/router/web/NetDbRenderer.java
rbbc2454 rf95100a 153 153 } 154 154 buf.append("<tr><th colspan=\"3\">Leaseset Summary</th>") 155 .append("<th><a href=\"/configadvanced\">Configure Floodfill Participation</a></th></tr>\n") 155 .append("<th><a href=\"/configadvanced\" title=\"").append(_t("Manually Configure Floodfill Participation")).append("\">[") 156 .append(_t("Configure Floodfill Participation")) 157 .append("]</a></th></tr>\n") 156 158 .append("<tr><td><b>Total Leasesets:</b></td><td colspan=\"3\">").append(leases.size()).append("</td></tr>\n"); 157 159 if (debug) { … … 218 220 String host = _context.namingService().reverseLookup(dest); 219 221 if (host == null) { 220 buf.append("<td>").append("<a href=\"/susidns/addressbook.jsp?book=private&destination=") 222 buf.append("<td>").append("<a title=\"").append(_t("Add to addressbook")) 223 .append("\" href=\"/susidns/addressbook.jsp?book=private&destination=") 221 224 .append(dest.toBase64()).append("#add\">").append(_t("Add to local addressbook")).append("</a></td>"); 222 225 } … … 231 234 .append("</tr>\n<tr>") 232 235 .append("<td><a href=\"http://").append(b32).append("\">").append(b32).append("</a></td>\n") 233 .append("<td><a href=\"/susidns/addressbook.jsp?book=private&destination=") 236 .append("<td><a title=\"").append(_t("Add to addressbook")) 237 .append("\" href=\"/susidns/addressbook.jsp?book=private&destination=") 234 238 .append(dest.toBase64()).append("#add\">").append(_t("Add to local addressbook")).append("</a></td>"); 235 239 } … … 479 483 buf.append("<b>" + _t("Peer info for") + ":</b> <code>").append(hash).append("</code></th><th>"); 480 484 if (!full) { 481 buf.append("<a class=\"viewfullentry\" href=\"netdb?r=").append(hash.substring(0, 6)).append("\" >").append(_t("Full entry")).append("</a>"); 485 buf.append("<a title=\"").append(_t("View extended router info")) 486 .append("\" class=\"viewfullentry\" href=\"netdb?r=").append(hash.substring(0, 6)) 487 .append("\" >[").append(_t("Full entry")).append("]</a>"); 482 488 } 483 489 } -
apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java
rbbc2454 rf95100a 821 821 StringBuilder buf = new StringBuilder(256); 822 822 if (showFirewallWarning()) { 823 buf.append("<h4 id=\"sb_warning\"><a href=\"/ confignet\" target=\"_top\" title=\"")823 buf.append("<h4 id=\"sb_warning\"><a href=\"/help#configurationhelp\" target=\"_top\" title=\"") 824 824 .append(_t("Help with firewall configuration")) 825 825 .append("\">") -
apps/routerconsole/java/src/net/i2p/router/web/SybilRenderer.java
rbbc2454 rf95100a 769 769 buf.append("<th colspan=\"2\"><b>" + _t("Router") + ":</b> <code>").append(hash).append("</code>\n"); 770 770 if (!full) { 771 buf.append("</th><th><a class=\"viewfullentry\" href=\"netdb?r=").append(hash.substring(0, 6)).append("\" >").append(_t("Full entry")).append("</a></th><th>");771 buf.append("</th><th><a title=\"View extended router info\" class=\"viewfullentry\" href=\"netdb?r=").append(hash.substring(0, 6)).append("\" >[").append(_t("Full entry")).append("]</a></th><th>"); 772 772 } 773 773 buf.append("<img src=\"/imagegen/id?s=32&c=" + hash.replace("=", "%3d") + "\" height=\"32\" width=\"32\"> "); -
apps/routerconsole/java/src/net/i2p/router/web/TunnelRenderer.java
rbbc2454 rf95100a 34 34 35 35 public void renderStatusHTML(Writer out) throws IOException { 36 out.write("<h3 class=\"tabletitle\" id=\"exploratorytunnels\"><a name=\"exploratory\" ></a>" + _t("Exploratory tunnels") + " (<a href=\"/configtunnels#exploratory\">" + _t("configure") + "</a>)</h3>\n");36 out.write("<h3 class=\"tabletitle\" id=\"exploratorytunnels\"><a name=\"exploratory\" ></a>" + _t("Exploratory tunnels") + " <a href=\"/configtunnels#exploratory\" title=\"" + _t("Configure tunnels") + "\">[" + _t("configure") + "]</a></h3>\n"); 37 37 renderPool(out, _context.tunnelManager().getInboundExploratoryPool(), _context.tunnelManager().getOutboundExploratoryPool()); 38 38 … … 58 58 + "\" ></a>" + _t("Client tunnels for") + ' ' + DataHelper.escapeHTML(_t(name))); 59 59 if (isLocal) 60 out.write(" (<a href=\"/configtunnels#" + client.toBase64().substring(0,4) +"\">" + _t("configure") + "</a>)</h3>\n");60 out.write(" <a href=\"/configtunnels#" + client.toBase64().substring(0,4) +"\" title=\"" + _t("Configure tunnels for session") + "\">[" + _t("configure") + "]</a></h3>\n"); 61 61 else 62 62 out.write(" (" + _t("dead") + ")</h3>\n"); -
apps/routerconsole/jsp/config.jsp
rbbc2454 rf95100a 26 26 <input type="hidden" name="ratesOnly" value="1" > 27 27 28 <h3 id="bwlimiter" class="tabletitle"><%=intl._t("Bandwidth limiter")%></h3>28 <h3 id="bwlimiter" class="tabletitle"><%=intl._t("Bandwidth Limiter")%> <a href="confignet">[<%=intl._t("Advanced Network Configuration")%>]</a></h3> 29 29 <table id="bandwidthconfig" class="configtable"> 30 30 <tr><td class="infohelp" colspan="2"> … … 77 77 } 78 78 %></td></tr> 79 <tr><td colspan="2">80 <a href="confignet"><%=intl._t("Advanced network configuration page")%></a>81 </td></tr>82 79 <tr><td class="optionsave" colspan="2"> 83 80 <input type="reset" class="cancel" value="<%=intl._t("Cancel")%>" > -
apps/routerconsole/jsp/configadvanced.jsp
rbbc2454 rf95100a 57 57 </form> 58 58 59 <h3 id="advancedconfig" class="tabletitle"><%=intl._t("Advanced I2P Configuration")%> </h3><b>59 <h3 id="advancedconfig" class="tabletitle"><%=intl._t("Advanced I2P Configuration")%> <a title="Help with additional configuration settings" href="/help#advancedsettings">[Additional Options]</a></h3><b> 60 60 <% if (advancedhelper.isAdvanced()) { %> 61 61 <form action="" method="POST"> -
apps/routerconsole/jsp/configlogging.jsp
rbbc2454 rf95100a 23 23 <input type="hidden" name="nonce" value="<%=pageNonce%>" > 24 24 <input type="hidden" name="action" value="blah" > 25 <h3 class="tabletitle"><%=intl._t("Configure I2P Logging Options")%> </h3>25 <h3 class="tabletitle"><%=intl._t("Configure I2P Logging Options")%> <a title="<%=intl._t("View Router Logs")%>" href="/logs">[<%=intl._t("View Logs")%>]</a></h3> 26 26 <table id="loggingoptions" border="0" cellspacing="5"> 27 27 <tr><td class="mediumtags" align="right"><b><%=intl._t("Log file")%>:</b></td> -
apps/routerconsole/jsp/confignet.jsp
rbbc2454 rf95100a 23 23 <input type="hidden" name="nonce" value="<%=pageNonce%>" > 24 24 <input type="hidden" name="action" value="blah" > 25 <h3 id="iptransport" class="tabletitle"><%=intl._t("IP and Transport Configuration")%> </h3>25 <h3 id="iptransport" class="tabletitle"><%=intl._t("IP and Transport Configuration")%> <a title="<%=intl._t("Help with router configuration")%>" href="/help#configurationhelp">[<%=intl._t("Configuration Help")%>]</a></h3> 26 26 <table id="netconfig" class="configtable"> 27 27 <tr> 28 28 <td class="infohelp"> 29 <b><%=intl._t("The default settings will work for most people.")%> 30 <a href="#chelp"><%=intl._t("There is help below.")%></a></b> 29 <b><%=intl._t("The default settings will work for most people.")%></b> 31 30 <%=intl._t("Changing these settings will restart your router.")%> 32 31 </td> 33 32 </tr> 34 33 <tr> 35 <td class="infowarn"> 36 <b><%=intl._t("Do not reveal your port numbers to anyone as they can be used to discover your ip address.")%></b> 37 </td> 38 </tr> 39 <tr> 40 <th id="upnpconfig"><%=intl._t("UPnP Configuration")%></th> 34 <th id="upnpconfig"><%=intl._t("UPnP Configuration")%> <a href="peers#upnp">[<%=intl._t("UPnP Status")%>]</a></th> 41 35 </tr> 42 36 <tr> 43 37 <td> 44 38 <input type="checkbox" class="optbox" name="upnp" value="true" <jsp:getProperty name="nethelper" property="upnpChecked" /> > 45 <%=intl._t("Enable UPnP to open firewall ports")%> - <a href="peers#upnp"><%=intl._t("UPnP status")%></a>39 <%=intl._t("Enable UPnP to open firewall ports")%> 46 40 </td> 47 41 </tr> … … 106 100 <tr> 107 101 <th id="udpconfig"><%=intl._t("UDP Configuration")%></th> 102 </tr> 103 <tr> 104 <td class="infowarn"> 105 <b><%=intl._t("Do not reveal your port numbers to anyone as they can be used to discover your ip address.")%></b> 106 </td> 108 107 </tr> 109 108 <tr> -
apps/routerconsole/jsp/configservice.jsp
rbbc2454 rf95100a 69 69 <% } %> 70 70 71 <h3 class="ptitle" id="servicedebug"><%=intl._t("Debugging")%> </h3>71 <h3 class="ptitle" id="servicedebug"><%=intl._t("Debugging")%> <a href="/jobs">[<%=intl._t("View the job queue")%>]</a></h3> 72 72 <% if (System.getProperty("wrapper.version") != null) { %> 73 73 <p class="infohelp"> 74 74 <%=intl._t("At times, it may be helpful to debug I2P by getting a thread dump. To do so, please select the following option and review the thread dumped to <a href=\"logs.jsp#servicelogs\">wrapper.log</a>.")%></p> 75 <p><a href="/jobs">76 <%=intl._t("View the job queue")%></a>77 75 <hr> 78 76 <% } %> -
apps/routerconsole/jsp/configstats.jsp
rbbc2454 rf95100a 111 111 } // shouldShowLog 112 112 113 %> <td align="center"><b ><%=intl._t("Graph")%></b></td>113 %> <td align="center"><b title="<%=intl._t("Select stats for visualization on /graphs")%>"><%=intl._t("Graph")%></b></td> 114 114 <td></td></tr> 115 115 <% -
apps/routerconsole/jsp/help.jsp
rbbc2454 rf95100a 30 30 <jsp:setProperty name="contenthelper" property="startAtBeginning" value="true" /> 31 31 <jsp:getProperty name="contenthelper" property="textContent" /> 32 <p id="fullhistory"><a href="/history.txt" >View the full change log</a></p>32 <p id="fullhistory"><a href="/history.txt" target="_blank">View the full change log</a></p> 33 33 </div> 34 34 -
apps/routerconsole/jsp/home.jsp
rbbc2454 rf95100a 98 98 %> 99 99 <div class="search"> 100 <form action="/search.jsp" method="POST">100 <form action="/search.jsp" target="_blank" method="POST"> 101 101 <table class="search"><tr><td align="right"> 102 102 <input size="40" type="text" class="search" name="query" /> -
apps/routerconsole/jsp/logs.jsp
rbbc2454 rf95100a 65 65 </tbody></table> 66 66 67 <h3 class="tabletitle"><%=intl._t("Router Logs")%> (<a href="configlogging"><%=intl._t("configure")%></a>)</h3>67 <h3 class="tabletitle"><%=intl._t("Router Logs")%> <a title="<%=intl._t("Configure router logging options")%>" href="configlogging">[<%=intl._t("Configure")%>]</a></h3> 68 68 <table id="routerlogs" class="logtable"><tbody> 69 69 <tr><td> -
apps/susidns/src/jsp/addressbook.jsp
rbbc2454 rf95100a 113 113 <a href="addressbook?filter=none&begin=0&end=49"><%=intl._t("all")%></a></p> 114 114 <c:if test="${book.hasFilter}"> 115 <p><%=intl._t("Current filter")%>: ${book.filter}116 (<a href="addressbook?filter=none&begin=0&end=49"><%=intl._t("clear filter")%></a>)</p>115 <p><%=intl._t("Current filter")%>: <b>${book.filter}</b> 116 <a href="addressbook?filter=none&begin=0&end=49"><%=intl._t("clear filter")%></a></p> 117 117 </c:if> 118 118 </div>
Note: See TracChangeset
for help on using the changeset viewer.