forked from I2P_Developers/i2p.i2p
* Revised the installer to include start menu and desktop shortcuts for
windows platforms, including pretty icons (thanks DrWoo!)
* Allow clients specified in clients.config to have an explicit startup
delay.
* Update the default install to launch a browser pointing at the console
whenever I2P starts up, rather than only the first time it starts up
(configurable on /configservice.jsp, or in clients.config)
* Bugfix to the clock skew checking code to monitor the delta between
offsets, not the offset itself (duh)
* Router console html update
* New (and uuuuugly) code to verify that the wrapper.config contains
the necessary classpath entries on update. If it has to update the
wrapper.config, it will stop the JVM and service completely, since the
java service wrapper doesn't reread the wrapper.config on JVM restart -
requiring the user to manually restart the service after an update.
* Increase the TCP connection timeout to 30s (which is obscenely long)
------------------------------------------------
62 lines
1.7 KiB
Java
62 lines
1.7 KiB
Java
package net.i2p.router.web;
|
|
|
|
import java.io.ByteArrayOutputStream;
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
|
|
import net.i2p.router.RouterContext;
|
|
import net.i2p.util.FileUtil;
|
|
|
|
public class ContentHelper {
|
|
private String _page;
|
|
private int _maxLines;
|
|
private boolean _startAtBeginning;
|
|
private RouterContext _context;
|
|
/**
|
|
* Configure this bean to query a particular router context
|
|
*
|
|
* @param contextId begging few characters of the routerHash, or null to pick
|
|
* the first one we come across.
|
|
*/
|
|
public void setContextId(String contextId) {
|
|
try {
|
|
_context = ContextHelper.getContext(contextId);
|
|
} catch (Throwable t) {
|
|
t.printStackTrace();
|
|
}
|
|
}
|
|
|
|
public ContentHelper() {}
|
|
|
|
public void setPage(String page) { _page = page; }
|
|
public void setStartAtBeginning(String moo) {
|
|
_startAtBeginning = Boolean.valueOf(""+moo).booleanValue();
|
|
}
|
|
|
|
public void setMaxLines(String lines) {
|
|
if (lines != null) {
|
|
try {
|
|
_maxLines = Integer.parseInt(lines);
|
|
} catch (NumberFormatException nfe) {
|
|
_maxLines = -1;
|
|
}
|
|
} else {
|
|
_maxLines = -1;
|
|
}
|
|
}
|
|
public String getContent() {
|
|
String str = FileUtil.readTextFile(_page, _maxLines, _startAtBeginning);
|
|
if (str == null)
|
|
return "";
|
|
else
|
|
return str;
|
|
}
|
|
public String getTextContent() {
|
|
String str = FileUtil.readTextFile(_page, _maxLines, _startAtBeginning);
|
|
if (str == null)
|
|
return "";
|
|
else
|
|
return "<pre>" + str + "</pre>";
|
|
}
|
|
}
|