Changeset 4be0af5
- Timestamp:
- Jul 25, 2009 5:24:37 AM (12 years ago)
- Branches:
- master
- Children:
- e4b212e
- Parents:
- d7717459
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java
rd7717459 r4be0af5 84 84 out.write(HEADER); 85 85 out.write("</head><body>"); 86 out.write("<div class=\"page\"><table border=\"0\" width=\"100%\"><tr><td align=\"center\" class=\"snarkTitle\"><a href=\"" + req.getRequestURI() + peerString + "\" title=\"I2PSnark (Manual Page Refresh)\"><img src=\"/themes/console/images/i2psnark.png\" alt=\"I2PSnark Anonymous BitTorrent Client\" border=\"0\" class=\"snarklogo\"></a>< br>");87 out.write("< a href=\"http://forum.i2p/viewforum.php?f=21\" class=\"snarkRefresh\" target=\"_blank\">Forum</a>\n");86 out.write("<div class=\"page\"><table border=\"0\" width=\"100%\"><tr><td align=\"center\" class=\"snarkTitle\"><a href=\"" + req.getRequestURI() + peerString + "\" title=\"I2PSnark (Manual Page Refresh)\"><img src=\"/themes/console/images/i2psnark.png\" alt=\"I2PSnark Anonymous BitTorrent Client\" border=\"0\" class=\"snarklogo\"></a></table>"); 87 out.write("<div class=\"snarknavbar\"><a href=\"http://forum.i2p/viewforum.php?f=21\" class=\"snarkRefresh\" target=\"_blank\">Forum</a>\n"); 88 88 Map trackers = _manager.getTrackers(); 89 89 for (Iterator iter = trackers.entrySet().iterator(); iter.hasNext(); ) { … … 97 97 out.write("<a href=\"" + baseURL + "\" class=\"snarkRefresh\" target=\"_blank\">" + name + "</a>"); 98 98 } 99 out.write("</ table>\n");99 out.write("</div>\n"); 100 100 out.write("<div class=\"mainsection\"><div class=\"snarkMessages\"><table><tr><td valign=\"top\" align=\"left\"><pre>"); 101 101 List msgs = _manager.getMessages(); -
installer/resources/themes/console/dark/console.css
rd7717459 r4be0af5 1 /* Not yet complete. Subject to flux and change. dr|z3d - 07.25.09 */ 2 1 3 body { 2 4 margin: 25px 10px 0 5px; … … 515 517 font-style: italic; 516 518 font-size: 8pt; 517 font-color: #700; 518 text-align: center; 519 border-radius: 4px; 520 -moz-border-radius: 4px; 521 -khtml-border-radius: 4px; 522 border: 0 !important; 519 color: #eef; 520 text-align: center; 521 border: 1px solid #99f !important; 522 border-top: 0px !important; 523 margin: -5px 0 5px 0; 524 padding: 7px; 525 background: #004; 526 -moz-box-shadow: inset 0px 0px 2px 0px #99f; 523 527 } 524 528 -
installer/resources/themes/console/light/console.css
rd7717459 r4be0af5 1 /* Not yet complete. Subject to flux and change. dr|z3d - 07.25.09 */ 2 1 3 body { 2 4 margin: 25px 10px 0 5px; … … 562 564 font-style: italic; 563 565 font-size: 8pt; 564 font-color: #700 !important; 565 text-align: center; 566 border-radius: 4px; 567 -moz-border-radius: 4px; 568 -khtml-border-radius: 4px; 569 border: 0; 566 font-color: #001 !important; 567 text-align: center; 568 border: 1px solid #001 !important; 569 border-top: 0 !important; 570 margin: -5px 0 5px 0; 571 padding: 7px; 572 background: #bcf; 573 -moz-box-shadow: inset 0px 0px 2px 1px #eef; 570 574 } 571 575 -
installer/resources/themes/console/snark.css
rd7717459 r4be0af5 1 /* Not yet complete. Subject to flux and change. dr|z3d - 07.25.09 */ 2 1 3 body { 2 4 background-color: #eef; … … 12 14 } 13 15 14 .snarkRefresh { 15 border: 1px outset #eef; 16 padding: 2px 10px; 17 background: #eef; 18 text-decoration: none; 19 border-radius: 3px; 20 -moz-border-radius: 3px; 21 -khtml-border-radius: 3px; 22 font-size: 9pt; 23 font-weight: bold; 24 margin: -10px 3px 0 3px; 25 text-align: center; 26 vertical-align: middle; 27 text-transform: uppercase; 28 opacity: 0.7; 29 letter-spacing: 0.05em; 30 } 31 32 .snarkRefresh:link { 33 border: 1px outset #eef; 34 padding: 2px 10px; 35 background: #eef; 36 text-decoration: none; 37 border-radius: 3px; 38 -moz-border-radius: 3px; 39 -khtml-border-radius: 3px; 40 font-size: 9pt; 41 font-weight: bold; 42 margin: 0px 3px 0px 3px !important; 43 text-align: center; 44 vertical-align: middle; 45 text-transform: uppercase; 46 opacity: 0.7; 47 color: #003; 48 } 49 .snarkRefresh:hover, .snarkRefresh:hover:visited{ 50 border: 1px solid #eef; 51 padding: 2px 10px; 52 background: #003; 53 text-decoration: none; 54 border-radius: 3px; 55 -moz-border-radius: 3px; 56 -khtml-border-radius: 3px; 57 font-size: 9pt; 58 font-weight: bold; 59 margin: -10px 3px 0 3px; 60 text-align: center; 61 vertical-align: middle; 62 text-transform: uppercase; 63 color: #f60; 64 opacity: 1; 65 } 66 67 .snarkRefresh:visited { 68 border: 1px outset #eef; 69 opacity: 0.7; 70 color: #003; 71 background: #eef; 72 } 16 .snarkRefresh:link, .snarkRefresh:visited { 17 text-decoration: none !important; 18 text-transform: uppercase !important; 19 padding: 0 16px; 20 letter-spacing: 0.05em; 21 font-weight: bold; 22 font-size: 11pt; 23 color: #005; 24 text-shadow: 0px 0px 1px rgba(0, 0, 148, 0.9); 25 } 26 27 .snarkRefresh:hover{ 28 text-decoration: none !important; 29 text-transform: uppercase !important; 30 padding: 0 16px; 31 letter-spacing: 0.05em; 32 font-weight: bold; 33 font-size: 11pt; 34 color: #f60; 35 border-bottom: 3px solid #f60; 36 border-top: 3px solid #f60; 37 text-shadow: 0px 0px 1px rgba(255, 128, 0, 0.9); 38 } 39 40 .snarkRefresh:active{ 41 text-decoration: none !important; 42 text-transform: uppercase !important; 43 padding: 0 16px; 44 letter-spacing: 0.05em; 45 font-weight: bold; 46 font-size: 11pt; 47 color: #f30; 48 border-bottom: 3px solid #f30; 49 border-top: 3px solid #f30; 50 text-shadow: 0px 0px 1px rgba(255, 163, 0, 0.9); 51 } 73 52 74 53 .snarkMessages { … … 156 135 background-color: #fff; 157 136 color:#310; 137 min-width: 700px !important; 158 138 margin: 20px; 159 139 padding: 10px 20px 5px 20px; … … 227 207 img { 228 208 border: none; 229 margin: 0px 5px 10px 5px; 230 opacity: 0.7; 209 margin: 0px 5px 0px 5px; 210 opacity: 1.0; 211 line-height: 100% 231 212 } 232 213 233 214 img:hover{ 234 215 border: none; 235 margin: 0px 5px 10px 5px; 236 opacity: 1; 216 margin: 0px 5px 0px 5px; 217 opacity: 0.5; 218 line-height: 100% 237 219 } 238 220 … … 311 293 background: #ffe; 312 294 border: 1px solid #001; 313 text-align: center;314 295 color: #ffb; 315 296 -moz-border-radius: 4px; 316 297 -khtml-border-radius: 4px; 317 298 border-radius: 4px; 318 -moz-box-shadow: inset 0px 0px 1px 0px #99f;299 -moz-box-shadow: inset 0px 0px 0px 1px #900; 319 300 word-wrap: break-word; 320 301 text-align: center; 321 302 background: #ffe url('../console/light/images/darkbluetile.png'); 322 303 font-weight: bold; /* red tile needs bold text! */ 323 opacity: 0.95; 324 } 304 } 305 306 div.configsection a{ 307 color: #f90; 308 } 309 310 div.configsection a:hover{ 311 color: #f60; 312 text-decoration: underline; 313 } 314 315 .snarknavbar { 316 margin: 5px 0 20px 0 !important; 317 padding: 10px; 318 border: 1px solid #001; 319 -moz-border-radius: 4px; 320 -khtml-border-radius: 4px; 321 border-radius: 4px; 322 background: #eef; 323 -moz-box-shadow: inset 0px 0px 1px 0px #002; 324 background: #ddf url('../console/light/images/tabletile.png'); 325 } -
router/java/src/net/i2p/router/RouterVersion.java
rd7717459 r4be0af5 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 2 2;21 public final static long BUILD = 23; 22 22 /** for example "-test" */ 23 23 public final static String EXTRA = "-rc";
Note: See TracChangeset
for help on using the changeset viewer.