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

Skip to content
Snippets Groups Projects
Commit 48f591ee authored by z3d's avatar z3d
Browse files

Add some <hr>'s in some places.

parent cb6dce4e
No related branches found
No related tags found
No related merge requests found
...@@ -179,7 +179,7 @@ ...@@ -179,7 +179,7 @@
<li>Bugs in the device's UPnP implementation <li>Bugs in the device's UPnP implementation
<li>Multiple firewall/routers in the internet connection path <li>Multiple firewall/routers in the internet connection path
<li>UPnP device change, reset, or address change <li>UPnP device change, reset, or address change
</ul> </ul><br>
Reviewing the <a href="peers.jsp#upnp">UPnP status</a> may help. Reviewing the <a href="peers.jsp#upnp">UPnP status</a> may help.
UPnP may be enabled or disabled above, but a change requires a router restart to take effect. UPnP may be enabled or disabled above, but a change requires a router restart to take effect.
</p><p>Hostnames entered above will be published in the network database. </p><p>Hostnames entered above will be published in the network database.
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
<input type="submit" name="action" value="Shutdown gracefully" /> <input type="submit" name="action" value="Shutdown gracefully" />
<input type="submit" name="action" value="Shutdown immediately" /> <input type="submit" name="action" value="Shutdown immediately" />
<input type="submit" name="action" value="Cancel graceful shutdown" /> <input type="submit" name="action" value="Cancel graceful shutdown" />
<hr>
<% if (System.getProperty("wrapper.version") != null) { %> <% if (System.getProperty("wrapper.version") != null) { %>
<p>If you want the router to restart itself after shutting down, you can choose one of <p>If you want the router to restart itself after shutting down, you can choose one of
the following. This is useful in some situations - for example, if you changed the following. This is useful in some situations - for example, if you changed
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<input type="submit" name="action" value="Graceful restart" /> <input type="submit" name="action" value="Graceful restart" />
<input type="submit" name="action" value="Hard restart" /> <input type="submit" name="action" value="Hard restart" />
<% } %> <% } %>
<hr>
<% if ( (System.getProperty("os.name") != null) && (System.getProperty("os.name").startsWith("Win")) ) { %> <% if ( (System.getProperty("os.name") != null) && (System.getProperty("os.name").startsWith("Win")) ) { %>
<h4>Systray integration</h4> <h4>Systray integration</h4>
<p>On the windows platform, there is a small application to sit in the system <p>On the windows platform, there is a small application to sit in the system
...@@ -52,6 +52,7 @@ ...@@ -52,6 +52,7 @@
If you are on windows, you can either enable or disable that icon here.</p> If you are on windows, you can either enable or disable that icon here.</p>
<input type="submit" name="action" value="Show systray icon" /> <input type="submit" name="action" value="Show systray icon" />
<input type="submit" name="action" value="Hide systray icon" /> <input type="submit" name="action" value="Hide systray icon" />
<hr>
<h4>Run on startup</h4> <h4>Run on startup</h4>
<p>You can control whether I2P is run on startup or not by selecting one of the <p>You can control whether I2P is run on startup or not by selecting one of the
following options - I2P will install (or remove) a service accordingly. You can following options - I2P will install (or remove) a service accordingly. You can
...@@ -61,7 +62,7 @@ ...@@ -61,7 +62,7 @@
<input type="submit" name="action" value="Don't run I2P on startup" /><br /> <input type="submit" name="action" value="Don't run I2P on startup" /><br />
<p><b>Note:</b> If you are running I2P as service right now, removing it will shut <p><b>Note:</b> If you are running I2P as service right now, removing it will shut
down your router immediately. You may want to consider shutting down gracefully, as down your router immediately. You may want to consider shutting down gracefully, as
above, then running uninstall_i2p_service_winnt.bat.</p> above, then running uninstall_i2p_service_winnt.bat.</p><hr>
<% } %> <% } %>
<% if (System.getProperty("wrapper.version") != null) { %> <% if (System.getProperty("wrapper.version") != null) { %>
...@@ -70,7 +71,7 @@ ...@@ -70,7 +71,7 @@
please select the following option and review the thread dumped to please select the following option and review the thread dumped to
<a href="logs.jsp#servicelogs">wrapper.log</a>.</p> <a href="logs.jsp#servicelogs">wrapper.log</a>.</p>
<input type="submit" name="action" value="Dump threads" /> <input type="submit" name="action" value="Dump threads" />
<% } %> <% } %><hr>
<h4>Launch browser on router startup?</h4> <h4>Launch browser on router startup?</h4>
<p>I2P's main configuration interface is this web console, so for your convenience <p>I2P's main configuration interface is this web console, so for your convenience
...@@ -79,7 +80,7 @@ ...@@ -79,7 +80,7 @@
the router starts up.</p> the router starts up.</p>
<input type="submit" name="action" value="View console on startup" /> <input type="submit" name="action" value="View console on startup" />
<input type="submit" name="action" value="Do not view console on startup" /> <input type="submit" name="action" value="Do not view console on startup" />
</form> </form><hr>
</div> </div>
</body> </body>
......
...@@ -27,7 +27,7 @@ if (System.getProperty("router.consoleNonce") == null) { ...@@ -27,7 +27,7 @@ if (System.getProperty("router.consoleNonce") == null) {
<jsp:useBean class="net.i2p.router.web.ConfigUpdateHelper" id="updatehelper" scope="request" /> <jsp:useBean class="net.i2p.router.web.ConfigUpdateHelper" id="updatehelper" scope="request" />
<jsp:setProperty name="updatehelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" /> <jsp:setProperty name="updatehelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
<br /><i><font size="-1"><jsp:getProperty name="updatehelper" property="newsStatus" /></font></i><br /> <hr /><i><jsp:getProperty name="updatehelper" property="newsStatus" /></i><br />
</div> </div>
<div class="main" id="main"> <div class="main" id="main">
......
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