Whitespace rationalization; theme enhancements; draft itoopie graphic for proxy errors.
This commit is contained in:
@ -10,7 +10,7 @@ public class LogsHelper extends HelperBase {
|
|||||||
|
|
||||||
public String getLogs() {
|
public String getLogs() {
|
||||||
String str = formatMessages(_context.logManager().getBuffer().getMostRecentMessages());
|
String str = formatMessages(_context.logManager().getBuffer().getMostRecentMessages());
|
||||||
return "Location: <code>" + _context.logManager().currentFile() + "</code><br><br>" + str;
|
return "Location: <b><code>" + _context.logManager().currentFile() + "</code></b><br><br>" + str;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCriticalLogs() {
|
public String getCriticalLogs() {
|
||||||
@ -34,7 +34,7 @@ public class LogsHelper extends HelperBase {
|
|||||||
return "";
|
return "";
|
||||||
else {
|
else {
|
||||||
str = str.replaceAll("<", "<").replaceAll(">", ">");
|
str = str.replaceAll("<", "<").replaceAll(">", ">");
|
||||||
return "Location:<code> " + f.getAbsolutePath() + "</code> <pre>" + str + "</pre>";
|
return "Location:<b><code> " + f.getAbsolutePath() + "</code></b> <pre>" + str + "</pre>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ public class StatsGenerator {
|
|||||||
buf.append("</i><br>");
|
buf.append("</i><br>");
|
||||||
}
|
}
|
||||||
if (rate.getLifetimeEventCount() <= 0) {
|
if (rate.getLifetimeEventCount() <= 0) {
|
||||||
buf.append("No lifetime events<br> <br>");
|
buf.append("No lifetime events<br>");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
long now = _context.clock().now();
|
long now = _context.clock().now();
|
||||||
|
@ -8,21 +8,21 @@
|
|||||||
<%@include file="summary.jsp" %>
|
<%@include file="summary.jsp" %>
|
||||||
<h1>I2P Router Logs</h1>
|
<h1>I2P Router Logs</h1>
|
||||||
<div class="main" id="main">
|
<div class="main" id="main">
|
||||||
<div class="joblog"><h3>Version:</h3><a name="version"> </a>
|
<div class="joblog"><h3>I2P Version & Running Environment</h3><a name="version"> </a>
|
||||||
Please include this information in bug reports.
|
<i>Please include this information in bug reports:</i>
|
||||||
<p>
|
<p>
|
||||||
I2P <jsp:getProperty name="helper" property="version" /><br>
|
I2P version: <b><jsp:getProperty name="helper" property="version" /></b><br>
|
||||||
<%=System.getProperty("java.vendor")%> <%=System.getProperty("java.version")%><br>
|
Java version: <b><%=System.getProperty("java.vendor")%> <%=System.getProperty("java.version")%></b><br>
|
||||||
<%=System.getProperty("os.name")%> <%=System.getProperty("os.arch")%> <%=System.getProperty("os.version")%><br>
|
Platform: <b><%=System.getProperty("os.name")%> <%=System.getProperty("os.arch")%> <%=System.getProperty("os.version")%></b><br>
|
||||||
CPU <%=net.i2p.util.NativeBigInteger.cpuModel()%> (<%=net.i2p.util.NativeBigInteger.cpuType()%>)<br>
|
Processor: <b><%=net.i2p.util.NativeBigInteger.cpuModel()%> (<%=net.i2p.util.NativeBigInteger.cpuType()%>)</b><br>
|
||||||
jbigi <%=net.i2p.util.NativeBigInteger.loadStatus()%><br>
|
Jbigi: <b><%=net.i2p.util.NativeBigInteger.loadStatus()%></b><br>
|
||||||
Encoding <%=System.getProperty("file.encoding")%><br></p><br>
|
Encoding: <b><%=System.getProperty("file.encoding")%></b></p>
|
||||||
<jsp:useBean class="net.i2p.router.web.LogsHelper" id="logsHelper" scope="request" />
|
<jsp:useBean class="net.i2p.router.web.LogsHelper" id="logsHelper" scope="request" />
|
||||||
<jsp:setProperty name="logsHelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
<jsp:setProperty name="logsHelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
||||||
<h3>Critical logs:</h3><a name="criticallogs"> </a>
|
<h3>Critical Logs</h3><a name="criticallogs"> </a>
|
||||||
<jsp:getProperty name="logsHelper" property="criticalLogs" /><br>
|
<jsp:getProperty name="logsHelper" property="criticalLogs" /><br>
|
||||||
<h3>Router logs (<a href="configlogging.jsp">configure</a>):</h3>
|
<h3>Router Logs [<a href="configlogging.jsp">configure</a>]</h3>
|
||||||
<jsp:getProperty name="logsHelper" property="logs" /><br>
|
<jsp:getProperty name="logsHelper" property="logs" /><br>
|
||||||
<h3>Service (Wrapper) logs:</h3><a name="servicelogs"> </a>
|
<h3>Service (Wrapper) Logs</h3><a name="servicelogs"> </a>
|
||||||
<jsp:getProperty name="logsHelper" property="serviceLogs" />
|
<jsp:getProperty name="logsHelper" property="serviceLogs" />
|
||||||
</div></div></body></html>
|
</div></div></body></html>
|
||||||
|
@ -12,4 +12,4 @@
|
|||||||
<h1>I2P Router Statistics</h1>
|
<h1>I2P Router Statistics</h1>
|
||||||
<div class="main" id="main">
|
<div class="main" id="main">
|
||||||
<jsp:getProperty name="oldhelper" property="stats" />
|
<jsp:getProperty name="oldhelper" property="stats" />
|
||||||
</div></body></html>
|
<hr></div></body></html>
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
<jsp:useBean class="net.i2p.router.web.ProfilesHelper" id="profilesHelper" scope="request" />
|
<jsp:useBean class="net.i2p.router.web.ProfilesHelper" id="profilesHelper" scope="request" />
|
||||||
<jsp:setProperty name="profilesHelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
<jsp:setProperty name="profilesHelper" property="contextId" value="<%=(String)session.getAttribute("i2p.contextId")%>" />
|
||||||
<jsp:getProperty name="profilesHelper" property="profileSummary" />
|
<jsp:getProperty name="profilesHelper" property="profileSummary" />
|
||||||
<br>
|
|
||||||
<a name="shitlist"> </a>
|
<a name="shitlist"> </a>
|
||||||
<jsp:getProperty name="profilesHelper" property="shitlistSummary" />
|
<jsp:getProperty name="profilesHelper" property="shitlistSummary" />
|
||||||
</div></div></body></html>
|
<hr></div></div></body></html>
|
||||||
|
@ -68,8 +68,8 @@ div.warning {
|
|||||||
border: 5px solid #fb7;
|
border: 5px solid #fb7;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
background-image:url("../images/errortriangle.png");
|
background-image:url("../images/itoopie_sm.png");
|
||||||
background-position: 17px center;
|
background-position: 12px center;
|
||||||
background-repeat:no-repeat;
|
background-repeat:no-repeat;
|
||||||
-moz-border-radius: 15px;
|
-moz-border-radius: 15px;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 2px #f60;
|
-moz-box-shadow: inset 0px 0px 0px 2px #f60;
|
||||||
@ -249,7 +249,7 @@ div.warning h3 {
|
|||||||
|
|
||||||
div.main {
|
div.main {
|
||||||
margin: 0px 0px 0px 195px;
|
margin: 0px 0px 0px 195px;
|
||||||
padding: 15px;
|
padding: 15px 15px 10px 15px;
|
||||||
background: #eef;
|
background: #eef;
|
||||||
border: 5px solid #bbf;
|
border: 5px solid #bbf;
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
@ -266,10 +266,12 @@ div.main ul {
|
|||||||
div.main li {
|
div.main li {
|
||||||
padding: 0 0 5px 0;
|
padding: 0 0 5px 0;
|
||||||
list-style: square;
|
list-style: square;
|
||||||
|
word-wrap: break-word;
|
||||||
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.main li:first-child {
|
div.main li:first-child {
|
||||||
padding-top: 5px;
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.main textarea {
|
div.main textarea {
|
||||||
@ -279,16 +281,17 @@ div.main textarea {
|
|||||||
|
|
||||||
div.news {
|
div.news {
|
||||||
margin: -5px 0px 0 195px;
|
margin: -5px 0px 0 195px;
|
||||||
padding: -10px 15px 8px 15px;
|
padding: -10px 0px 8px 0px;
|
||||||
background: #ffffc0;
|
background: #ffffc0;
|
||||||
border: 5px solid #bbf;
|
border: 5px solid #bbf;
|
||||||
text-align: justify;
|
text-align: right;
|
||||||
color: inherit;
|
color: #770;
|
||||||
min-width: 600px;
|
min-width: 600px;
|
||||||
padding-bottom: 8px;
|
padding-bottom: 8px;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #99f;
|
-moz-box-shadow: inset 0px 0px 0px 1px #99f;
|
||||||
|
font-size: 7pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* convert the list entry to our title */
|
/* convert the list entry to our title */
|
||||||
@ -296,25 +299,27 @@ div.news {
|
|||||||
div.news li {
|
div.news li {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
margin: -15px 15px -20px -20px;
|
margin: -15px 15px -30px -20px;
|
||||||
padding: 0px 0 15px 0;
|
padding: 0px 0 15px 0;
|
||||||
border-bottom: 5px solid #cc7;
|
border-bottom: 2px dotted #cc7;
|
||||||
border-top: 0px solid #cc7;
|
border-top: 0px solid #cc7;
|
||||||
padding: 3px 5px 5px 5px;
|
padding: 3px 5px 5px 5px;
|
||||||
font-size: 12pt;
|
font-size: 10pt;
|
||||||
color: #540;
|
color: #540;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news p {
|
div.news p {
|
||||||
color: #330;
|
color: #330;
|
||||||
|
font-size: 9pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news a:link {
|
div.news a:link {
|
||||||
color: #773;
|
color: #663;
|
||||||
text-shadow: 0px 0px 1px rgba(128, 128, 48, 0.3);
|
text-shadow: 0px 0px 1px rgba(128, 128, 48, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
div.news a:visited {
|
div.news a:visited {
|
||||||
color: #f00 !important;
|
color: #773 !important;
|
||||||
text-shadow: 0px 0px 1px rgba(128, 128, 48, 0.3);
|
text-shadow: 0px 0px 1px rgba(128, 128, 48, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -322,7 +327,7 @@ div.news hr {
|
|||||||
color: #cc7;
|
color: #cc7;
|
||||||
background: #cc7;
|
background: #cc7;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
border: 0px solid #cc7;
|
border: 0px solid #cccc77;
|
||||||
margin: 5px 0;
|
margin: 5px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -339,10 +344,14 @@ div.configure {
|
|||||||
padding: 0px 20px 0px 20px;
|
padding: 0px 20px 0px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.configure hr {
|
||||||
|
margin: 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
div.configure table {
|
div.configure table {
|
||||||
font-size: 9pt;
|
font-size: 9pt;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
-moz-box-shadow: inset 0px 0px 1px 1px #001;
|
border: 1px solid #bbf;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.configure tr, div.configure td {
|
div.configure tr, div.configure td {
|
||||||
@ -367,8 +376,8 @@ div.messages {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.messages li, div.messages ul {
|
div.messages li, div.messages ul {
|
||||||
padding: 15px 0 5px 5px;
|
padding: 10px 0 0 5px;
|
||||||
margin: -15px 0 0 0;
|
margin: -10px 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.messages span.error {
|
div.messages span.error {
|
||||||
@ -397,16 +406,16 @@ h1 {
|
|||||||
h2 {
|
h2 {
|
||||||
font-size: 14pt;
|
font-size: 14pt;
|
||||||
padding: 0px 10px 10px 10px;
|
padding: 0px 10px 10px 10px;
|
||||||
border-bottom: 5px solid #bbf;
|
border-bottom: 3px solid #aaf;
|
||||||
border-top: 0px solid #bbf;
|
border-top: 0px solid #aaf;
|
||||||
letter-spacing: 0.04em;
|
letter-spacing: 0.04em;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
padding: 0 10px 10px 10px;
|
padding: 0 10px 10px 10px;
|
||||||
border-bottom: 5px solid #bbf;
|
border-bottom: 3px solid #aaf;
|
||||||
border-top: 0px solid #bbf;
|
border-top: 0px solid #aaf;
|
||||||
letter-spacing: 0.04em;
|
letter-spacing: 0.04em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -417,7 +426,7 @@ h3 {
|
|||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border: 5px solid #bbf;
|
border: 1px solid #bbf;
|
||||||
margin: 0 0 5px 0;
|
margin: 0 0 5px 0;
|
||||||
cell-padding: 1px;
|
cell-padding: 1px;
|
||||||
font-size: 7.5pt;
|
font-size: 7.5pt;
|
||||||
@ -442,7 +451,7 @@ th {
|
|||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 8px 2px;
|
padding: 8px 2px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-bottom: 1px solid #88f;
|
border-bottom: 1px solid #bbf;
|
||||||
}
|
}
|
||||||
|
|
||||||
tt {
|
tt {
|
||||||
@ -466,11 +475,11 @@ tr:nth-child(odd) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
color: #bbf;
|
color: #aaf;
|
||||||
background: #bbf;
|
background: #aaf;
|
||||||
height: 5px;
|
height: 3px;
|
||||||
border: 0px solid #bbf;
|
border: 0px solid #aaf;
|
||||||
margin: 5px 0;
|
margin: 3px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.statusnotes {
|
.statusnotes {
|
||||||
@ -485,6 +494,53 @@ hr {
|
|||||||
padding: 4px 0 2px 0;
|
padding: 4px 0 2px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.joblog {
|
||||||
|
margin-top: -10px;
|
||||||
|
line-height: 130% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog:li {
|
||||||
|
word-wrap: break-word !important;
|
||||||
|
text-align: justify !important;
|
||||||
|
line-height: 80% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog:ul {
|
||||||
|
word-wrap: break-word !important;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog li:first-child {
|
||||||
|
margin-top: -10px;
|
||||||
|
}
|
||||||
|
div.joblog li:last-child {
|
||||||
|
margin-bottom: -10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog form:first-child {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog table {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog p {
|
||||||
|
line-height: 130%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog h3 {
|
||||||
|
margin: -5px 0 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog hr {
|
||||||
|
margin: 15px 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog ol {
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
margin: 3px 5px 3px 0;
|
margin: 3px 5px 3px 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
@ -565,7 +621,7 @@ tt {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tablefooter {
|
.tablefooter {
|
||||||
border: 1px solid #88f;
|
border: 1px solid #bbf;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tablefooter tr, .tablefooter td {
|
.tablefooter tr, .tablefooter td {
|
||||||
@ -575,11 +631,13 @@ tt {
|
|||||||
line-height: 150%;
|
line-height: 150%;
|
||||||
word-wrap: nowrap;
|
word-wrap: nowrap;
|
||||||
padding: 8px 1px;
|
padding: 8px 1px;
|
||||||
|
border-top: 2px solid #bbf;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tidylist {
|
.tidylist {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.graphspanel {
|
div.graphspanel {
|
||||||
@ -595,11 +653,12 @@ div.graphspanel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
div.graphspanel img {
|
div.graphspanel img {
|
||||||
border: 1px solid #99f;
|
border: 1px solid #77f;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
margin: 6px;
|
margin: 6px;
|
||||||
background: #ddf;
|
background: #ccf;
|
||||||
-moz-box-shadow: inset 0px 0px 1px 1px #99f;
|
-moz-box-shadow: inset 0px 0px 0px 0px #002;
|
||||||
|
opacity: 0.9;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.graphspanel img:hover {
|
div.graphspanel img:hover {
|
||||||
@ -609,10 +668,11 @@ div.graphspanel img:hover {
|
|||||||
text-align: center !important;
|
text-align: center !important;
|
||||||
background: #001;
|
background: #001;
|
||||||
-moz-box-shadow: inset 0px 0px 2px 1px #f60;
|
-moz-box-shadow: inset 0px 0px 2px 1px #f60;
|
||||||
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.graphspanel hr {
|
div.graphspanel hr {
|
||||||
margin: 20px 0;
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.graphspanel form {
|
div.graphspanel form {
|
||||||
@ -622,4 +682,5 @@ div.graphspanel form {
|
|||||||
|
|
||||||
div.graphspanel h3 {
|
div.graphspanel h3 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
margin: 10px 20px 10px 20px;
|
||||||
}
|
}
|
@ -214,8 +214,8 @@ div.warning {
|
|||||||
-khtml-border-radius: 4px;
|
-khtml-border-radius: 4px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
background-image:url("images/errortriangle.png");
|
background-image:url("../images/itoopie_sm.png");
|
||||||
background-position:15px center;
|
background-position:10px center;
|
||||||
background-repeat:no-repeat;
|
background-repeat:no-repeat;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #f00;
|
-moz-box-shadow: inset 0px 0px 0px 1px #f00;
|
||||||
-khtml-box-shadow: inset 0px 0px 0px 1px #f00;
|
-khtml-box-shadow: inset 0px 0px 0px 1px #f00;
|
||||||
@ -269,7 +269,7 @@ div.main textarea {
|
|||||||
|
|
||||||
div.news {
|
div.news {
|
||||||
margin: 15px 15px 15px 220px;
|
margin: 15px 15px 15px 220px;
|
||||||
padding: 20px 30px 20px 30px;
|
padding: 5px 30px 15px 30px;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
background: #004;
|
background: #004;
|
||||||
background-image: -moz-linear-gradient(top, bottom, from(#003), to(#005), color-stop(30%, #003), color-stop(100%, #001));
|
background-image: -moz-linear-gradient(top, bottom, from(#003), to(#005), color-stop(30%, #003), color-stop(100%, #001));
|
||||||
@ -287,12 +287,26 @@ div.news {
|
|||||||
div.news li {
|
div.news li {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
list-style: url('images/info_dark.png');
|
list-style: url('images/info_dark.png');
|
||||||
margin: 0 10px 0 30px;
|
margin: 0 10px 0 20px;
|
||||||
padding: 5px;
|
padding: 5px 5px 5px 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.news h4 {
|
||||||
|
border-bottom: 1px;
|
||||||
|
border-bottom-style: dotted;
|
||||||
|
border-bottom-color: #99f;
|
||||||
|
padding: 0 0 5px 0;
|
||||||
|
margin: 5px 0 10px 0;
|
||||||
|
font-size: 10pt;
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.news p {
|
||||||
|
margin-top: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
div.confignav {
|
div.confignav {
|
||||||
padding: 15px 10px !important;
|
padding: 15px 10px !important;
|
||||||
margin: 15px 0;
|
margin: 15px 0;
|
||||||
@ -792,8 +806,8 @@ form {}
|
|||||||
color: #eef;
|
color: #eef;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: 1px solid #99f !important;
|
border: 1px solid #99f !important;
|
||||||
border-top: 0px !important;
|
/* border-top: 0px !important;*/
|
||||||
margin: -5px 0 5px 0;
|
margin: -3px 0 5px 0;
|
||||||
padding: 7px;
|
padding: 7px;
|
||||||
background: #004;
|
background: #004;
|
||||||
-moz-box-shadow: inset 0px 0px 0px 1px #009;
|
-moz-box-shadow: inset 0px 0px 0px 1px #009;
|
||||||
@ -801,7 +815,7 @@ form {}
|
|||||||
box-shadow: inset 0px 0px 0px 1px #009;
|
box-shadow: inset 0px 0px 0px 1px #009;
|
||||||
}
|
}
|
||||||
|
|
||||||
.joblog {
|
div.joblog {
|
||||||
margin: 15px 0 15px 0;
|
margin: 15px 0 15px 0;
|
||||||
padding: 5px 20px 10px 20px !important;
|
padding: 5px 20px 10px 20px !important;
|
||||||
border: 1px solid #99f;
|
border: 1px solid #99f;
|
||||||
@ -811,7 +825,7 @@ form {}
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
-moz-border-radius: 4px;
|
-moz-border-radius: 4px;
|
||||||
-khtml-border-radius: 4px;
|
-khtml-border-radius: 4px;
|
||||||
text-align: justify;
|
text-align: justify !important;
|
||||||
-moz-box-shadow: inset 0px 0px 1px 0px #eef;
|
-moz-box-shadow: inset 0px 0px 1px 0px #eef;
|
||||||
-khtml-box-shadow: inset 0px 0px 1px 0px #eef;
|
-khtml-box-shadow: inset 0px 0px 1px 0px #eef;
|
||||||
box-shadow: inset 0px 0px 1px 0px #eef;
|
box-shadow: inset 0px 0px 1px 0px #eef;
|
||||||
@ -820,18 +834,34 @@ form {}
|
|||||||
|
|
||||||
div.joblog:li {
|
div.joblog:li {
|
||||||
word-wrap: break-word !important;
|
word-wrap: break-word !important;
|
||||||
text-align: justify;
|
text-align: justify !important;
|
||||||
|
line-height: 80% !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.joblog:ul {
|
div.joblog:ul {
|
||||||
word-wrap: break-word !important;
|
word-wrap: break-word !important;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.joblog li:first-child {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
div.joblog li:last-child {
|
||||||
|
margin-bottom: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
div.joblog form:first-child {
|
div.joblog form:first-child {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.joblog table {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog p {
|
||||||
|
line-height: 130%;
|
||||||
|
}
|
||||||
|
|
||||||
.smallhead {
|
.smallhead {
|
||||||
font-size: 7pt
|
font-size: 7pt
|
||||||
}
|
}
|
||||||
|
BIN
installer/resources/themes/console/images/itoopie_sm.png
Normal file
BIN
installer/resources/themes/console/images/itoopie_sm.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
@ -198,7 +198,7 @@ div.routersummarytr:nth-child(odd) {
|
|||||||
|
|
||||||
div.warning {
|
div.warning {
|
||||||
margin: 5px 20px 10px 240px;
|
margin: 5px 20px 10px 240px;
|
||||||
padding: 0px 25px 20px 75px;
|
padding: 5px 25px 20px 75px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 1px solid #002;
|
border: 1px solid #002;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
@ -207,11 +207,12 @@ div.warning {
|
|||||||
-khtml-border-radius: 4px;
|
-khtml-border-radius: 4px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
background-image:url("images/errortriangle.png");
|
background-image:url("../images/itoopie_sm.png");
|
||||||
background-position:15px center;
|
background-position:10px center;
|
||||||
background-repeat:no-repeat;
|
background-repeat:no-repeat;
|
||||||
-moz-box-shadow: inset 0px 0px 1px 0px #d00;
|
-moz-box-shadow: inset 0px 0px 1px 0px #d00;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
min-width: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* console error messages */
|
/* console error messages */
|
||||||
@ -803,7 +804,7 @@ form {}
|
|||||||
background: #bcf;
|
background: #bcf;
|
||||||
-moz-box-shadow: inset 0px 0px 2px 1px #eef;
|
-moz-box-shadow: inset 0px 0px 2px 1px #eef;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
.joblog {
|
.joblog {
|
||||||
margin: 15px 0;
|
margin: 15px 0;
|
||||||
padding: 10px 20px !important;
|
padding: 10px 20px !important;
|
||||||
@ -830,6 +831,56 @@ form {}
|
|||||||
.joblog table {
|
.joblog table {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
div.joblog {
|
||||||
|
margin: 15px 0;
|
||||||
|
padding: 10px 20px !important;
|
||||||
|
border: 1px solid #003;
|
||||||
|
background-color: #004;
|
||||||
|
background: #ddf url('images/lightbluetile.png');
|
||||||
|
color: #001;
|
||||||
|
border-radius: 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-khtml-border-radius: 4px;
|
||||||
|
text-align: justify;
|
||||||
|
-moz-box-shadow: inset 0px 0px 1px 0px #002;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog:li {
|
||||||
|
word-wrap: break-word !important;
|
||||||
|
text-align: justify !important;
|
||||||
|
line-height: 80% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog:ul {
|
||||||
|
word-wrap: break-word !important;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog li:first-child {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
div.joblog li:last-child {
|
||||||
|
margin-bottom: -10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog form:first-child {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog table {
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog p {
|
||||||
|
line-height: 130%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.joblog hr {
|
||||||
|
margin: 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
.smallhead {
|
.smallhead {
|
||||||
font-size: 7pt
|
font-size: 7pt
|
||||||
|
@ -14,7 +14,7 @@ up, you can:</p>
|
|||||||
<ul>
|
<ul>
|
||||||
<li><b>browse "eepsites"</b> - on I2P there are anonymously hosted websites
|
<li><b>browse "eepsites"</b> - on I2P there are anonymously hosted websites
|
||||||
- tell your browser to use the <b>HTTP proxy at 127.0.0.1 port 4444</b>, then
|
- tell your browser to use the <b>HTTP proxy at 127.0.0.1 port 4444</b>, then
|
||||||
browse to an eepsite:<br />
|
browse to an eepsite:<br>
|
||||||
<ul class="links">
|
<ul class="links">
|
||||||
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a>
|
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a>
|
||||||
and <a href="http://perv.i2p/stats.cgi">perv.i2p</a>: sites tracking active
|
and <a href="http://perv.i2p/stats.cgi">perv.i2p</a>: sites tracking active
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<p>Wenn Du gerade I2P gestartet hast, sollten die "Active:" Zahlen links in den nächsten paar Minuten anwachsen und Du siehst dann dort ein "shared clients" lokales Ziel gelistet (falls nicht, <a href="#trouble">siehe Unten</a>). Sobald das erscheint, kannst Du:</p>
|
<p>Wenn Du gerade I2P gestartet hast, sollten die "Active:" Zahlen links in den nächsten paar Minuten anwachsen und Du siehst dann dort ein "shared clients" lokales Ziel gelistet (falls nicht, <a href="#trouble">siehe Unten</a>). Sobald das erscheint, kannst Du:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tidylist"><b>"Eepsites" besuchen</b> - In I2P sind anonym gehostete Websites -
|
<li class="tidylist"><b>"Eepsites" besuchen</b> - In I2P sind anonym gehostete Websites -
|
||||||
Stelle Deinen Browser so ein, über den <b>HTTP proxy: 127.0.0.1 port 4444</b> zu surfen, dann besuche eine Eepsite:<br />
|
Stelle Deinen Browser so ein, über den <b>HTTP proxy: 127.0.0.1 port 4444</b> zu surfen, dann besuche eine Eepsite:<br>
|
||||||
<ul class="links">
|
<ul class="links">
|
||||||
<li class="tidylist"><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> und
|
<li class="tidylist"><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> und
|
||||||
<a href="http://perv.i2p/stats.cgi">perv.i2p</a>: Webseiten, die aktive Eepsites beobachten</li>
|
<a href="http://perv.i2p/stats.cgi">perv.i2p</a>: Webseiten, die aktive Eepsites beobachten</li>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<h2>Bienvenu a I2P!</h2>
|
<h2>Bienvenu a I2P!</h2>
|
||||||
<p>Si vous venez juste de lancer I2P, les chiffres sur la gauche à coté de Active devraient commencer à augmenter dans les prochaines minutes et vous verrez un "Shared client" en destination locale listés sur la gauche (si non, <a href=#trouble>voir plus bas</a>). Une fois qu'ils apparaissent, vous pouvez:</p>
|
<p>Si vous venez juste de lancer I2P, les chiffres sur la gauche à coté de Active devraient commencer à augmenter dans les prochaines minutes et vous verrez un "Shared client" en destination locale listés sur la gauche (si non, <a href=#trouble>voir plus bas</a>). Une fois qu'ils apparaissent, vous pouvez:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="tidylist"><b>parcourir les "eepsites"</b> - sur I2P il y a des sites web anonymes hébergés - dites à votre navigateur d'utiliser <b>le HTTP proxy a l'adresse 127.0.0.1 port 4444</b>, ensuite vous pouvez naviguer sur les eepsites:<br />
|
<li class="tidylist"><b>parcourir les "eepsites"</b> - sur I2P il y a des sites web anonymes hébergés - dites à votre navigateur d'utiliser <b>le HTTP proxy a l'adresse 127.0.0.1 port 4444</b>, ensuite vous pouvez naviguer sur les eepsites:<br>
|
||||||
<ul class="links">
|
<ul class="links">
|
||||||
<li class="tidylist"><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> et
|
<li class="tidylist"><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> et
|
||||||
<a href="http://perv.i2p/stats.cgi">perv.i2p</a>: listent les eepsites actifs</li>
|
<a href="http://perv.i2p/stats.cgi">perv.i2p</a>: listent les eepsites actifs</li>
|
||||||
@ -16,9 +16,9 @@
|
|||||||
<li class="tidylist"><a href="http://fproxy.tino.i2p">fproxy.tino.i2p</a>: un proxy Freenet 0.5</li>
|
<li class="tidylist"><a href="http://fproxy.tino.i2p">fproxy.tino.i2p</a>: un proxy Freenet 0.5</li>
|
||||||
<li class="tidylist"><a href="http://echelon.i2p">echelon.i2p</a>: archive</li>
|
<li class="tidylist"><a href="http://echelon.i2p">echelon.i2p</a>: archive</li>
|
||||||
<li class="tidylist"><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: Pastebin anonyme</li>
|
<li class="tidylist"><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: Pastebin anonyme</li>
|
||||||
<br />
|
<br>
|
||||||
</ul>
|
</ul>
|
||||||
Il y a bien plus d'eepsites - suivez juste les liens au départ de ceux sur lesquels vous êtes, mettez-les dans vos favoris et visitez-les souvent!</li><br />
|
Il y a bien plus d'eepsites - suivez juste les liens au départ de ceux sur lesquels vous êtes, mettez-les dans vos favoris et visitez-les souvent!</li><br>
|
||||||
<li class="tidylist"><b>Parcourez le web</b> - Il y a pour l'instant un outproxy HTTP sur I2P attaché à votre propre proxy HTTP sur le port 4444 - vous devez simplement configurer le proxy de votre navigateur pour l'utiliser (comme expliqué ci-dessus) et aller sur n'importe quel URL normale - vos requêtes seront relayées par le réseau i2p.</li>
|
<li class="tidylist"><b>Parcourez le web</b> - Il y a pour l'instant un outproxy HTTP sur I2P attaché à votre propre proxy HTTP sur le port 4444 - vous devez simplement configurer le proxy de votre navigateur pour l'utiliser (comme expliqué ci-dessus) et aller sur n'importe quel URL normale - vos requêtes seront relayées par le réseau i2p.</li>
|
||||||
<li class="tidylist"><b>Transfer de fichiers</b> - Il y a un <a href="i2psnark/">port</a> intégré de <a href="http://www.klomp.org/snark/">Snark</a> le client <a href="http://www.bittorrent.com/">BitTorrent</a>.</li>
|
<li class="tidylist"><b>Transfer de fichiers</b> - Il y a un <a href="i2psnark/">port</a> intégré de <a href="http://www.klomp.org/snark/">Snark</a> le client <a href="http://www.bittorrent.com/">BitTorrent</a>.</li>
|
||||||
<li class="tidylist"><b>Utiliser le service de mail anonyme</b> - Postman a créé un sytème de mails compatible avec un client de messagerie normal (POP3 / SMTP) qui permet d'envoyer des emails autant au sein d'i2p que vers et à partir de l'internet normal! Créez-vous un compte à <a href="http://hq.postman.i2p/">hq.postman.i2p</a>.
|
<li class="tidylist"><b>Utiliser le service de mail anonyme</b> - Postman a créé un sytème de mails compatible avec un client de messagerie normal (POP3 / SMTP) qui permet d'envoyer des emails autant au sein d'i2p que vers et à partir de l'internet normal! Créez-vous un compte à <a href="http://hq.postman.i2p/">hq.postman.i2p</a>.
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<h2>Welkom bij I2P!</h2>
|
<h2>Welkom bij I2P!</h2>
|
||||||
<p>Als je net I2P opgestart hebt, zullen de 'Active:' (Actieve) getallen aan de linkerkant in de komende minuten stijgen, en je zal een "Shared clients" (Gedeelde clients) lokale bestemming zien staan aan de linkerkant (indien niet, <a href=#trouble>zie hieronder</a>). Eenmaal je deze bestemming ziet, kan je:</p>
|
<p>Als je net I2P opgestart hebt, zullen de 'Active:' (Actieve) getallen aan de linkerkant in de komende minuten stijgen, en je zal een "Shared clients" (Gedeelde clients) lokale bestemming zien staan aan de linkerkant (indien niet, <a href=#trouble>zie hieronder</a>). Eenmaal je deze bestemming ziet, kan je:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><b>surfen naar "eepsites"</b> - op I2P zijn er anonieme websites - stel je browser in om de <b>HTTP proxy op 127.0.0.1, poort 4444</b> te gebruiken, en surf vervolgens naar een eepsite:<br /><br />
|
<li><b>surfen naar "eepsites"</b> - op I2P zijn er anonieme websites - stel je browser in om de <b>HTTP proxy op 127.0.0.1, poort 4444</b> te gebruiken, en surf vervolgens naar een eepsite:<br><br>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> en
|
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> en
|
||||||
<a href="http://perv.i2p/stats.cgi">perv.i2p</a>: sites die lijsten bijhouden van actieve eepsites</li>
|
<a href="http://perv.i2p/stats.cgi">perv.i2p</a>: sites die lijsten bijhouden van actieve eepsites</li>
|
||||||
@ -17,8 +17,8 @@
|
|||||||
<li><a href="http://echelon.i2p">echelon.i2p</a>: software
|
<li><a href="http://echelon.i2p">echelon.i2p</a>: software
|
||||||
archive and information for I2P</li>
|
archive and information for I2P</li>
|
||||||
<li class="tidylist"><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: anonieme Pastebin</li>
|
<li class="tidylist"><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: anonieme Pastebin</li>
|
||||||
</ul><br />
|
</ul><br>
|
||||||
Er zijn nog veel meer eepsites - volg gewoon de links vanaf diegene die je ziet. Voeg de beste toe aan je favorieten, en bezoek ze regelmatig!</li><br />
|
Er zijn nog veel meer eepsites - volg gewoon de links vanaf diegene die je ziet. Voeg de beste toe aan je favorieten, en bezoek ze regelmatig!</li><br>
|
||||||
<li><b>surfen op het web</b> - er is momenteel een HTTP "outproxy" in I2P, vastgehaakt aan je eigen HTTP proxy op poort 4444 - stel eenvoudigweg de proxy van je browser in om deze te gebruiken (zoals hierboven voor eepsites) en ga naar een willekeurige normale URL - je verzoeken voor websites worden rondgestuurd via het I2P-network.</li>
|
<li><b>surfen op het web</b> - er is momenteel een HTTP "outproxy" in I2P, vastgehaakt aan je eigen HTTP proxy op poort 4444 - stel eenvoudigweg de proxy van je browser in om deze te gebruiken (zoals hierboven voor eepsites) en ga naar een willekeurige normale URL - je verzoeken voor websites worden rondgestuurd via het I2P-network.</li>
|
||||||
<li><b>bestanden versturen</b> - er is een geintegreerde <a href="i2psnark/">aangepaste versie</a> van de
|
<li><b>bestanden versturen</b> - er is een geintegreerde <a href="i2psnark/">aangepaste versie</a> van de
|
||||||
<a href="http://www.klomp.org/snark/">Snark</a> <a href="http://www.bittorrent.com/">BitTorrent</a>
|
<a href="http://www.klomp.org/snark/">Snark</a> <a href="http://www.bittorrent.com/">BitTorrent</a>
|
||||||
|
@ -9,7 +9,7 @@ nedan</a>). När de syns kan du:</p>
|
|||||||
<ul>
|
<ul>
|
||||||
<li><b>surfa på "eepsidor"</b> - inom I2P finns det anonyma sajter -
|
<li><b>surfa på "eepsidor"</b> - inom I2P finns det anonyma sajter -
|
||||||
ställ in din webbläsare till att använda <b>HTTP proxy vid
|
ställ in din webbläsare till att använda <b>HTTP proxy vid
|
||||||
127.0.0.1 port 4444</b>, surfa sen till en eepsida:<br />
|
127.0.0.1 port 4444</b>, surfa sen till en eepsida:<br>
|
||||||
<ul class="links">
|
<ul class="links">
|
||||||
<li><a
|
<li><a
|
||||||
href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> och
|
href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> och
|
||||||
@ -30,9 +30,9 @@ wiki som alla kan förändra, innehåller många länkar</
|
|||||||
Freenet proxy</li>
|
Freenet proxy</li>
|
||||||
<li><a href="http://echelon.i2p">echelon.i2p</a>: programvaruförråd och information om I2P</li>
|
<li><a href="http://echelon.i2p">echelon.i2p</a>: programvaruförråd och information om I2P</li>
|
||||||
<li><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: anonym och säker pastebin</li>
|
<li><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: anonym och säker pastebin</li>
|
||||||
</ul><br />
|
</ul><br>
|
||||||
Det finns många fler eepsidor - följ bara länkarna från dom du ser,
|
Det finns många fler eepsidor - följ bara länkarna från dom du ser,
|
||||||
spara dina favoriter och besök dom ofta!</li><br />
|
spara dina favoriter och besök dom ofta!</li><br>
|
||||||
<li><b>surfa på nätet</b> - det finns för närvarande en "utproxy" i I2P
|
<li><b>surfa på nätet</b> - det finns för närvarande en "utproxy" i I2P
|
||||||
som är ansluten
|
som är ansluten
|
||||||
till din egen HTTP proxt på port 4444 - ställ helt enkelt in din
|
till din egen HTTP proxt på port 4444 - ställ helt enkelt in din
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<a href="/index.jsp?lang=sv"><img src="/flags.jsp?c=se" title="Svenska" alt="Svenska"></a></div>
|
<a href="/index.jsp?lang=sv"><img src="/flags.jsp?c=se" title="Svenska" alt="Svenska"></a></div>
|
||||||
</div>
|
</div>
|
||||||
<h2>欢迎使用 I2P!</h2>
|
<h2>欢迎使用 I2P!</h2>
|
||||||
<p>如果 I2P 已经运行,未来的几分钟里控制台左侧的活动节点(Active)数量将会增加,并会出现名为共享客户端("shared clients") 的本地目标。(如果没有,请见 <a href="/i2p-zhcn/i2psrc/i2p.i2p/readme_zh.html#trouble">疑难解答</a>)。待出现以上消息后,您可以:</p>
|
<p>如果 I2P 已经运行,未来的几分钟里控制台左侧的活动节点(Active)数量将会增加,并会出现名为共享客户端("shared clients") 的本地目标。(如果没有,请见 <a href="#trouble">疑难解答</a>)。待出现以上消息后,您可以:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><B>浏览 I2P 站点 "eepsites"</B> - I2P 网络内匿名运行的小站 - 您要首先设置浏览器的 <b>HTTP 代理</b> 为 127.0.0.1:4444 然后才能浏览 I2P 站点 - <ul>
|
<li><B>浏览 I2P 站点 "eepsites"</B> - I2P 网络内匿名运行的小站 - 您要首先设置浏览器的 <b>HTTP 代理</b> 为 127.0.0.1:4444 然后才能浏览 I2P 站点 - <ul>
|
||||||
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> 和 <a href="http://perv.i2p/stats.cgi">perv.i2p</a>: 这两个站点用于跟踪哪些 I2P 站点在线。</li>
|
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> 和 <a href="http://perv.i2p/stats.cgi">perv.i2p</a>: 这两个站点用于跟踪哪些 I2P 站点在线。</li>
|
||||||
@ -21,7 +21,7 @@
|
|||||||
</ul> <br>
|
</ul> <br>
|
||||||
I2P网络中还有很多其他网站(EEPSITE) - 访问上面的网站你会找到更多,收藏你喜爱的 I2P 网站,别忘了常去看看!</li><br>
|
I2P网络中还有很多其他网站(EEPSITE) - 访问上面的网站你会找到更多,收藏你喜爱的 I2P 网站,别忘了常去看看!</li><br>
|
||||||
<li><b>浏览 Web 网页</b> - 目前 IP2 网络中的出口代理("Outproxy")只有一个,它以HTTP代理的形式挂接在本地计算机的4444端口上。- 将浏览器的代理设置指向为上述地址(127.0.0.1:4444)后,访问任何普通链接即可 - 您的HTTP请求将在 I2P 网络内部传递。</li>
|
<li><b>浏览 Web 网页</b> - 目前 IP2 网络中的出口代理("Outproxy")只有一个,它以HTTP代理的形式挂接在本地计算机的4444端口上。- 将浏览器的代理设置指向为上述地址(127.0.0.1:4444)后,访问任何普通链接即可 - 您的HTTP请求将在 I2P 网络内部传递。</li>
|
||||||
<li><b>文件交换</b> - I2P的其中一个本地 <a href="/i2p-zhcn/i2psrc/i2p.i2p/i2psnark/">端口</a> 用于内置的 <a href="http://www.klomp.org/snark/">Snark</a> <a href="http://www.bittorrent.com/">BitTorrent</a> 客户端。</li>
|
<li><b>文件交换</b> - I2P的其中一个本地 <a href="/i2psnark">端口</a> 用于内置的 <a href="http://www.klomp.org/snark/">Snark</a> <a href="http://www.bittorrent.com/">BitTorrent</a> 客户端。</li>
|
||||||
<li><b>匿名电邮</b> - POSTMAN 建立了兼容普通邮件客户端 (POP3 / SMTP)的邮件系统,这个系统可以在 I2P 网络内部收发 Email 也可以收发来自外部 Internet 的邮件!I2P的邮件帐户请到 <a href="http://hq.postman.i2p/">hq.postman.i2p</a> 申请。I2P中集成了Web界面的pop3/stmp邮件客户端 <a href="/susimail/susimail">SUSIMail</a>,并已设置好使用POSTMAN 的邮件服务。</li>
|
<li><b>匿名电邮</b> - POSTMAN 建立了兼容普通邮件客户端 (POP3 / SMTP)的邮件系统,这个系统可以在 I2P 网络内部收发 Email 也可以收发来自外部 Internet 的邮件!I2P的邮件帐户请到 <a href="http://hq.postman.i2p/">hq.postman.i2p</a> 申请。I2P中集成了Web界面的pop3/stmp邮件客户端 <a href="/susimail/susimail">SUSIMail</a>,并已设置好使用POSTMAN 的邮件服务。</li>
|
||||||
<li><b>匿名聊天</b> - 打开你的 IRC 聊天程序,连接至 <b>127.0.0.1:6668 </b>即可访问I2P的匿名 IRC 服务器,但无论你还是服务器都不知道聊天的人在哪里。</li>
|
<li><b>匿名聊天</b> - 打开你的 IRC 聊天程序,连接至 <b>127.0.0.1:6668 </b>即可访问I2P的匿名 IRC 服务器,但无论你还是服务器都不知道聊天的人在哪里。</li>
|
||||||
<li><b>匿名博客</b> - 请访问 <a href="http://syndie.i2p2.de/">Syndie</a></li>
|
<li><b>匿名博客</b> - 请访问 <a href="http://syndie.i2p2.de/">Syndie</a></li>
|
||||||
|
Reference in New Issue
Block a user