From a09205441709bfff410cc33e90af49c3971fabfb Mon Sep 17 00:00:00 2001 From: str4d <str4d@mail.i2p> Date: Sun, 22 Jan 2012 02:44:51 +0000 Subject: [PATCH] Formatting and comments in JSP code --- apps/i2ptunnel/jsp/wizard.jsp | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/apps/i2ptunnel/jsp/wizard.jsp b/apps/i2ptunnel/jsp/wizard.jsp index 846e83b19a..96a205d095 100644 --- a/apps/i2ptunnel/jsp/wizard.jsp +++ b/apps/i2ptunnel/jsp/wizard.jsp @@ -78,11 +78,13 @@ </div><% } else { %><input type="hidden" name="isClient" value="<%=tunnelIsClient%>" /><% - } %> + } /* curPage 1 */ %> - <% if (curPage == 2) { + <% + if (curPage == 2) { %><div id="typeField" class="rowItem"> - <% if (tunnelIsClient) { + <% + if (tunnelIsClient) { %><select name="type"> <option value="client"><%=intl._("Standard")%></option> <option value="httpclient">HTTP</option> @@ -100,13 +102,14 @@ <option value="ircserver">IRC</option> <option value="streamrserver">Streamr</option> </select><% - } %> + } /* tunnelIsClient */ %> </div><% } else { %><input type="hidden" name="type" value="<%=wizardBean.getType()%>" /><% - } %> + } /* curPage 2 */ %> - <% if (curPage == 3) { + <% + if (curPage == 3) { %><div id="nameField" class="rowItem"> <label for="name" accesskey="N"> <%=intl._("Name")%>:(<span class="accessKey">N</span>) @@ -122,7 +125,7 @@ } else { %><input type="hidden" name="name" value="<%=wizardBean.getName()%>" /> <input type="hidden" name="description" value="<%=wizardBean.getDescription()%>" /><% - } %> + } /* curPage 3 */ %> </div> <div id="globalOperationsPanel" class="panel"> -- GitLab