forked from I2P_Developers/i2p.i2p
i2psnark: Remove onclick on delete buttons
Version the js
This commit is contained in:
@ -322,13 +322,18 @@ public class I2PSnarkServlet extends BasicServlet {
|
|||||||
String downMsg = _context.isRouterContext() ? _t("Router is down") : _t("I2PSnark has stopped");
|
String downMsg = _context.isRouterContext() ? _t("Router is down") : _t("I2PSnark has stopped");
|
||||||
// fallback to metarefresh when javascript is disabled
|
// fallback to metarefresh when javascript is disabled
|
||||||
out.write("<noscript><meta http-equiv=\"refresh\" content=\"" + delay + ";" + _contextPath + "/" + peerString + "\"></noscript>\n" +
|
out.write("<noscript><meta http-equiv=\"refresh\" content=\"" + delay + ";" + _contextPath + "/" + peerString + "\"></noscript>\n" +
|
||||||
"<script src=\"" + jsPfx + "/js/ajax.js\" type=\"text/javascript\"></script>\n" +
|
"<script src=\"" + jsPfx + "/js/ajax.js?" + CoreVersion.VERSION + "\" type=\"text/javascript\"></script>\n" +
|
||||||
"<script type=\"text/javascript\">\n" +
|
"<script type=\"text/javascript\">\n" +
|
||||||
"var failMessage = \"<div class=\\\"routerdown\\\"><b>" + downMsg + "<\\/b><\\/div>\";\n" +
|
"var failMessage = \"<div class=\\\"routerdown\\\"><b>" + downMsg + "<\\/b><\\/div>\";\n" +
|
||||||
"var ajaxDelay = " + (delay * 1000) + ";\n" +
|
"var ajaxDelay = " + (delay * 1000) + ";\n" +
|
||||||
"</script>\n" +
|
"</script>\n" +
|
||||||
"<script src=\".resources/js/initajax.js\" type=\"text/javascript\"></script>\n");
|
"<script src=\".resources/js/initajax.js?" + CoreVersion.VERSION + "\" type=\"text/javascript\"></script>\n");
|
||||||
}
|
}
|
||||||
|
out.write("<script type=\"text/javascript\">\n" +
|
||||||
|
"var deleteMessage1 = \"" + _t("Are you sure you want to delete the file \\''{0}\\'' (downloaded data will not be deleted) ?") + "\";\n" +
|
||||||
|
"var deleteMessage2 = \"" + _t("Are you sure you want to delete the torrent \\''{0}\\'' and all downloaded data?") + "\";\n" +
|
||||||
|
"</script>\n" +
|
||||||
|
"<script src=\".resources/js/delete.js?" + CoreVersion.VERSION + "\" type=\"text/javascript\"></script>\n");
|
||||||
}
|
}
|
||||||
out.write(HEADER_A + _themePath + HEADER_B);
|
out.write(HEADER_A + _themePath + HEADER_B);
|
||||||
|
|
||||||
@ -1940,16 +1945,11 @@ public class I2PSnarkServlet extends BasicServlet {
|
|||||||
out.write("<a href=\"" + _contextPath + "/?action=Remove_" + b64 + "&nonce=" + _nonce +
|
out.write("<a href=\"" + _contextPath + "/?action=Remove_" + b64 + "&nonce=" + _nonce +
|
||||||
getQueryString(req, "", null, null).replace("?", "&") + "\"><img title=\"");
|
getQueryString(req, "", null, null).replace("?", "&") + "\"><img title=\"");
|
||||||
else
|
else
|
||||||
out.write("<input type=\"image\" name=\"action_Remove_" + b64 + "\" value=\"foo\" title=\"");
|
out.write("<input class=\"delete1\" type=\"image\" name=\"action_Remove_" + b64 + "\" value=\"foo\" title=\"");
|
||||||
out.write(_t("Remove the torrent from the active list, deleting the .torrent file"));
|
out.write(_t("Remove the torrent from the active list, deleting the .torrent file"));
|
||||||
out.write("\" onclick=\"if (!confirm('");
|
out.write("\" client=\"");
|
||||||
// Can't figure out how to escape double quotes inside the onclick string.
|
out.write(escapeJSString(snark.getName()));
|
||||||
// Single quotes in translate strings with parameters must be doubled.
|
out.write("\" src=\"" + _imgPath + "remove.png\" alt=\"");
|
||||||
// Then the remaining single quote must be escaped
|
|
||||||
out.write(_t("Are you sure you want to delete the file \\''{0}\\'' (downloaded data will not be deleted) ?",
|
|
||||||
escapeJSString(snark.getName())));
|
|
||||||
out.write("')) { return false; }\"");
|
|
||||||
out.write(" src=\"" + _imgPath + "remove.png\" alt=\"");
|
|
||||||
out.write(_t("Remove"));
|
out.write(_t("Remove"));
|
||||||
out.write("\">");
|
out.write("\">");
|
||||||
if (isDegraded)
|
if (isDegraded)
|
||||||
@ -1964,16 +1964,11 @@ public class I2PSnarkServlet extends BasicServlet {
|
|||||||
out.write("<a href=\"" + _contextPath + "/?action=Delete_" + b64 + "&nonce=" + _nonce +
|
out.write("<a href=\"" + _contextPath + "/?action=Delete_" + b64 + "&nonce=" + _nonce +
|
||||||
getQueryString(req, "", null, null).replace("?", "&") + "\"><img title=\"");
|
getQueryString(req, "", null, null).replace("?", "&") + "\"><img title=\"");
|
||||||
else
|
else
|
||||||
out.write("<input type=\"image\" name=\"action_Delete_" + b64 + "\" value=\"foo\" title=\"");
|
out.write("<input class=\"delete2\" type=\"image\" name=\"action_Delete_" + b64 + "\" value=\"foo\" title=\"");
|
||||||
out.write(_t("Delete the .torrent file and the associated data files"));
|
out.write(_t("Delete the .torrent file and the associated data files"));
|
||||||
out.write("\" onclick=\"if (!confirm('");
|
out.write("\" client=\"");
|
||||||
// Can't figure out how to escape double quotes inside the onclick string.
|
out.write(escapeJSString(snark.getName()));
|
||||||
// Single quotes in translate strings with parameters must be doubled.
|
out.write("\" src=\"" + _imgPath + "delete.png\" alt=\"");
|
||||||
// Then the remaining single quote must be escaped
|
|
||||||
out.write(_t("Are you sure you want to delete the torrent \\''{0}\\'' and all downloaded data?",
|
|
||||||
escapeJSString(fullBasename)));
|
|
||||||
out.write("')) { return false; }\"" +
|
|
||||||
" src=\"" + _imgPath + "delete.png\" alt=\"");
|
|
||||||
out.write(_t("Delete"));
|
out.write(_t("Delete"));
|
||||||
out.write("\">");
|
out.write("\">");
|
||||||
if (isDegraded)
|
if (isDegraded)
|
||||||
@ -3065,7 +3060,7 @@ public class I2PSnarkServlet extends BasicServlet {
|
|||||||
.append("<noscript><style type=\"text/css\">.script {display: none;}</style></noscript>" +
|
.append("<noscript><style type=\"text/css\">.script {display: none;}</style></noscript>" +
|
||||||
"<link rel=\"shortcut icon\" href=\"" + _themePath + "favicon.ico\">\n");
|
"<link rel=\"shortcut icon\" href=\"" + _themePath + "favicon.ico\">\n");
|
||||||
if (showPriority)
|
if (showPriority)
|
||||||
buf.append("<script src=\"").append(_contextPath).append(WARBASE + "js/folder.js\" type=\"text/javascript\"></script>\n");
|
buf.append("<script src=\"").append(_contextPath).append(WARBASE + "js/folder.js?" + CoreVersion.VERSION + "\" type=\"text/javascript\"></script>\n");
|
||||||
buf.append("</head><body>\n" +
|
buf.append("</head><body>\n" +
|
||||||
"<center><div class=\"snarknavbar\"><a href=\"").append(_contextPath).append("/\" title=\"Torrents\"" +
|
"<center><div class=\"snarknavbar\"><a href=\"").append(_contextPath).append("/\" title=\"Torrents\"" +
|
||||||
" class=\"snarkNav nav_main\">");
|
" class=\"snarkNav nav_main\">");
|
||||||
|
39
apps/i2psnark/resources/js/delete.js
Normal file
39
apps/i2psnark/resources/js/delete.js
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
function init()
|
||||||
|
{
|
||||||
|
var buttons = document.getElementsByClassName("delete1");
|
||||||
|
for(index = 0; index < buttons.length; index++)
|
||||||
|
{
|
||||||
|
var button = buttons[index];
|
||||||
|
addClickHandler1(button);
|
||||||
|
}
|
||||||
|
buttons = document.getElementsByClassName("delete2");
|
||||||
|
for(index = 0; index < buttons.length; index++)
|
||||||
|
{
|
||||||
|
var button = buttons[index];
|
||||||
|
addClickHandler2(button);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function addClickHandler1(elem)
|
||||||
|
{
|
||||||
|
elem.addEventListener("click", function() {
|
||||||
|
if (!confirm(deleteMessage1.replace("{0}", elem.getAttribute("client")))) {
|
||||||
|
event.preventDefault();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function addClickHandler2(elem)
|
||||||
|
{
|
||||||
|
elem.addEventListener("click", function() {
|
||||||
|
if (!confirm(deleteMessage2.replace("{0}", elem.getAttribute("client")))) {
|
||||||
|
event.preventDefault();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
|
init();
|
||||||
|
}, true);
|
Reference in New Issue
Block a user