Changeset 6bcdb7fd
- Timestamp:
- Jul 24, 2009 10:41:23 PM (11 years ago)
- Branches:
- master
- Children:
- 7628842
- Parents:
- 27561fb
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2psnark/java/src/org/klomp/snark/SnarkManager.java
r27561fb r6bcdb7fd 545 545 if ((!announce.startsWith("http://")) || 546 546 (announce.indexOf(".i2p/") < 0)) // need to do better than this 547 return "Non-i2p tracker in " + info.getName() + ", removing it from our list of trackers!";547 return "Non-i2p tracker in " + info.getName() + ", deleting it from our list of trackers!"; 548 548 List files = info.getFiles(); 549 549 if ( (files != null) && (files.size() > MAX_FILES_PER_TORRENT) ) { -
apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java
r27561fb r6bcdb7fd 81 81 out.write(HEADER_BEGIN); 82 82 // we want it to go to the base URI so we don't refresh with some funky action= value 83 out.write("<meta http-equiv=\"refresh\" content=\" 300;" + req.getRequestURI() + peerString + "\">\n");83 out.write("<meta http-equiv=\"refresh\" content=\"60;" + req.getRequestURI() + peerString + "\">\n"); 84 84 out.write(HEADER); 85 85 out.write("</head><body>"); … … 735 735 + _manager.util().getMaxUploaders() + "\" size=\"3\" maxlength=\"3\" /> peers<br />\n"); 736 736 out.write("Up bandwidth limit: <input type=\"text\" name=\"upBW\" value=\"" 737 + _manager.util().getMaxUpBW() + "\" size=\"3\" maxlength=\"3\" /> KBps <i>(Half <a href=\" http://127.0.0.1:7657/config.jsp\" target=\"blank\">available bandwidth</a> recommended.)</i><br />\n");737 + _manager.util().getMaxUpBW() + "\" size=\"3\" maxlength=\"3\" /> KBps <i>(Half <a href=\"/config.jsp\" target=\"blank\">available bandwidth</a> recommended.)</i><br />\n"); 738 738 739 739 out.write("Use open trackers also: <input type=\"checkbox\" name=\"useOpenTrackers\" value=\"true\" " -
apps/susimail/src/css.css
r27561fb r6bcdb7fd 7 7 li { 8 8 9 color: black;9 color:#001; 10 10 line-height:12pt; 11 11 font-size:10pt; … … 15 15 16 16 p { 17 18 color:black; 17 color:#001; 19 18 line-height:12pt; 20 19 margin-left:5mm; … … 50 49 margin-left:10mm; 51 50 margin-right:10mm; 52 53 51 font-size:8pt; 52 line-height:10pt; 54 53 } 55 54 56 55 p.mailbody { 57 font-family:Courier-Fixed;56 font: 10pt "Lucida Console", "DejaVu Sans Mono", Courier, mono; 58 57 margin-left:1cm; 59 58 margin-right:1cm; 59 text-align: left; 60 60 } 61 61 … … 71 71 td { 72 72 73 color: black;73 color:#001; 74 74 line-height:12pt; 75 75 margin-left:5mm; … … 93 93 94 94 pre { 95 font-family:Courier-Fixed;95 font: 9pt "Lucida Console", "DejaVu Sans Mono", Courier, mono; 96 96 margin-left:1cm; 97 97 margin-right:1cm; … … 114 114 115 115 table { 116 text-align: center;116 text-align: justify; 117 117 width: 100%; 118 118 } … … 122 122 font-weight: bold; 123 123 } 124 125 form { 126 line-height: 160% 127 } 128 129 .mailhead { 130 font-size: 9pt; 131 font-weight: bold; 132 } -
installer/resources/themes/console/snark.css
r27561fb r6bcdb7fd 115 115 border-bottom: 1px inset #001; 116 116 background: #f91 url('.../console/images/tabletitleorangealt.png') repeat-x; 117 text-align: center;117 text-align: left; 118 118 } 119 119 … … 126 126 td { 127 127 padding: 5px; 128 text-align: center;128 text-align: left; 129 129 } 130 130 .snarkTorrentEven { … … 316 316 -khtml-border-radius: 4px; 317 317 border-radius: 4px; 318 -moz-box-shadow: inset 0px 0px 1px 0px # 002;319 word-wrap: break-word; 320 text-align: center; 321 background: #ffe url('../console/ images/redtile.png');318 -moz-box-shadow: inset 0px 0px 1px 0px #99f; 319 word-wrap: break-word; 320 text-align: center; 321 background: #ffe url('../console/light/images/darkbluetile.png'); 322 322 font-weight: bold; /* red tile needs bold text! */ 323 323 opacity: 0.95;
Note: See TracChangeset
for help on using the changeset viewer.