Changeset 281534b
- Timestamp:
- Jul 11, 2017 2:15:17 AM (4 years ago)
- Branches:
- master
- Children:
- 19fcb9e
- Parents:
- 4fff747
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java
r4fff747 r281534b 3507 3507 } 3508 3508 buf.append("</select>\n</td>"); 3509 } else { 3510 buf.append("<td></td>"); 3509 3511 } 3510 3512 if (esc) { … … 3600 3602 .append(c.getID()).append("\" title=\"").append(_t("Mark for deletion")).append("\">"); 3601 3603 ccount++; 3604 } else { 3605 buf.append("</td><td class=\"commentDelete\">"); // insert empty named columns to maintain table layout 3602 3606 } 3603 3607 } else { 3604 buf.append("</td><td class=\"commentDelete\">"); // insert empty named columns to maintain table layout .. fails to catch uncommented row when comments also shown3608 buf.append("</td><td class=\"commentDelete\">"); // insert empty named columns to maintain table layout 3605 3609 } 3606 3610 buf.append("</td></tr>\n"); -
apps/i2ptunnel/java/src/net/i2p/i2ptunnel/I2PTunnelHTTPClientBase.java
r4fff747 r281534b 758 758 out.write("</a>\n"); 759 759 } 760 } 761 } 762 out.write("</div>\n</div>\n"); 760 if (!first) { // We wrote out the opening <div> 761 out.write("</div>\n"); 762 } 763 } 764 } 765 out.write("</div>\n"); 763 766 writeFooter(out); 764 767 } -
history.txt
r4fff747 r281534b 1 1 2017-07-11 str4d 2 2 * I2PSnark: Fix I2PSnarkUtil.getCommentsName() to match its JavaDoc 3 * Fix HTML tags across non-default conditional branches 3 4 4 5 2017-07-08 zzz -
router/java/src/net/i2p/router/Blocklist.java
r4fff747 r281534b 1015 1015 // move to the jsp 1016 1016 //out.write("<h2>Banned IPs</h2>"); 1017 out.write("<table id=\"bannedips\"><tr><td>"); 1018 out.write("<table id=\"banneduntilrestart\"><tr><th align=\"center\"><b>"); 1019 out.write(_t("IPs Banned Until Restart")); 1020 out.write("</b></th></tr>"); 1017 1021 Set<Integer> singles = new TreeSet<Integer>(); 1018 1022 singles.addAll(_singleIPBlocklist); 1019 1023 if (!(singles.isEmpty() && _singleIPv6Blocklist.isEmpty())) { 1020 out.write("<table id=\"bannedips\"><tr><td>");1021 out.write("<table id=\"banneduntilrestart\"><tr><th align=\"center\"><b>");1022 out.write(_t("IPs Banned Until Restart"));1023 out.write("</b></th></tr>");1024 1024 if (!singles.isEmpty()) { 1025 1025 out.write("<tr id=\"ipv4\" align=\"center\"><td><b>"); … … 1061 1061 } 1062 1062 } 1063 out.write("</table>"); 1064 } 1063 } else { 1064 out.write("<tr><td><i>"); 1065 out.write(_t("none")); 1066 out.write("</i></td></tr>"); 1067 } 1068 out.write("</table>"); 1069 out.write("</td><td>"); 1070 out.write("<table id=\"permabanned\"><tr><th align=\"center\" colspan=\"3\"><b>"); 1071 out.write(_t("IPs Permanently Banned")); 1072 out.write("</b></th></tr>"); 1065 1073 if (_blocklistSize > 0) { 1066 out.write("</td><td>"); 1067 out.write("<table id=\"permabanned\"><tr><th align=\"center\" colspan=\"3\"><b>"); 1068 out.write(_t("IPs Permanently Banned")); 1069 out.write("</b></th></tr><tr><td align=\"center\" width=\"49%\"><b>"); 1074 out.write("<tr><td align=\"center\" width=\"49%\"><b>"); 1070 1075 out.write(_t("From")); 1071 1076 out.write("</b></td><td></td><td align=\"center\" width=\"49%\"><b>"); … … 1111 1116 out.write("<tr><th colspan=2>First " + MAX_DISPLAY + " displayed, see the " + 1112 1117 BLOCKLIST_FILE_DEFAULT + " file for the full list</th></tr>"); 1113 out.write("</table>");1114 out.write("</td></tr></table>");1115 1118 } else { 1116 out.write("< br><i>");1119 out.write("<tr><td><i>"); 1117 1120 out.write(_t("none")); 1118 out.write("</i>"); 1119 } 1121 out.write("</i></td></tr>"); 1122 } 1123 out.write("</table>"); 1124 out.write("</td></tr></table>"); 1120 1125 out.flush(); 1121 1126 }
Note: See TracChangeset
for help on using the changeset viewer.