Revision as of 07:52, 17 September 2013 view sourceLegoktm (talk | contribs)Edit filter managers, Autopatrolled, Administrators33,257 edits fix syntax error← Previous edit |
Latest revision as of 19:09, 19 July 2017 view source TheDJ (talk | contribs)Extended confirmed users, Template editors46,214 editsNo edit summary |
Line 1: |
Line 1: |
|
|
// blanked as script was no longer working, and had been inactive for years. |
|
/** |
|
|
|
mw.log.warn( 'You installed the userscript ]\n' |
|
* Semi-automated clerking of ]. |
|
|
|
+ 'It has been deprecated and you should remove it.' ); |
|
* See ] for instructions. |
|
|
*/ |
|
|
|
|
|
|
|
|
var pr_timeout=2;//time until being moved to fulfilled section (in hours) |
|
|
var fr_timeout=12;//time until being removed from fulfilled section (in hours) |
|
|
var rpc_now;//will hold the current date |
|
|
var rpc_offset=0;//timezone offset to GMT/UTC (in mili-seconds) |
|
|
var rpc_backlog=10;//backlog threshold |
|
|
var rpc_nobacklog=4;//backlog cleared threshold |
|
|
var response_open_type={'ch':true,'chck':true,'q':true,'ques':true,'n':true,'note':true}; |
|
|
|
|
|
addOnloadHook(function () { |
|
|
if(wgPageName=="Misplaced Pages:Requests_for_page_protection" && |
|
|
(wgAction=='edit' || wgAction=='submit')) |
|
|
addPortletLink('p-tb', 'javascript:rfppClerk()', 'RFPP clerk', |
|
|
't-rfpp-clerk', 'WP:RFPP semi-automatic clerk', '', ''); |
|
|
}); |
|
|
|
|
|
function rfppClerk(){ |
|
|
alert("This script has been deactivated, as an automated bot task has now begun archiving RFPP. Please see WT:RFPP for more information."); |
|
|
} |
|