User:Wetitpig0/reFill.js
外观
注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google Chrome、Firefox、Microsoft Edge及Safari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
/*
For more information on this tool, see https://en.wikipedia.org/wiki/User:Zhaofeng_Li/reFill
Please contribute to the repo on GitHub: https://github.com/zhaofengli/refill/blob/master/web/scripts/wikitoolbox.js
*/
var rlWiki = mw.config.get( "wgContentLanguage" );
/*
Copyright (c) 2014, Zhaofeng Li
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
This script is intended to be included on-wiki!
This script depends on jQuery and MediaWiki environment.
Set rlServer to the URL of the tool, and rlWiki to the
wiki identifier.
*/
/*global rlServer, rlWiki, mw, $ */
/*jshint multistr: true */
// 記緊要在使用前到 https://tools.wmflabs.org/intuition/?returnto=%2Frefill%2Findex.php&returntoquery=#tab-settingsform 設定語言選項呀!
function wgUXS (wg, hans, hant, cn, tw, hk, sg, zh, mo, my) {
var ret = {
'zh': zh || hans || hant || cn || tw || hk || sg || mo || my,
'zh-hans': hans || cn || sg || my,
'zh-hant': hant || tw || hk || mo,
'zh-cn': cn || hans || sg || my,
'zh-sg': sg || hans || cn || my,
'zh-tw': tw || hant || hk || mo,
'zh-hk': hk || hant || mo || tw,
'zh-mo': mo || hant || hk || tw
};
return ret[wg] || zh || hans || hant || cn || tw || hk || sg || mo || my; //保證每一語言有值
}
function wgULS (hans, hant, cn, tw, hk, sg, zh, mo, my) {
return wgUXS(mw.config.get('wgUserVariant'), hans, hant, cn, tw, hk, sg, zh, mo, my);
}
function ReflinksGadget() {
this.server = typeof rlServer !== 'undefined' ? rlServer
: "https://tools.wmflabs.org/refill";
this.wiki = typeof rlWiki !== 'undefined' ? rlWiki
: null;
this.portletLink = "";
this.optionsLink = "";
this.messages = {
'appname': "reFill",
'heading-options': wgULS("选项", "選項"),
'label-fixpage': wgULS("修復页面", "修復頁面"),
'label-gadgetoptions': wgULS("(选项)", "(選項)")
};
this.messagesLoaded = false;
this.suppressConsole = false;
this.log = function( message ) {
if ( !this.suppressConsole ) {
console.log( "Reflinks: " + message );
}
};
this.isWatching = function() {
// Let's use a little hack to determine whether the current page is watched or not
if ( $( "#ca-unwatch" ).length !== 0 ) {
return true;
} else {
return false;
}
};
this.getSubmitUrl = function( defaults ) {
var pagename = mw.config.get( "wgPageName" );
var url = this.server + "/result.php?page=" + encodeURIComponent( pagename );
if ( defaults ) {
url += "&defaults=y";
}
if ( !this.isWatching() ) {
url += "&nowatch=y";
}
if ( this.wiki !== null ) {
url += "&wiki=" + encodeURIComponent( this.wiki );
}
return url;
};
this.msg = function( key ) {
if ( !this.messagesLoaded ) {
this.loadMessages( false );
}
// Even if it's "unloaded", we still have an incomplete set of English messages
if ( this.messages.hasOwnProperty( key ) ) {
return this.messages[key];
} else {
this.log( "Message not found: " + key );
return "[" + key + "]";
}
};
this.loadMessages = function( forceReload ) {
var ts;
try {
ts = localStorage.getItem( "reflinks-messagests" );
} catch (e) {
// LocalStorage can be unavailable for many reasons (full, privacy mode etc)
// Ignore such exceptions
}
if ( !ts || ts < (new Date()).getTime() - 259200000 || forceReload ) { // older than 3 days
this.log( "Loading messages from API" );
var obj = this;
$.getJSON( this.server + "/api.php?action=i18n&callback=?", function( data ) {
obj.messages = data;
obj.messagesLoaded = true;
try {
localStorage.setItem( "reflinks-messages", JSON.stringify( data ) );
localStorage.setItem( "reflinks-messagests", (new Date()).getTime() );
} catch (e) {
}
} );
} else if ( ts ) { // Cache exists
this.log( "Loading messages from cache @ " + ts );
this.messages = JSON.parse( localStorage.getItem( "reflinks-messages" ) );
this.messagesLoaded = true;
}
};
this.setUpForm = function() {
this.tearDownForm();
var formControls =
$( "#mw-content-text" ).prepend(
$( "<div>" ).attr( "id", "reflinks" ).attr( "style", "border: 1px solid #ccc; border-radius: 2px; margin: 5px; padding: 0 10px 10px 10px;" ).prepend(
$( "<h2>" ).text( this.msg( "heading-options" ) ),
$( "<form>" ).attr( "id", "reflinks-form" ).attr( "method", "post" ).prepend(
$( "<div>" ).attr( "id", "reflinks-options" ).text( this.msg( "loadingoptions" ) ),
$( "<button>" ).addClass( "mw-ui-button mw-ui-progressive" ).text( this.msg( "label-fixpage" ) ),
$( "<a>" ).addClass( "mw-ui-button mw-ui-quiet" ).attr( "href", this.server ).text( this.msg( "label-homepage" ) )
)
)
);
/*
$( "#mw-content-text" ).prepend( "\
<div id='reflinks' style='border: 1px solid #ccc; border-radius: 2px; margin: 5px; padding: 0 10px 10px 10px;'>\
<h2>Options</h1>\
<form id='reflinks-form' method='post'>\
<div id='reflinks-options'>Loading options...</div>\
<input name='method-wiki' type='submit' value='Fix page'/>\
<a href='" + this.server + "' style='color: #555;'>Tool homepage</a>\
</form>\
</div>" );*/
$( "#reflinks-form" ).attr( "action", this.getSubmitUrl( false ) );
if ( !this.isWatching() ) {
var nowatch = $( "<input>" ).attr( "name", "nowatch" ).attr( "type", "hidden" ).val( "y" );
$( "#reflinks-form" ).append( nowatch );
}
$( "html, body" ).animate( {
scrollTop: $( "#reflinks" ).offset().top - 10
}, 250 );
};
this.loadRemoteOptions = function() {
$.getJSON( this.server + "/api.php?action=optionsform&callback=?", function ( json ) {
$( "#reflinks-options" ).html( json.form );
} );
};
this.tearDownForm = function() {
$( "#reflinks" ).remove();
};
this.init = function() {
this.loadMessages( false );
this.portletLink = mw.util.addPortletLink( "p-views", this.getSubmitUrl( true ), this.msg( "appname" ), "ca-refill" );
$('#ca-refill').addClass('collapsible');
this.optionslink = document.getElementById("p-tb").children[1].children[0].appendChild(document.createElement("li"));
this.optionslink.id = "t-refillopts";
var obj = this;
this.optionsLink = $( "<a>" ).attr( "href", "#" ).text( "reFill " + this.msg( "label-gadgetoptions" ) ).click( function() {
obj.setUpForm();
obj.loadRemoteOptions();
obj.loadMessages( true );
} );
$(this.optionslink).append(this.optionsLink);
};
}
// Let's put it in global scope for easy debugging
var rlGadget = new ReflinksGadget();
mw.loader.using( 'mediawiki.util' ).then( function () {
if (document.getElementById("ca-edit"))
rlGadget.init();
} );