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

Skip to content
Snippets Groups Projects
Commit a0920544 authored by str4d's avatar str4d
Browse files

Formatting and comments in JSP code

parent e0b70375
No related branches found
No related tags found
No related merge requests found
...@@ -78,11 +78,13 @@ ...@@ -78,11 +78,13 @@
</div><% </div><%
} else { } else {
%><input type="hidden" name="isClient" value="<%=tunnelIsClient%>" /><% %><input type="hidden" name="isClient" value="<%=tunnelIsClient%>" /><%
} %> } /* curPage 1 */ %>
<% if (curPage == 2) { <%
if (curPage == 2) {
%><div id="typeField" class="rowItem"> %><div id="typeField" class="rowItem">
<% if (tunnelIsClient) { <%
if (tunnelIsClient) {
%><select name="type"> %><select name="type">
<option value="client"><%=intl._("Standard")%></option> <option value="client"><%=intl._("Standard")%></option>
<option value="httpclient">HTTP</option> <option value="httpclient">HTTP</option>
...@@ -100,13 +102,14 @@ ...@@ -100,13 +102,14 @@
<option value="ircserver">IRC</option> <option value="ircserver">IRC</option>
<option value="streamrserver">Streamr</option> <option value="streamrserver">Streamr</option>
</select><% </select><%
} %> } /* tunnelIsClient */ %>
</div><% </div><%
} else { } else {
%><input type="hidden" name="type" value="<%=wizardBean.getType()%>" /><% %><input type="hidden" name="type" value="<%=wizardBean.getType()%>" /><%
} %> } /* curPage 2 */ %>
<% if (curPage == 3) { <%
if (curPage == 3) {
%><div id="nameField" class="rowItem"> %><div id="nameField" class="rowItem">
<label for="name" accesskey="N"> <label for="name" accesskey="N">
<%=intl._("Name")%>:(<span class="accessKey">N</span>) <%=intl._("Name")%>:(<span class="accessKey">N</span>)
...@@ -122,7 +125,7 @@ ...@@ -122,7 +125,7 @@
} else { } else {
%><input type="hidden" name="name" value="<%=wizardBean.getName()%>" /> %><input type="hidden" name="name" value="<%=wizardBean.getName()%>" />
<input type="hidden" name="description" value="<%=wizardBean.getDescription()%>" /><% <input type="hidden" name="description" value="<%=wizardBean.getDescription()%>" /><%
} %> } /* curPage 3 */ %>
</div> </div>
<div id="globalOperationsPanel" class="panel"> <div id="globalOperationsPanel" class="panel">
......
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