forked from I2P_Developers/i2p.i2p
95 lines
3.9 KiB
Plaintext
95 lines
3.9 KiB
Plaintext
<%
|
|
/*
|
|
* Created on Sep 02, 2005
|
|
*
|
|
* This file is part of susidns project, see http://susi.i2p/
|
|
*
|
|
* Copyright (C) 2005 <susi23@mail.i2p>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* $Revision: 1.2 $
|
|
*/
|
|
|
|
// http://www.crazysquirrel.com/computing/general/form-encoding.jspx
|
|
if (request.getCharacterEncoding() == null)
|
|
request.setCharacterEncoding("UTF-8");
|
|
|
|
%>
|
|
<%@page pageEncoding="UTF-8"%>
|
|
<%@page trimDirectiveWhitespaces="true"%>
|
|
<%@ page contentType="text/html"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
<jsp:useBean id="version" class="i2p.susi.dns.VersionBean" scope="application" />
|
|
<jsp:useBean id="intl" class="i2p.susi.dns.Messages" scope="application" />
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title><%=intl._("Introduction")%> - SusiDNS</title>
|
|
<link rel="stylesheet" type="text/css" href="css.css">
|
|
</head>
|
|
<body>
|
|
<div class="page">
|
|
<div id="logo">
|
|
<img src="images/logo.png" alt="susidns logo" border="0">
|
|
</div>
|
|
<hr>
|
|
<div id="navi">
|
|
<p>
|
|
<%=intl._("Address books")%>:
|
|
<a href="addressbook?book=private"><%=intl._("private")%></a> |
|
|
<a href="addressbook?book=master"><%=intl._("master")%></a> |
|
|
<a href="addressbook?book=router"><%=intl._("router")%></a> |
|
|
<a href="addressbook?book=published"><%=intl._("published")%></a> *
|
|
<a href="subscriptions"><%=intl._("Subscriptions")%></a> *
|
|
<a href="config"><%=intl._("Configuration")%></a> *
|
|
<%=intl._("Overview")%>
|
|
</p>
|
|
</div>
|
|
<hr>
|
|
<div id="content">
|
|
<h3><%=intl._("What is the addressbook?")%></h3>
|
|
<p>
|
|
<%=intl._("The addressbook application is part of your I2P installation.")%>
|
|
<%=intl._("It regularly updates your hosts.txt file from distributed sources or \"subscriptions\".")%>
|
|
</p>
|
|
<p>
|
|
<%=intl._("In the default configuration, the address book is only subscribed to www.i2p2.i2p.")%>
|
|
<%=intl._("Subscribing to additional sites is easy, just add them to your <a href=\"subscriptions\">subscriptions</a> file.")%>
|
|
</p>
|
|
<p>
|
|
<%=intl._("For more information on naming in I2P, see <a href=\"http://www.i2p2.i2p/naming.html\">the overview on www.i2p2.i2p</a>.")%>
|
|
</p>
|
|
<h3><%=intl._("How does the addressbook application work?")%></h3>
|
|
<p>
|
|
<%=intl._("The addressbook application regularly polls your subscriptions and merges their content into your \"router\" address book.")%>
|
|
<%=intl._("Then it merges your \"master\" address book into the router address book as well.")%>
|
|
<%=intl._("If configured, the router address book is now written to the \"published\" address book, which will be publicly available if you are running an eepsite.")%>
|
|
</p><p>
|
|
<%=intl._("The router also uses a private address book (not shown in the picture), which is not merged or published.")%>
|
|
<%=intl._("Hosts in the private address book can be accessed by you but their addresses are never distributed to others.")%>
|
|
<%=intl._("The private address book can also be used for aliases of hosts in your other address books.")%>
|
|
</p>
|
|
<center><img src="images/how.png" border="0" alt="address book working scheme" title="How the address book works" class="illustrate" /></center>
|
|
</div>
|
|
<hr>
|
|
<div id="footer">
|
|
<p class="footer">susidns v${version.version} © <a href="${version.url}">susi</a> 2005</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|