「MediaWiki:Gadget-CleanDeleteReasons.js」の版間の差分
(bot work) (タグ: Bot) |
星海-interfacebot (トーク | 投稿記録) 細 (跨站同步) (タグ: Bot) |
||
(他の1人の利用者による、間の1版が非表示) | |||
1行目: | 1行目: | ||
− | $(function() { | + | /* <pre> */ |
− | if (mw.config.get( | + | /** |
+ | * ------------------------------------------------------------------------- | ||
+ | * !!! DON'T MODIFY THIS PAGE MANUALLY, YOUR CHANGES WILL BE OVERWRITTEN !!! | ||
+ | * ------------------------------------------------------------------------- | ||
+ | */ | ||
+ | var _addText = '{{GHIACode|page=GHIA:MoegirlPediaInterfaceCodes/blob/master/src/gadgets/CleanDeleteReasons/MediaWiki:Gadget-CleanDeleteReasons.js|user=[[U:AnnAngela]]|longId=2ed6c0ce53260c5c00dbbb17cf0a74b0255e597b|shortId=2ed6c0c|message=upgrade}}'; | ||
+ | |||
+ | "use strict"; | ||
+ | $(function () { | ||
+ | var wpReason = $("#wpReason"); | ||
+ | if (mw.config.get("wgAction") === "delete" && wpReason.length > 0) { | ||
+ | if (/(?:^内容|內容|被清空前|页面为空|頁面為空|page was empty|content was|content before blanking was)/i.test($("#wpReason").val())) { | ||
+ | $("#wpReason").val(""); | ||
+ | } | ||
+ | $.get("".concat(mw.config.get("wgServer")).concat(mw.config.get("wgScriptPath"), "/index.php?action=render&curid=").concat(mw.config.get("wgArticleId")), function (h) { | ||
+ | var root = $("<div/>").html(h); | ||
+ | var reason = root.find(".mw-parser-output > .infoBox.will2Be2Deleted #reason"); | ||
+ | var actor = root.find(".mw-parser-output > .infoBox.will2Be2Deleted #actor a").first(); | ||
+ | if (reason.length === 1 && actor.length === 1) { | ||
+ | $("#wpReason").val("\u5220\u9664\u88AB\u6302\u5220\u7684\u9875\u9762\uFF0C[[User_talk:".concat(actor.text(), "|").concat(actor.text(), "]]\u7684\u6302\u5220\u7406\u7531\uFF1A''").concat(reason.text(), "''")); | ||
+ | } | ||
+ | }); | ||
+ | } | ||
}); | }); | ||
+ | |||
+ | /* </pre> */ |
2022年9月6日 (火) 02:54時点における最新版
/* <pre> */ /** * ------------------------------------------------------------------------- * !!! DON'T MODIFY THIS PAGE MANUALLY, YOUR CHANGES WILL BE OVERWRITTEN !!! * ------------------------------------------------------------------------- */ var _addText = '{{GHIACode|page=GHIA:MoegirlPediaInterfaceCodes/blob/master/src/gadgets/CleanDeleteReasons/MediaWiki:Gadget-CleanDeleteReasons.js|user=[[U:AnnAngela]]|longId=2ed6c0ce53260c5c00dbbb17cf0a74b0255e597b|shortId=2ed6c0c|message=upgrade}}'; "use strict"; $(function () { var wpReason = $("#wpReason"); if (mw.config.get("wgAction") === "delete" && wpReason.length > 0) { if (/(?:^内容|內容|被清空前|页面为空|頁面為空|page was empty|content was|content before blanking was)/i.test($("#wpReason").val())) { $("#wpReason").val(""); } $.get("".concat(mw.config.get("wgServer")).concat(mw.config.get("wgScriptPath"), "/index.php?action=render&curid=").concat(mw.config.get("wgArticleId")), function (h) { var root = $("<div/>").html(h); var reason = root.find(".mw-parser-output > .infoBox.will2Be2Deleted #reason"); var actor = root.find(".mw-parser-output > .infoBox.will2Be2Deleted #actor a").first(); if (reason.length === 1 && actor.length === 1) { $("#wpReason").val("\u5220\u9664\u88AB\u6302\u5220\u7684\u9875\u9762\uFF0C[[User_talk:".concat(actor.text(), "|").concat(actor.text(), "]]\u7684\u6302\u5220\u7406\u7531\uFF1A''").concat(reason.text(), "''")); } }); } }); /* </pre> */