forked from I2P_Developers/i2p.i2p
* Console:
- Add link to jobs.jsp on configservice.jsp - Add plugin disableStop support
This commit is contained in:
@ -146,9 +146,10 @@ public class ConfigClientsHelper extends HelperBase {
|
||||
.append("<a href=\"").append(updateURL).append("\">").append(_("Update link")).append("</a><td> ");
|
||||
}
|
||||
desc.append("</table>");
|
||||
boolean enableStop = !Boolean.valueOf(appProps.getProperty("disableStop")).booleanValue();
|
||||
renderForm(buf, app, app, false,
|
||||
"true".equals(val), false, desc.toString(), false, false,
|
||||
updateURL != null, true, true);
|
||||
updateURL != null, enableStop, true);
|
||||
}
|
||||
}
|
||||
buf.append("</table>\n");
|
||||
|
@ -240,8 +240,6 @@ public class PluginUpdateHandler extends UpdateHandler {
|
||||
return;
|
||||
}
|
||||
|
||||
// todo compare sud version with property version
|
||||
|
||||
String minVersion = ConfigClientsHelper.stripHTML(props, "min-i2p-version");
|
||||
if (minVersion != null &&
|
||||
(new VersionComparator()).compare(CoreVersion.VERSION, minVersion) < 0) {
|
||||
|
Reference in New Issue
Block a user