사용자:Senouis/관리용: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
>Bureaucrat (문서 생성 테스트) |
>Bureaucrat 잔글 (Bureaucrat님이 사용자:Bureaucrat 문서를 넘겨주기를 만들지 않고 사용자:Senouis/관리용 문서로 이동했습니다) |
||
(같은 사용자의 중간 판 8개는 보이지 않습니다) | |||
5번째 줄: | 5번째 줄: | ||
== 게임 대문 저자 보호 처리 == | == 게임 대문 저자 보호 처리 == | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
/** | |||
* Phase 1 - get category members | |||
*/ | |||
var titlelist = []; | |||
function getTitleList(categorystr){ | |||
api = new mw.Api(); | |||
var params = { | |||
action: 'query', | |||
list: 'categorymembers', | |||
cmtitle: 'Category:'+categorystr, | |||
cmlimit: 500, | |||
cmdir: 'asc', | |||
format: 'json' | |||
}; | |||
api.postWithToken( 'csrf', params ).done( function ( data ) { | |||
titlelist = data["query"]["categorymembers"]; | |||
}); | |||
return; | |||
} | |||
/** | |||
* Phase 2: AuthorProtect with titlelist | |||
*/ | |||
/* | /* | ||
protect.js | protect.js | ||
11번째 줄: | 33번째 줄: | ||
Demo of `Protect` module: Demo to change the edit protection | Demo of `Protect` module: Demo to change the edit protection | ||
level of a given page. | level of a given page. | ||
forked from [[mw:API:Protect]] | |||
MIT License | MIT License | ||
*/ | */ | ||
var timer_request = undefined; | |||
var params = { | function SendAuthorProtect(categorystr) { | ||
var counter = 0; | |||
timer_request = setInterval(function () { | |||
var params = { | |||
action: 'protect', | action: 'protect', | ||
title: | title: titlelist[counter]["title"], | ||
protections: 'edit= | protections: 'edit=author|move=author', | ||
expiry: 'infinite', | expiry: 'infinite', | ||
format: 'json' | format: 'json' | ||
24번째 줄: | 50번째 줄: | ||
api = new mw.Api(); | api = new mw.Api(); | ||
api.postWithToken( 'csrf', params ).done( function ( data ) { | api.postWithToken( 'csrf', params ).done( function ( data ) { | ||
console.log( data ); | |||
} ); | }); | ||
if (counter < titlelist.length) counter++; | |||
else clearInterval(timer_request); | |||
}, 500); | |||
} | |||
</syntaxhighlight> | |||
== 옛 알림 상자 기반 소도구 틀 확인용== | |||
[[/소도구]] |
2024년 4월 16일 (화) 02:26 기준 최신판
베타 서버 사무관
현재 사용자:Senouis와 동일인입니다.
게임 대문 저자 보호 처리
/**
* Phase 1 - get category members
*/
var titlelist = [];
function getTitleList(categorystr){
api = new mw.Api();
var params = {
action: 'query',
list: 'categorymembers',
cmtitle: 'Category:'+categorystr,
cmlimit: 500,
cmdir: 'asc',
format: 'json'
};
api.postWithToken( 'csrf', params ).done( function ( data ) {
titlelist = data["query"]["categorymembers"];
});
return;
}
/**
* Phase 2: AuthorProtect with titlelist
*/
/*
protect.js
MediaWiki API Demos
Demo of `Protect` module: Demo to change the edit protection
level of a given page.
forked from [[mw:API:Protect]]
MIT License
*/
var timer_request = undefined;
function SendAuthorProtect(categorystr) {
var counter = 0;
timer_request = setInterval(function () {
var params = {
action: 'protect',
title: titlelist[counter]["title"],
protections: 'edit=author|move=author',
expiry: 'infinite',
format: 'json'
},
api = new mw.Api();
api.postWithToken( 'csrf', params ).done( function ( data ) {
console.log( data );
});
if (counter < titlelist.length) counter++;
else clearInterval(timer_request);
}, 500);
}