2009-07-06 16:18:42 +00:00
|
|
|
<%@page contentType="text/html"%>
|
2012-01-10 13:21:35 +00:00
|
|
|
<%@page trimDirectiveWhitespaces="true"%>
|
2004-07-24 02:06:07 +00:00
|
|
|
<%@page pageEncoding="UTF-8"%>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2009-10-26 21:48:46 +00:00
|
|
|
<%
|
|
|
|
/*
|
|
|
|
* Do not tag this file for translation - copy it to help_xx.jsp and translate inline.
|
|
|
|
*/
|
|
|
|
%>
|
2009-08-15 16:08:33 +00:00
|
|
|
<html><head><title>I2P Router Console - help</title>
|
2009-11-21 13:33:57 +00:00
|
|
|
<%@include file="css.jsi" %>
|
2012-06-05 13:37:10 +00:00
|
|
|
<script src="/js/ajax.js" type="text/javascript"></script>
|
2012-07-17 00:47:08 +00:00
|
|
|
<%@include file="summaryajax.jsi" %>
|
2012-06-05 13:37:10 +00:00
|
|
|
</head><body onload="initAjax()">
|
2009-11-21 13:33:57 +00:00
|
|
|
<%@include file="summary.jsi" %>
|
2011-05-25 16:52:52 +00:00
|
|
|
<h1>I2P Router Help & Support</h1>
|
2017-05-14 05:37:35 +00:00
|
|
|
<div class="main" id="help">
|
|
|
|
|
|
|
|
<div class="confignav">
|
|
|
|
<span class="tab"><a href="#sidebarhelp">Sidebar</a></span>
|
|
|
|
<span class="tab"><a href="#configurationhelp">Configuration</a></span>
|
|
|
|
<span class="tab"><a href="#reachabilityhelp">Reachability</a></span>
|
|
|
|
<span class="tab"><a href="#advancedsettings">Advanced Settings</a></span>
|
|
|
|
<span class="tab"><a href="#faq">FAQ</a></span>
|
|
|
|
<span class="tab"><a href="#legal">Legal</a></span>
|
|
|
|
<span class="tab"><a href="#changelog">Change Log</a></span>
|
|
|
|
</div>
|
2004-08-31 03:31:18 +00:00
|
|
|
|
2016-05-01 03:24:25 +00:00
|
|
|
<div id="volunteer"><%@include file="help.jsi" %></div>
|
|
|
|
<div id="sidebarhelp"><%@include file="help-sidebar.jsi" %></div>
|
|
|
|
<div id="configurationhelp"><%@include file="help-configuration.jsi" %></div>
|
|
|
|
<div id="reachabilityhelp"><%@include file="help-reachability.jsi" %></div>
|
2016-05-23 12:46:18 +00:00
|
|
|
<div id="advancedsettings"><%@include file="help-advancedsettings.jsi" %></div>
|
2017-05-14 05:37:35 +00:00
|
|
|
<div id="faq"><%@include file="help-faq.jsi" %></div>
|
2016-05-01 03:24:25 +00:00
|
|
|
<div id="legal"><%@include file="help-legal.jsi" %></div>
|
|
|
|
<div id="changelog">
|
2010-12-31 13:12:40 +00:00
|
|
|
<h2>Change Log</h2>
|
2004-09-03 19:46:07 +00:00
|
|
|
<jsp:useBean class="net.i2p.router.web.ContentHelper" id="contenthelper" scope="request" />
|
2009-07-17 16:55:00 +00:00
|
|
|
<% java.io.File fpath = new java.io.File(net.i2p.I2PAppContext.getGlobalContext().getBaseDir(), "history.txt"); %>
|
2009-06-06 15:36:06 +00:00
|
|
|
<jsp:setProperty name="contenthelper" property="page" value="<%=fpath.getAbsolutePath()%>" />
|
2017-07-11 03:31:55 +00:00
|
|
|
<jsp:setProperty name="contenthelper" property="maxLines" value="512" />
|
2004-11-25 21:57:19 +00:00
|
|
|
<jsp:setProperty name="contenthelper" property="startAtBeginning" value="true" />
|
2004-09-03 19:46:07 +00:00
|
|
|
<jsp:getProperty name="contenthelper" property="textContent" />
|
2016-05-23 11:02:10 +00:00
|
|
|
<p id="fullhistory"><a href="/history.txt" target="_blank">View the full change log</a></p>
|
2016-05-01 03:24:25 +00:00
|
|
|
</div>
|
2009-08-15 16:08:33 +00:00
|
|
|
|
2016-05-01 03:24:25 +00:00
|
|
|
</div></body></html>
|