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

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

Don't display page 4 for server tunnels (tunnel destination)

parent 7c703783
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
<jsp:useBean class="net.i2p.i2ptunnel.web.WizardBean" id="wizardBean" scope="request" /> <jsp:useBean class="net.i2p.i2ptunnel.web.WizardBean" id="wizardBean" scope="request" />
<jsp:useBean class="net.i2p.i2ptunnel.web.Messages" id="intl" scope="request" /> <jsp:useBean class="net.i2p.i2ptunnel.web.Messages" id="intl" scope="request" />
<% String pageStr = request.getParameter("page"); <% String pageStr = request.getParameter("page");
/* Get the number of the page we came from */
int lastPage = 0; int lastPage = 0;
if (pageStr != null) { if (pageStr != null) {
try { try {
...@@ -19,6 +20,7 @@ ...@@ -19,6 +20,7 @@
lastPage = 0; lastPage = 0;
} }
} }
/* Determine what page to display now */
int curPage = 1; int curPage = 1;
if ("Previous page".equals(request.getParameter("action"))) { if ("Previous page".equals(request.getParameter("action"))) {
curPage = lastPage - 1; curPage = lastPage - 1;
...@@ -28,8 +30,17 @@ ...@@ -28,8 +30,17 @@
if (curPage > 7 || curPage <= 0) { if (curPage > 7 || curPage <= 0) {
curPage = 1; curPage = 1;
} }
/* Fetch and format a couple of regularly-used values */
boolean tunnelIsClient = Boolean.valueOf(request.getParameter("isClient")); boolean tunnelIsClient = Boolean.valueOf(request.getParameter("isClient"));
String tunnelType = request.getParameter("type"); String tunnelType = request.getParameter("type");
/* Special case - don't display page 4 for server tunnels */
if (curPage == 4 && !tunnelIsClient) {
if ("Previous page".equals(request.getParameter("action"))) {
curPage = curPage - 1;
} else {
curPage = curPage + 1;
}
}
%> %>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head> <head>
......
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