Site Notice
hello, world
Difference between revisions of "User:机智的小鱼君/common.js"
From Project-EPB Commons
([InPageEdit] 没有编辑摘要) |
|||
Line 1: | Line 1: | ||
+ | var 警告 = alert, | ||
+ | 变量一 = '这是字符串。'; | ||
+ | 警告(变量一); | ||
+ | |||
+ | |||
mw.loader.load('https://common.wjghj.cn/js/InPageEdit-canary'); | mw.loader.load('https://common.wjghj.cn/js/InPageEdit-canary'); | ||
$(function () { | $(function () { |
Revision as of 02:46, 24 January 2020
var 警告 = alert,
变量一 = '这是字符串。';
警告(变量一);
mw.loader.load('https://common.wjghj.cn/js/InPageEdit-canary');
$(function () {
$('#ca-view').after(
$('<li>', {
id: 'ca-quick-edit',
class: 'collapsible'
}).append(
$('<span>').append(
$('<a>', {
href: 'javascript:void(0)'
})
.text('快速编辑')
.click(function () {
InPageEdit.edit({
page: mw.config.get('wgPageName'),
revision: mw.config.get('wgRevisionId')
});
})
)
)
);
});
if (mw.config.get('wgIsArticle')) {
$('#ca-history').append(
$('<a>', {
href: 'javascript:void(0);',
style: 'margin-left:2px;top: -1.2em;position: relative;font-size: 8px;'
}).append(
$('<span>').html('最后更改')
).click(function () {
InPageEdit.quickDiff({ fromtitle: mw.config.get('wgPageName'), torelative: 'prev' });
})
);
}
$('#firstHeading').append('<span style="font-size:12px;float:right">RevisionId: ' + mw.config.get('wgRevisionId') + '</span>');
/** 自动推送IPE **/
if (mw.config.get('wgPageName') === 'MediaWiki:Js-InPageEdit-canary.js') {
$('#mw-content-text').prepend(
$('<button>', { id: 'mergeCanary' })
.text('合并到正式版')
.click(function () {
if (confirm('确定要将现在的版本合并到正式版?:' + wgRevisionId + '')) {
var summary = prompt('摘要?', '[Automatic] Merged canary [[Special:Diff/' + wgRevisionId + ']]');
if (summary !== null) {
new mw.Api().post({
action: 'parse',
page: 'MediaWiki:Js-InPageEdit-canary.js',
prop: 'wikitext',
format: 'json'
}).then(function (data1) {
var canarytext = data1.parse.wikitext['*'],
canarynew = canarytext.split('/*** BOT FLAG ***/')[1];
new mw.Api().post({
action: 'parse',
page: 'MediaWiki:Js-InPageEdit-v2.js',
prop: 'wikitext',
format: 'json'
}).then(function (data2) {
var v2text = data2.parse.wikitext['*'],
v2new = v2text.split('/*** BOT FLAG ***/')[0] + '/*** BOT FLAG ***/' + canarynew;
new mw.Api().postWithToken('csrf', {
action: 'edit',
title: 'MediaWiki:Js-InPageEdit-v2.js',
text: v2new,
summary: summary
}).then(function () {
alert('成功!');
});
});
});
}
}
})
);
}