Compare commits

...

17 Commits

Author SHA1 Message Date
idk
fe4e6dda80 Revert the unnecessary change on line 999 of I2PTunnelHTTPClientBase.java 2021-07-14 14:15:55 -04:00
idk
33e705bc07 Move the files under a location where they appear in the webapplication to a dedicated proxy resources directory under i2ptunnel/resources/proxy/css 2021-07-12 10:46:46 -04:00
idk
168f5bbc77 move proxy.css into the i2ptunnel source code 2021-07-08 12:16:51 -04:00
idk
aa3a10caf0 move proxy.css into i2ptunnel 2021-07-08 11:24:14 -04:00
idk
7344bddc96 add hover buttons 2021-07-06 13:18:33 -04:00
idk
72526180ad check in changes for the address book interstitial. Biggest change is that the <p>Could not find the following destinations:</p> have been switched for <span>'s so that the destination can actually follow it, as in, on the same line. 2021-07-06 12:38:06 -04:00
idk
a960c23577 double the background-position adjustment for toopie on the proxy.css page 2021-07-06 10:59:12 -04:00
idk
d913867fed Add in logo, warning CSS for dark theme 2021-07-01 15:01:49 -04:00
idk
a4137c2bf8 Fix font color on proxy.css 2021-07-01 11:39:32 -04:00
idk
0d20f17e30 Human-ize CSS generated for proxy.css from console.css on dark theme 2021-06-24 23:44:13 -04:00
idk
76dc31a6a3 Human-ize CSS generated for proxy.css from console.css on light theme 2021-06-24 23:42:00 -04:00
idk
02cd43a893 Use the full width of the page on addresshelper interstitial proxy.css 2021-06-24 23:39:59 -04:00
idk
57a167f615 Fix up button sizes and fonts 2021-06-24 22:38:53 -04:00
idk
7ef1b1ce4d Add equivalent CSS for dark theme 2021-06-24 13:25:25 -04:00
idk
adda6078d3 Add some more important css to the proxy.css fie 2021-06-24 13:15:51 -04:00
idk
362d85132a Create basic proxy-only css 2021-06-24 13:08:09 -04:00
idk
bda1e310d9 Create basic proxy-only css 2021-06-24 13:07:38 -04:00
25 changed files with 652 additions and 46 deletions

View File

@ -99,6 +99,8 @@
-->
<gzip src="../../routerconsole/jsp/themes/console/light/console.css" destfile="./build/obj/net/i2p/i2ptunnel/resources/themes/console/light/console.css.gz" />
<gzip src="../../routerconsole/jsp/themes/console/dark/console.css" destfile="./build/obj/net/i2p/i2ptunnel/resources/themes/console/dark/console.css.gz" />
<gzip src="../../i2ptunnel/resources/proxy/css/light/proxy.css" destfile="./build/obj/net/i2p/i2ptunnel/resources/themes/console/light/proxy.css.gz" />
<gzip src="../../i2ptunnel/resources/proxy/css/dark/proxy.css" destfile="./build/obj/net/i2p/i2ptunnel/resources/themes/console/dark/proxy.css.gz" />
<jar destfile="./build/i2ptunnel.jar" basedir="./build/obj" excludes="**/ui/*.class **/web/*.class" >
<manifest>
<attribute name="Main-Class" value="net.i2p.i2ptunnel.I2PTunnel" />

View File

@ -985,7 +985,7 @@ public abstract class I2PTunnelHTTPClientBase extends I2PTunnelClientBase implem
if (first) {
first = false;
out.write("<br><br>\n<div id=\"jumplinks\">\n<h4>");
out.write("<br>\n<div id=\"jumplinks\">\n<h4>");
out.write(_t("Click a link below for an address helper from a jump service"));
out.write("</h4>\n");
} else {

View File

@ -300,7 +300,7 @@ public abstract class LocalHTTPServer {
.append(_t("Your new encryption key"))
.append("</title>\n" +
"<link rel=\"shortcut icon\" href=\"http://proxy.i2p/themes/console/images/favicon.ico\" >\n" +
"<link href=\"http://proxy.i2p/themes/console/default/console.css\" rel=\"stylesheet\" type=\"text/css\" >\n" +
"<link href=\"http://proxy.i2p/themes/console/default/proxy.css\" rel=\"stylesheet\" type=\"text/css\" >\n" +
"</head><body>\n" +
"<div class=logo>\n" +
"<a href=\"")
@ -375,7 +375,7 @@ public abstract class LocalHTTPServer {
"<html><head>"+
"<title>" + _t("Redirecting to {0}", idn) + "</title>\n" +
"<link rel=\"shortcut icon\" href=\"http://proxy.i2p/themes/console/images/favicon.ico\" >\n" +
"<link href=\"http://proxy.i2p/themes/console/default/console.css\" rel=\"stylesheet\" type=\"text/css\" >\n" +
"<link href=\"http://proxy.i2p/themes/console/default/proxy.css\" rel=\"stylesheet\" type=\"text/css\" >\n" +
"<meta http-equiv=\"Refresh\" content=\"1; url=" + url + "\">\n" +
"</head><body>\n" +
"<div class=logo>\n" +
@ -410,7 +410,7 @@ public abstract class LocalHTTPServer {
"<html><head>"+
"<title>" + _t("Redirecting to {0}", idn) + "</title>\n" +
"<link rel=\"shortcut icon\" href=\"http://proxy.i2p/themes/console/images/favicon.ico\" >\n" +
"<link href=\"http://proxy.i2p/themes/console/default/console.css\" rel=\"stylesheet\" type=\"text/css\" >\n" +
"<link href=\"http://proxy.i2p/themes/console/default/proxy.css\" rel=\"stylesheet\" type=\"text/css\" >\n" +
"<meta http-equiv=\"Refresh\" content=\"1; url=" + url + "\">\n" +
"</head><body>\n" +
"<div class=logo>\n" +

View File

@ -13,7 +13,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Warning: Destination Key Conflict")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">

View File

@ -14,7 +14,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<head>
<title>_("Information: New Host Name")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body id="proxyNewAddressHelper">
<div class="logo">

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Warning: Bad Address Helper")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Warning: Authorization Required")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -22,5 +22,5 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<div class="warning" id="warning">
<h3>_("Warning: Authorization Required")</h3>
<p>
<p><b>_("Could not find the following destination:")</b>
</p>
<span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Website Unreachable")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -24,5 +24,5 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<p>
_("The Base32 address is invalid.")
<hr>
<p><b>_("Could not find the following destination:")</b>
</p>
<span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Warning: Invalid Request URI")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">

View File

@ -0,0 +1,291 @@
body {
margin: 5px 0px 0px;
padding: 0px;
text-align: center;
background-color: rgb(31, 26, 36);
color: rgb(230, 230, 231);
font-style: normal;
font-variant: normal;
font-weight: normal;
font-size: 8.5pt;
line-height: 130%;
font-family: 'Droid Sans', 'Noto Sans', Ubuntu, 'Segoe UI', 'Bitstream Vera Sans', 'DejaVu Sans', Verdana, 'Lucida Grande', Helvetica, sans-serif;
background-position: initial initial;
background-repeat: initial initial;
}
img {
border: none;
}
table {
border-collapse: collapse;
width: 100%;
border: 1px groove rgb(82, 75, 94);
padding: 1px;
font-size: 9pt;
margin: 1px 0px;
}
tr {
vertical-align: middle;
}
tr:nth-child(odd) {
vertical-align: middle;
}
td {
padding: 4px 6px;
color: rgb(230, 230, 231);
vertical-align: middle;
border-top-width: 1px;
border-top-style: inset;
border-top-color: rgb(41, 41, 41);
}
td img {
padding: 0px 1px 0px 2px;
}
a:link {
color: rgb(119, 120, 191);
text-decoration: none;
font-weight: bold;
word-wrap: break-word;
}
a:visited {
color: rgb(119, 120, 191);
text-decoration: none;
font-weight: bold;
word-wrap: break-word;
}
p {
text-align: justify;
line-height: 160%;
}
p img:first-child {
display: none !important;
}
h1 {
text-align: left;
color: rgb(230, 230, 231);
padding: 13px 15px;
font-size: 17pt;
font-weight: bold;
font-style: normal;
letter-spacing: 0.15em;
text-shadow: rgb(0, 17, 0) 0px 0px 2px;
white-space: normal;
background-image: url(images/header.png);
background-color: rgb(0, 0, 0);
border: 1px solid rgb(41, 41, 41);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
line-height: 120%;
min-width: 620px;
box-shadow: rgb(0, 0, 0) 0px 1px 5px;
margin: 0px 5px 0px 216px !important;
background-position: 50% 50%;
background-repeat: initial initial;
}
h2 {
font-size: 12pt;
color: rgb(230, 230, 231);
text-shadow: rgb(0, 17, 0) 0px 0px 2px;
letter-spacing: 0.08em;
word-spacing: 0.1em;
padding: 10px;
border: 1px solid rgb(41, 41, 41);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
vertical-align: middle;
word-wrap: break-word;
margin: 15px 0px 12px !important;
}
h2 {
box-shadow: rgb(0, 0, 0) 0px 0px 0px 1px inset;
}
h1 {
background-color: rgb(31, 26, 36);
box-shadow: rgb(0, 0, 0) 0px 0px 0px 1px inset;
text-shadow: rgb(0, 0, 0) 0px 1px 1px;
border: 1px groove rgb(82, 75, 94);
background-position: initial initial;
background-repeat: initial initial;
}
hr {
background-color: rgb(225, 219, 233);
height: 1px;
border: 0px solid rgb(82, 75, 94);
margin: 20px 0px 10px;
background-position: initial initial;
background-repeat: initial initial;
}
hr:last-child {
margin-top: 20px;
margin-bottom: 20px;
}
.right {
text-align: right;
margin: 0px 1px;
display: inline-block;
width: 40%;
}
.hostadd {
height: 10rem;
width: 100%;
}
.hostaddform {
width: 48%;
display: inline-block;
vertical-align: top;
}
.logo {
float: left;
padding: 10px;
text-align: center;
color: rgb(34, 34, 34);
margin: 0px 85px;
border: 1px solid rgb(68, 68, 119);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
background-position: initial initial;
background-repeat: initial initial;
}
.logo hr {
margin: 8px -10px;
height: 1px;
background-position: initial initial;
background-repeat: initial initial;
}
.warning hr {
background-image: linear-gradient(to right, rgb(119, 120, 191), rgb(194, 196, 239));
background-position: initial initial;
background-repeat: initial initial;
}
.logo a {
width: 100%;
display: inline-block !important;
}
.logo hr~a {
margin: 3px 2px;
}
.warning {
padding: 10px 25px 20px 75px;
text-align: start;
margin: 0px 10px;
}
.warning:not(old) {
background-attachment: scroll, initial;
background-origin: initial, initial;
background-clip: initial, initial;
background-size: 54px, 100%;
background-position: 10px calc(50% + 32px);
background-repeat: no-repeat;
}
.warning h3 {
text-align: left;
padding: 10px 10px 8px;
font-size: 1.1rem;
}
#jumplinks {
text-align: start;
}
#jumplinks > a {
border: black;
border-top-style: none;
border-top-width: medium;
border-right-style: none;
border-right-width: medium;
border-bottom-style: none;
border-bottom-width: medium;
border-left-style: none;
border-left-width: medium;
border-style: outset;
margin: 2px;
float: none;
display: inline-block;
width: 80%;
border-width: 1px;
border-radius: 12px;
vertical-align: middle;
font-size: 1.1rem;
text-align: start;
padding-top: 1.5%;
padding-bottom: 1.5%;
padding-left: 1%;
}
#jumplinks > a:hover {
text-decoration: none;
color: #da736b !important;
border: 1px solid #da736b !important;
box-shadow: inset 0 1px 1px 0 #eff;
}
#jumplinks > h4 {
text-align: center;
font-size: 1.1rem;
}
#warning > a {
font-size: 1.1rem;
}
span b {
font-size: 1.1rem;
}
element {
height: 6em;
min-width: 0;
min-height: 0;
width: 96%;
}
table,
tr,
td {
font-family: 'Droid Sans', 'Noto Sans', Ubuntu, 'Segoe UI', 'Lucida Grande', Verdana, Helvetica, sans-serif;
font-size: 10pt;
}
@media screen and (min-width: 1500px) {
body {
font-size: 10pt !important;
}
h1 {
margin-left: 242px !important;
}
}

View File

@ -0,0 +1,311 @@
html {
margin: 0px !important;
}
body {
margin: 6px;
text-align: center;
color: rgb(51, 51, 63);
font-size: 9pt;
line-height: 130%;
background-color: rgb(246, 246, 250);
background-position: initial initial;
background-repeat: initial initial;
}
b {
color: rgb(65, 70, 95);
}
body {
font-family: 'Droid Sans', 'Noto Sans', Ubuntu, 'Segoe UI', 'Lucida Grande', Verdana, Helvetica, sans-serif;
}
* {
outline: none;
}
img {
border: none;
}
.logo {
float: left;
padding: 10px;
text-align: center;
color: rgb(34, 34, 34);
margin: 0px 10px;
border: 1px solid rgb(68, 68, 119);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
background-color: rgb(248, 248, 255);
box-shadow: rgb(187, 187, 255) 0px 0px 0px 1px inset;
background-position: initial initial;
background-repeat: initial initial;
}
.logo hr {
margin: 8px -10px;
background-color: rgb(119, 120, 191);
height: 1px;
background-position: initial initial;
background-repeat: initial initial;
}
.warning hr {
background-image: linear-gradient(to right, rgb(119, 120, 191), rgb(194, 196, 239));
background-position: initial initial;
background-repeat: initial initial;
}
.logo a {
width: 100%;
display: inline-block !important;
}
.logo hr~a {
margin: 3px 2px;
}
.warning {
padding: 10px 25px 20px 75px;
text-align: start;
color: rgb(34, 34, 34);
margin: 0px 10px;
border: 1px solid rgb(68, 68, 119);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
background-color: rgb(248, 248, 255);
box-shadow: rgb(187, 187, 255) 0px 0px 0px 1px inset;
}
.warning:not(old) {
background-image: url(/themes/console/images/itoopie_sm.png), linear-gradient(rgba(248, 248, 255, 0.8), rgba(240, 240, 255, 0.8));
background-attachment: scroll, initial;
background-origin: initial, initial;
background-clip: initial, initial;
background-size: 54px, 100%;
background-position: 10px calc(50% + 32px);
background-repeat: no-repeat;
}
.warning h3 {
text-align: left;
border-style: none none solid;
border-bottom-width: 1px;
border-bottom-color: rgb(68, 68, 119);
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
padding: 10px 10px 8px;
font-size: 1.1rem;
}
@media screen and (max-width: 800px) {
.warning {
margin: 114px 5px 0px !important;
background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.298039)) !important;
background-color: rgb(248, 248, 255) !important;
padding-left: 25px !important;
background-position: initial initial !important;
background-repeat: initial initial !important;
}
.warning h3 {
font-size: 10pt !important;
}
.logo {
position: absolute;
top: 0px;
min-width: 430px;
width: calc(100% - 40px) !important;
margin: 10px 5px 0px !important;
}
.logo a:link:not(img) {
display: inline-block;
width: auto;
margin: 0px 5px;
}
}
.logo hr {
visibility: hidden;
}
@media screen and (min-height: 700px) {
.warning {
margin-bottom: 30px;
}
}
.logo {
background-color: rgb(246, 246, 250) !important;
background-position: initial initial !important;
background-repeat: initial initial !important;
}
hr {
color: rgb(17, 17, 51);
background-color: rgb(17, 17, 51);
height: 1px;
border: 0px solid rgb(17, 17, 51);
margin: 10px 0px;
background-position: initial initial;
background-repeat: initial initial;
}
a,
h3 {
text-shadow: rgb(255, 255, 255) 0px 1px 1px;
}
a:link {
color: rgb(59, 107, 191);
text-decoration: none;
font-weight: bold;
word-wrap: break-word;
outline: none;
padding-top: 4px;
}
a:hover {
color: rgb(59, 107, 191);
text-decoration: none;
font-weight: bold;
word-wrap: break-word;
outline: none;
padding-top: 4px;
}
p {
text-align: justify;
line-height: 130%;
}
h3 {
padding: 7px 5px 6px 7px;
border-top-left-radius: 0px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 0px;
font-size: 11pt;
letter-spacing: 0.08em;
word-spacing: 0.1em;
color: rgb(65, 70, 95);
border: 1px solid rgb(222, 226, 230);
}
h3 {
background-color: rgb(245, 245, 245) !important;
background-position: initial initial !important;
background-repeat: initial initial !important;
}
.right {
text-align: right;
margin: 0px 1px;
display: inline-block;
width: 40%;
}
.hostadd {
height: 10rem;
width: 100%;
border-radius: 12px;
background: #eef;
}
.hostaddform {
width: 48%;
display: inline-block;
vertical-align: top;
}
#jumplinks {
text-align: start;
}
#jumplinks > a {
border: black;
border-top-style: none;
border-top-width: medium;
border-right-style: none;
border-right-width: medium;
border-bottom-style: none;
border-bottom-width: medium;
border-left-style: none;
border-left-width: medium;
border-style: outset;
margin: 2px;
float: none;
display: inline-block;
width: 80%;
border-width: 1px;
border-radius: 12px;
vertical-align: middle;
font-size: 1.1rem;
text-align: start;
padding-top: 1.5%;
padding-bottom: 1.5%;
padding-left: 1%;
background: #ddd;
background: linear-gradient(to bottom, #eee, #fff);
}
#jumplinks > a:hover {
text-decoration: none;
color: #19191f;
border: 1px solid #f60 !important;
background: #ddd;
background: linear-gradient(to bottom, #eee, #fff);
box-shadow: inset 0 0 0 1px #fff !important;
filter: drop-shadow(0 0 1px rgba(204, 204, 204, 0.8));
transition: ease border 0.7s;
}
#jumplinks > h4 {
text-align: center;
font-size: 1.1rem;
}
#warning > a {
font-size: 1.1rem;
}
span b {
font-size: 1.1rem;
}
element {
height: 6em;
min-width: 0;
min-height: 0;
width: 96%;
}
table,
tr,
td {
font-family: 'Droid Sans', 'Noto Sans', Ubuntu, 'Segoe UI', 'Lucida Grande', Verdana, Helvetica, sans-serif;
font-size: 10pt;
}
@media screen and (max-width: 1500px) {
body {
margin: 4px;
}
}
@media screen and (min-width: 1500px) {
body {
font-size: 10pt !important;
}
}

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Warning: Request Denied")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Website Unreachable")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -27,5 +27,5 @@ _("The website is offline, there is network congestion, or your router is not ye
<span>_("You may want to {0}retry{1}.", "<a href=\"\">", "</a>")</span>
</p>
<hr>
<p><b>_("Could not find the following destination:")</b>
</p>
<span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Warning: Invalid Destination")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -28,5 +28,5 @@ _("The I2P host could also be offline.")
<span>_("You may want to {0}retry{1}.", "<a href=\"\">", "</a>")</span>
</p>
<hr>
<p><b>_("Could not find the following destination:")</b>
</p>
<span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -14,7 +14,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<head>
<title>_("Website Unknown")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -34,6 +34,5 @@ _("Otherwise, find a Base 32 or address helper link, or use a jump service link
_("Seeing this page often? See {0}the FAQ{1} for help in {2}adding some subscriptions{3} to your addressbook.", "<a href=\"http://127.0.0.1:7657/help#addressbooksubs\">", "</a>", "<a href=\"http://127.0.0.1:7657/susidns/config\">", "</a>")
</p>
<hr>
<p>
<b>_("Could not find the following destination:")</b>
</p>
<span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -13,7 +13,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<head>
<title>_("Outproxy Not Found")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -28,4 +28,5 @@ _("It is offline, there is network congestion, or your router is not yet well-in
<span>_("You may want to {0}retry{1} as this will randomly reselect an outproxy from the pool you have defined {2}here{3} (if you have more than one configured).", "<a href=\"\">", "</a>", "<a href=\"http://127.0.0.1:7657/i2ptunnelmgr\">", "</a>")</span>
_("If you continue to have trouble you may want to edit your outproxy list {0}here{1}.", "<a href=\"http://127.0.0.1:7657/i2ptunnelmgr/edit?tunnel=0\">", "</a>")
</p>
<hr><p><b>_("Could not find the following destination:")</b></p>
<hr><span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Website Unreachable")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -24,5 +24,5 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<p>
_("The website was not reachable, because it uses encryption options that are not supported by your I2P or Java version.")
<hr>
<p><b>_("Could not connect to the following destination:")</b>
</p>
<span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Outproxy Unreachable")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -26,4 +26,5 @@ _("The HTTP outproxy was not reachable, because it uses encryption options that
<span>_("You may want to {0}retry{1} as this will randomly reselect an outproxy from the pool you have defined {2}here{3} (if you have more than one configured).", "<a href=\"\">", "</a>", "<a href=\"http://127.0.0.1:7657/i2ptunnelmgr\">", "</a>")</span>
_("If you continue to have trouble you may want to edit your outproxy list {0}here{1}.", "<a href=\"http://127.0.0.1:7657/i2ptunnelmgr/edit?tunnel=0\">", "</a>")
</p>
<hr><p><b>_("Could not connect to the following destination:")</b></p>
<hr><span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Error: Request Denied")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-----------------------------

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Website Unreachable")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -27,5 +27,5 @@ _("The website is probably down, but there could also be network congestion.")
<span>_("You may want to {0}retry{1}.", "<a href=\"\">", "</a>")</span>
</p>
<hr>
<p><b>_("Could not find the following destination:")</b>
</p>
<span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Outproxy Not Found")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -27,4 +27,5 @@ _("The outproxy is probably down, but there could also be network congestion.")
<span>_("You may want to {0}retry{1} as this will randomly reselect an outproxy from the pool you have defined {2}here{3} (if you have more than one configured).", "<a href=\"\">", "</a>", "<a href=\"http://127.0.0.1:7657/i2ptunnelmgr\">", "</a>")</span>
_("If you continue to have trouble you may want to edit your outproxy list {0}here{1}.", "<a href=\"http://127.0.0.1:7657/i2ptunnelmgr/edit?tunnel=0\">", "</a>")
</p>
<hr><p><b>_("Could not find the following destination:")</b></p>
<hr><span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Warning: No Outproxy Configured")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Warning: Non-HTTP Protocol")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Connection Reset")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -27,5 +27,5 @@ _("The website could be temporarily unavailable, too busy, or it has blocked you
<span>_("You may want to {0}retry{1}.", "<a href=\"\">", "</a>")</span>
</p>
<hr>
<p><b>_("Could not find the following destination:")</b>
</p>
<span><b>_("Could not find the following destination:")</b>
</span>

View File

@ -12,7 +12,7 @@ Content-Security-Policy: default-src 'none'; style-src 'self' 'unsafe-inline' ht
<html><head>
<title>_("Connection Reset")</title>
<link rel="shortcut icon" href="http://proxy.i2p/themes/console/images/favicon.ico">
<link href="http://proxy.i2p/themes/console/default/console.css" rel="stylesheet" type="text/css">
<link href="http://proxy.i2p/themes/console/default/proxy.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="logo">
@ -28,5 +28,5 @@ _("The proxy could be temporarily unavailable, too busy, or it has blocked your
_("If you continue to have trouble you may want to edit your outproxy list {0}here{1}.", "<a href=\"http://127.0.0.1:7657/i2ptunnelmgr/edit?tunnel=0\">", "</a>")
</p>
<hr>
<p><b>_("Could not find the following destination:")</b>
</p>
<span><b>_("Could not find the following destination:")</b>
</span>