Changeset 118d7fc
- Timestamp:
- Jul 21, 2009 4:37:44 PM (12 years ago)
- Branches:
- master
- Children:
- b0ea204b
- Parents:
- 5e498e0b
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java
r5e498e0b r118d7fc 87 87 out.write("<tr><td align=\"center\"><a href=\"" + req.getRequestURI() + peerString + "\" class=\"snarkRefresh\">Refresh</a>"); 88 88 out.write(" | <a href=\"http://forum.i2p/viewforum.php?f=21\" class=\"snarkRefresh\">Forum</a>\n"); 89 int count = 0;90 89 Map trackers = _manager.getTrackers(); 91 90 for (Iterator iter = trackers.entrySet().iterator(); iter.hasNext(); ) { … … 97 96 continue; 98 97 baseURL = baseURL.substring(e + 1); 99 if (count++ % 2 == 0)100 out.write("");101 98 out.write(" | <a href=\"" + baseURL + "\" class=\"snarkRefresh\">" + name + "</a>"); 102 99 } 103 if (count % 2 == 1)104 out.write("");105 100 out.write("</table>\n"); 106 101 out.write("<div class=\"snarkMessages\"><table><tr><td valign=\"top\" align=\"left\"><pre>"); -
build.xml
r5e498e0b r118d7fc 323 323 <!-- CSS now in docs/, not in the .war; just in case anybody is using defCon1 --> 324 324 <copy file="installer/resources/themes/console/defCon1/console.css" todir="pkg-temp/docs/themes/console/defCon1/" /> 325 <!-- Add extricated I2PSnark css here, for now --> 326 <copy file="installer/resources/themes/console/snark.css" todir="pkg-temp/docs/themes/console/" /> 325 327 <!-- these files now in docs/, not in the .war --> 326 328 <copy file="installer/resources/themes/console/images/favicon.ico" todir="pkg-temp/docs/themes/console/images/" /> … … 341 343 <copy todir="pkg-temp/docs/themes/console/light/" > 342 344 <fileset dir="installer/resources/themes/console/light/" /> 343 </copy> 345 </copy> 344 346 <copy todir="pkg-temp/docs/" > 345 347 <fileset dir="." includes="readme*.html" />
Note: See TracChangeset
for help on using the changeset viewer.