I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit af84bcf9 authored by zzz's avatar zzz
Browse files

i2ptunnel:

 - Show destination for persistent client key only if available;
   show b32 for the key as well
parent 3dc42941
No related branches found
No related tags found
No related merge requests found
...@@ -414,13 +414,20 @@ input.default { width: 1px; height: 1px; visibility: hidden; } ...@@ -414,13 +414,20 @@ input.default { width: 1px; height: 1px; visibility: hidden; }
<label><%=intl._("File")%>:</label> <label><%=intl._("File")%>:</label>
<input type="text" size="30" id="clientHost" name="privKeyFile" title="Path to Private Key File" value="<%=editBean.getPrivateKeyFile(curTunnel)%>" class="freetext" /> <input type="text" size="30" id="clientHost" name="privKeyFile" title="Path to Private Key File" value="<%=editBean.getPrivateKeyFile(curTunnel)%>" class="freetext" />
</div> </div>
<div id="destinationField" class="rowItem"> <%
<label for="localDestination" accesskey="L"> String destb64 = editBean.getDestinationBase64(curTunnel);
<%=intl._("Local destination")%>(<span class="accessKey">L</span>): if (destb64.length() > 0) {
</label> %> <div id="destinationField" class="rowItem">
<textarea rows="1" style="height: 3em;" cols="60" readonly="readonly" id="localDestination" title="Read Only: Local Destination (if known)" wrap="off" spellcheck="false"><%=editBean.getDestinationBase64(curTunnel)%></textarea> <label for="localDestination" accesskey="L">
<span class="comment"><%=intl._("(if known)")%></span> <%=intl._("Local destination")%>(<span class="accessKey">L</span>):
</div> </label>
<textarea rows="1" style="height: 3em;" cols="60" readonly="readonly" id="localDestination" title="Read Only: Local Destination (if known)" wrap="off" spellcheck="false"><%=destb64%></textarea>
</div>
<div id="destinationField" class="rowItem">
<label><%=intl._("Local Base 32")%>:</label>
<%=editBean.getDestHashBase32(curTunnel)%>.b32.i2p
</div>
<% } // if destb64 %>
<div class="subdivider"> <div class="subdivider">
<hr /> <hr />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment