forked from I2P_Developers/i2p.i2p
* i2psnark: Fix start and start-all buttons on text-mode browsers
and Opera (ticket #1093)
This commit is contained in:
@ -509,7 +509,7 @@ public class I2PSnarkServlet extends BasicServlet {
|
|||||||
// show startall too
|
// show startall too
|
||||||
out.write("<br>");
|
out.write("<br>");
|
||||||
if (isDegraded)
|
if (isDegraded)
|
||||||
out.write("<a href=\"/" + _contextPath + "/?action=StartAll&nonce=" + _nonce + "\"><img title=\"");
|
out.write("<a href=\"" + _contextPath + "/?action=StartAll&nonce=" + _nonce + "\"><img title=\"");
|
||||||
else
|
else
|
||||||
out.write("<input type=\"image\" name=\"action_StartAll\" value=\"foo\" title=\"");
|
out.write("<input type=\"image\" name=\"action_StartAll\" value=\"foo\" title=\"");
|
||||||
out.write(_("Start all stopped torrents"));
|
out.write(_("Start all stopped torrents"));
|
||||||
@ -523,7 +523,7 @@ public class I2PSnarkServlet extends BasicServlet {
|
|||||||
}
|
}
|
||||||
} else if ((!_manager.util().isConnecting()) && !snarks.isEmpty()) {
|
} else if ((!_manager.util().isConnecting()) && !snarks.isEmpty()) {
|
||||||
if (isDegraded)
|
if (isDegraded)
|
||||||
out.write("<a href=\"/" + _contextPath + "/?action=StartAll&nonce=" + _nonce + "\"><img title=\"");
|
out.write("<a href=\"" + _contextPath + "/?action=StartAll&nonce=" + _nonce + "\"><img title=\"");
|
||||||
else
|
else
|
||||||
out.write("<input type=\"image\" name=\"action_StartAll\" value=\"foo\" title=\"");
|
out.write("<input type=\"image\" name=\"action_StartAll\" value=\"foo\" title=\"");
|
||||||
out.write(_("Start all torrents and the I2P tunnel"));
|
out.write(_("Start all torrents and the I2P tunnel"));
|
||||||
@ -1418,7 +1418,7 @@ public class I2PSnarkServlet extends BasicServlet {
|
|||||||
// Start Button
|
// Start Button
|
||||||
// This works in Opera but it's displayed a little differently, so use noThinsp here too so all 3 icons are consistent
|
// This works in Opera but it's displayed a little differently, so use noThinsp here too so all 3 icons are consistent
|
||||||
if (noThinsp)
|
if (noThinsp)
|
||||||
out.write("<a href=\"/" + _contextPath + "/?action=Start_" + b64 + "&nonce=" + _nonce + stParam + "\"><img title=\"");
|
out.write("<a href=\"" + _contextPath + "/?action=Start_" + b64 + "&nonce=" + _nonce + stParam + "\"><img title=\"");
|
||||||
else
|
else
|
||||||
out.write("<input type=\"image\" name=\"action_Start_" + b64 + "\" value=\"foo\" title=\"");
|
out.write("<input type=\"image\" name=\"action_Start_" + b64 + "\" value=\"foo\" title=\"");
|
||||||
out.write(_("Start the torrent"));
|
out.write(_("Start the torrent"));
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
2013-10-29 zzz
|
2013-10-29 zzz
|
||||||
|
* i2psnark: Fix start and start-all buttons on text-mode browsers
|
||||||
|
and Opera (ticket #1093)
|
||||||
* InboundMessageDistributor:
|
* InboundMessageDistributor:
|
||||||
- Don't discard an encrypted DSRM received
|
- Don't discard an encrypted DSRM received
|
||||||
down a tunnel, just strip the hashes like we do for unencrypted
|
down a tunnel, just strip the hashes like we do for unencrypted
|
||||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 15;
|
public final static long BUILD = 16;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
Reference in New Issue
Block a user