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>
|
2016-04-18 04:12:15 +00:00
|
|
|
<div class="main" id="help"><p>
|
2004-08-31 03:31:18 +00:00
|
|
|
|
2013-11-01 11:00:37 +00:00
|
|
|
<%@include file="help.jsi" %>
|
|
|
|
<%@include file="help-legal.jsi" %>
|
|
|
|
<%@include file="help-sidebar.jsi" %>
|
2004-09-03 19:46:07 +00:00
|
|
|
|
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()%>" />
|
2009-07-15 01:59:41 +00:00
|
|
|
<jsp:setProperty name="contenthelper" property="maxLines" value="256" />
|
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" />
|
2009-08-15 16:08:33 +00:00
|
|
|
|
2010-12-31 13:12:40 +00:00
|
|
|
<p><a href="/history.txt">View the full change log</a>
|
2009-08-21 00:27:32 +00:00
|
|
|
</p><hr></div></body></html>
|