「MediaWiki:Gadget-morebits.js」:各本之異

刪去的內容 新增的內容
WAN233
// Edit via Wikiplus
WAN233
WAN233之作(欲言之,可至)為Krinkle之本耳
回退
第一行:
// <nowiki>
// vim: set noet sts=0 sw=8:
/**
* morebits.js
第一六行 ⟶ 第一七行:
* - The whole thing relies on jQuery. But most wikis should provide this by default.
* - Morebits.quickForm, Morebits.simpleWindow, and Morebits.status rely on the "morebits.css" file for their styling.
* - Morebits.simpleWindow relies on jquery UI Dialog (from ResourceLoader module name 'jquery.ui').
* - Morebits.quickForm tooltips rely on Tipsy (ResourceLoader module name 'jquery.tipsy').
* For external installations, Tipsy is available at [http://onehackoranother.com/projects/jquery/tipsy].
* - To create a gadget based on morebits.js, use this syntax in MediaWiki:Gadgets-definition:
* * GadgetName[ResourceLoader|dependencies=mediawiki.user,mediawiki.util,jquery.ui,jquery.tipsy]|morebits.js|morebits.css|GadgetName.js
* - Alternatively, you can configure morebits.js as a hidden gadget in MediaWiki:Gadgets-definition:
* * morebits[ResourceLoader|dependencies=mediawiki.user,mediawiki.util,jquery.ui,jquery.tipsy|hidden]|morebits.js|morebits.css
* and then load ext.gadget.morebits as one of the dependencies for the new gadget
*
* AllMost of the stuff here worksdoesn't work on allIE < 9. It browsersis foryour whichscript's MediaWikiresponsibility providesto JavaScriptenforce supportthis.
*
* This library is maintained by the maintainers of Twinkle.
第三三行 ⟶ 第三一行:
 
 
( function ( window, document, $, undefined ) { // Wrap entire file with anonymous function
 
// MediaWiki:Gadget-site-lib.js
window.wgUXS = function (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; // 保證每一語言有值
};
 
window.wgULS = function (hans, hant, cn, tw, hk, sg, zh, mo, my) {
return wgUXS(mw.config.get('wgUserLanguage'), hans, hant, cn, tw, hk, sg, zh, mo, my); // eslint-disable-line no-undef
};
 
window.wgUVS = function (hans, hant, cn, tw, hk, sg, zh, mo, my) {
return wgUXS(mw.config.get('wgUserVariant'), hans, hant, cn, tw, hk, sg, zh, mo, my); // eslint-disable-line no-undef
};
 
var Morebits = {};
第六六行 ⟶ 第四一行:
* **************** Morebits.userIsInGroup() ****************
* Simple helper function to see what groups a user might belong
* @param {string} group eg. `sysop`, `extendedconfirmed`, etc
* @returns {boolean}
*/
 
Morebits.userIsInGroup = function (group) {
Morebits.userIsInGroup = function ( group ) {
return mw.config.get('wgUserGroups').indexOf(group) !== -1;
return $.inArray(group, mw.config.get( 'wgUserGroups' )) !== -1;
};
 
// Used a lot
Morebits.userIsSysop = Morebits.userIsInGroup('sysop');
 
 
/**
* **************** Morebits.isIPRangeisIPAddress() ****************
* Helper function: Returns true if given string contains a valid IPv4 or
* IPv6 address
*/
 
Morebits.isIPRangeisIPAddress = function ( address ) {
return mw.util.isIPAddressisIPv4Address(address, true) &&|| !mw.util.isIPAddressisIPv6Address(address);
};
 
 
 
第九〇行 ⟶ 第六六行:
* includes/utils/IP.php.
* Converts an IPv6 address to the canonical form stored and used by MediaWiki.
* @param {string} address - The IPv6 address
* @returns {string}
*/
 
Morebits.sanitizeIPv6 = function (address) {
Morebits.sanitizeIPv6 = function ( address ) {
address = address.trim();
if ( address === '' ) {
return null;
}
if ( mw.util.isIPv4Address( address ) || !mw.util.isIPv6Address( address ) ) {
return address; // nothing else to do for IPv4 addresses or invalid ones
}
第一〇四行 ⟶ 第七九行:
address = address.toUpperCase();
// Expand zero abbreviations
var abbrevPos = address.indexOf( '::' );
if ( abbrevPos > -1 ) {
// We know this is valid IPv6. Find the last index of the
// address before any CIDR number (e.g. "a:b:c::/24").
var CIDRStart = address.indexOf( '/' );
var addressEnd = ( CIDRStart > -1 ) ? CIDRStart - 1 : address.length - 1;
// If the '::' is at the beginning...
var repeat, extra, pad;
if ( abbrevPos === 0 ) {
repeat = '0:';
extra = ( address === '::' ) ? '0' : ''; // for the address '::'
pad = 9; // 7+2 (due to '::')
// If the '::' is at the end...
} else if ( abbrevPos === ( addressEnd - 1 ) ) {
repeat = ':0';
extra = '';
第一二八行 ⟶ 第一〇三行:
}
var replacement = repeat;
pad -= address.split( ':' ).length - 1;
for ( var i = 1; i < pad; i++ ) {
replacement += repeat;
}
replacement += extra;
address = address.replace( '::', replacement );
}
// Remove leading zeros from each bloc as needed
address = address.replace( /(^|:)0+([0-9A-Fa-f]{1,4})/g, '$1$2' );
 
return address;
第一五一行 ⟶ 第一二六行:
*
* select A combo box (aka drop-down).
* - Attributes: name, label, multiple, size, list, event, disabled
* option An element for a combo box.
* - Attributes: value, label, selected, disabled
第一五七行 ⟶ 第一三二行:
* - Attributes: label, list
* field A fieldset (aka group box).
* - Attributes: name, label, disabled
* checkbox A checkbox. Must use "list" parameter.
* - Attributes: name, list, event
第一六三行 ⟶ 第一三八行:
* radio A radio button. Must use "list" parameter.
* - Attributes: name, list, event
* - Attributes (within list): name, label, value, checked, disabled, hidden, event, subgroup
* input A text box.
* - Attributes: name, label, value, size, disabled, required, readonly, hidden, maxlength, event
* dyninput A set of text boxes with "Remove" buttons and an "Add" button.
* - Attributes: name, label, min, max, sublabel, value, size, maxlength, event
第一七九行 ⟶ 第一五四行:
* - Attributes: name, label, disabled, event
* textarea A big, multi-line text box.
* - Attributes: name, label, value, cols, rows, disabled, required, readonly, hidden
* fragment A DocumentFragment object.
* - No attributes, and no global attributes except adminonly
第一八六行 ⟶ 第一六一行:
*/
 
Morebits.quickForm = function QuickForm( event, eventType ) {
/**
this.root = new Morebits.quickForm.element( { type: 'form', event: event, eventType:eventType } );
* @constructor
* @param {event} event - Function to execute when form is submitted
* @param {string} [eventType=submit] - Type of the event (default: submit)
*/
Morebits.quickForm = function QuickForm(event, eventType) {
this.root = new Morebits.quickForm.element({ type: 'form', event: event, eventType: eventType });
};
 
/**
* Renders the HTML output of the quickForm
* @returns {HTMLElement}
*/
Morebits.quickForm.prototype.render = function QuickFormRender() {
var ret = this.root.render();
第二〇五行 ⟶ 第一七一行:
};
 
Morebits.quickForm.prototype.append = function QuickFormAppend( data ) {
/**
return this.root.append( data );
* Append element to the form
* @param {(Object|Morebits.quickForm.element)} data - a quickform element, or the object with which
* a quickform element is constructed.
* @returns {Morebits.quickForm.element} - same as what is passed to the function
*/
Morebits.quickForm.prototype.append = function QuickFormAppend(data) {
return this.root.append(data);
};
 
Morebits.quickForm.element = function QuickFormElement( data ) {
/**
* @constructor
* @param {Object} data - Object representing the quickform element. See class documentation
* comment for available types and attributes for each.
*/
Morebits.quickForm.element = function QuickFormElement(data) {
this.data = data;
this.childs = [];
第二二八行 ⟶ 第一八三行:
Morebits.quickForm.element.id = 0;
 
Morebits.quickForm.element.prototype.append = function QuickFormElementAppend( data ) {
/**
* Appends an element to current element
* @param {Morebits.quickForm.element} data A quickForm element or the object required to
* create the quickForm element
* @returns {Morebits.quickForm.element} The same element passed in
*/
Morebits.quickForm.element.prototype.append = function QuickFormElementAppend(data) {
var child;
if ( data instanceof Morebits.quickForm.element ) {
child = data;
} else {
child = new Morebits.quickForm.element( data );
}
this.childs.push( child );
return child;
};
 
// This should be called without parameters: form.render()
/**
Morebits.quickForm.element.prototype.render = function QuickFormElementRender( internal_subgroup_id ) {
* Renders the HTML output for the quickForm element
var currentNode = this.compute( this.data, internal_subgroup_id );
* This should be called without parameters: form.render()
* @returns {HTMLElement}
*/
Morebits.quickForm.element.prototype.render = function QuickFormElementRender(internal_subgroup_id) {
var currentNode = this.compute(this.data, internal_subgroup_id);
 
for ( var i = 0; i < this.childs.length; ++i ) {
// do not pass internal_subgroup_id to recursive calls
currentNode[1].appendChild( this.childs[i].render() );
}
return currentNode[0];
};
 
Morebits.quickForm.element.prototype.compute = function QuickFormElementCompute( data, in_id ) {
var node;
var childContainder = null;
var label;
var id = ( in_id ? in_id + '_' : '' ) + 'node_' + this.id;
if ( data.adminonly && !Morebits.userIsSysopuserIsInGroup( 'sysop' ) ) {
// hell hack alpha
data.type = 'hidden';
第二七一行 ⟶ 第二一六行:
 
var i, current, subnode;
switch ( data.type ) {
case 'form':
node = document.createElement( 'form' );
node.className = '"quickform'";
node.setAttribute( 'action', 'javascript:void(0);');
if ( data.event ) {
node.addEventListener( data.eventType || 'submit', data.event , false );
}
break;
case 'fragment':
node = document.createDocumentFragment();
// fragments can't have any attributes, so just return it straight away
return [ node, node ];
case 'select':
node = document.createElement( 'div' );
 
node.setAttribute( 'id', 'div_' + id );
if ( data.label ) {
label = node.appendChild( document.createElement( 'label' ) );
label.setAttribute( 'for', id );
label.appendChild( document.createTextNode( data.label ) );
}
var select = node.appendChild( document.createElement( 'select' ) );
if ( data.event ) {
select.addEventListener( 'change', data.event, false );
}
if ( data.multiple ) {
select.setAttribute( 'multiple', 'multiple' );
}
if ( data.size ) {
select.setAttribute( 'size', data.size );
}
select.setAttribute( 'name', data.name );
if (data.disabled) {
select.setAttribute('disabled', 'disabled');
}
select.setAttribute('name', data.name);
 
if ( data.list ) {
for ( i = 0; i < data.list.length; ++i ) {
 
current = data.list[i];
 
if ( current.list ) {
current.type = 'optgroup';
} else {
current.type = 'option';
}
 
subnode = this.compute( current );
select.appendChild( subnode[0] );
}
}
}
childContainder = select;
childContainder = select;
break;
break;
case 'option':
node = document.createElement( 'option' );
node.values = data.value;
node.setAttribute( 'value', data.value );
if ( data.selected ) {
node.setAttribute( 'selected', 'selected' );
}
if ( data.disabled ) {
node.setAttribute( 'disabled', 'disabled' );
}
node.setAttribute( 'label', data.label );
node.appendChild( document.createTextNode( data.label ) );
break;
case 'optgroup':
node = document.createElement( 'optgroup' );
node.setAttribute( 'label', data.label );
 
if ( data.list ) {
for ( i = 0; i < data.list.length; ++i ) {
 
current = data.list[i];
current.type = 'option'; // must be options here
 
subnode = this.compute( current );
node.appendChild( subnode[0] );
}
}
}
break;
case 'field':
node = document.createElement( 'fieldset' );
label = node.appendChild( document.createElement( 'legend' ) );
label.appendChild( document.createTextNode( data.label ) );
if ( data.name ) {
node.setAttribute( 'name', data.name );
}
break;
if (data.disabled) {
case 'checkbox':
node.setAttribute('disabled', 'disabled');
case 'radio':
}
node = document.createElement( 'div' );
break;
if( data.list ) {
case 'checkbox':
for( i = 0; i < data.list.length; ++i ) {
case 'radio':
var cur_id = id + '_' + i;
node = document.createElement('div');
if current = (data.list) {[i];
var cur_div;
for (i = 0; i < data.list.length; ++i) {
varif( cur_idcurrent.type = id +== '_header' +) i;{
current = data.list[i];
var cur_div;
if (current.type === 'header') {
// inline hack
cur_div = node.appendChild( document.createElement( 'h6' ) );
cur_div.appendChild( document.createTextNode( current.label ) );
if ( current.tooltip ) {
Morebits.quickForm.element.generateTooltip( cur_div , current );
}
continue;
}
continue;
cur_div = node.appendChild(document.createElement('div'));
}
if (current.hidden) {
cur_div = node.setAttributeappendChild( document.createElement('hidden', 'div' ) );
subnode = cur_div.appendChild( document.createElement( 'input' ) );
}
subnode.values = cur_div.appendChild(documentcurrent.createElement('input'))value;
subnode.valuessetAttribute( ='value', current.value );
subnode.setAttribute( 'valuename', current.valuename || data.name );
subnode.setAttribute( 'nametype', currentdata.nametype || data.name);
subnode.setAttribute( 'typeid', data.typecur_id );
subnode.setAttribute('id', cur_id);
 
if ( current.checked ) {
subnode.setAttribute( 'checked', 'checked' );
}
if ( current.disabled ) {
subnode.setAttribute( 'disabled', 'disabled' );
}
label = cur_div.appendChild( document.createElement( 'label' ) );
label.appendChild( document.createTextNode( current.label ) );
label.setAttribute( 'for', cur_id );
if ( current.tooltip ) {
Morebits.quickForm.element.generateTooltip( label, current );
}
// styles go on the label, doesn't make sense to style a checkbox/radio
if ( current.style ) {
labelsubnode.setAttribute( 'style', current.style );
}
 
var event;
if( current.subgroup ) {
var tmpgroup = current.subgroup;
 
if( ! $.isArray( tmpgroup ) ) {
tmpgroup = [ tmpgroup ];
}
 
var subgroupRaw = new Morebits.quickForm.element({
var event;
type: 'div',
if (current.subgroup) {
varid: tmpgroupid =+ current.subgroup;'_' + i + '_subgroup'
});
 
if (!Array$.isArrayeach( tmpgroup), function( idx, el ) {
tmpgroupvar newEl = [$.extend( {}, tmpgroupel ]);
if( ! newEl.type ) {
newEl.type = data.type;
}
newEl.name = (current.name || data.name) + '.' + newEl.name;
subgroupRaw.append( newEl );
} );
 
var subgroupRawsubgroup = new MorebitssubgroupRaw.quickForm.elementrender({ cur_id );
subgroup.className = "quickformSubgroup";
type: 'div',
subnode.subgroup = subgroup;
id: id + '_' + i + '_subgroup'
})subnode.shown = false;
$.each(tmpgroup, function(idx, el) {
var newEl = $.extend({}, el);
if (!newEl.type) {
newEl.type = data.type;
}
newEl.name = (current.name || data.name) + '.' + newEl.name;
subgroupRaw.append(newEl);
});
 
var subgroupevent = subgroupRaw.renderfunction(cur_ide); {
if( e.target.checked ) {
subgroup.className = 'quickformSubgroup';
subnode e.subgroup =target.parentNode.appendChild( e.target.subgroup );
subnode if( e.showntarget.type === 'radio' ) false;{
var name = e.target.name;
 
event if( e.target.form.names[name] !== function(eundefined ) {
e.target.form.names[name].parentNode.removeChild( e.target.form.names[name].subgroup );
if (e.target.checked) {
e.target.parentNode.appendChild(e.target.subgroup);
if (e.target.type === 'radio') {
var name = e.target.name;
if (e.target.form.names[name] !== undefined) {
e.target.form.names[name].parentNode.removeChild(e.target.form.names[name].subgroup);
}
e.target.form.names[name] = e.target;
}
e.target.form.names[name] = e.target;
} else {
e.target.parentNode.removeChild(e.target.subgroup);
}
}; else {
e.target.parentNode.removeChild( e.target.subgroup );
subnode.addEventListener('change', event, true);
if (current.checked) {
subnode.parentNode.appendChild(subgroup);
}
};
} else if (data.type === 'radio') {
subnode.addEventListener( 'change', event, true );
event = function(e) {
if (e.target current.checked ) {
subnode.parentNode.appendChild( subgroup );
var name = e.target.name;
}
if (e.target.form.names[name] !== undefined) {
} else if( data.type === 'radio' ) {
e.target.form.names[name].parentNode.removeChild(e.target.form.names[name].subgroup);
event = function(e) {
}
deleteif( e.target.form.names[name];checked ) {
var name = e.target.name;
if( e.target.form.names[name] !== undefined ) {
e.target.form.names[name].parentNode.removeChild( e.target.form.names[name].subgroup );
}
delete e.target.form.names[name];
};
}
};
subnode.addEventListener( 'change', event, true );
}
// add users' event last, so it can interact with the subgroup
if ( data.event ) {
subnode.addEventListener( 'change', data.event, false );
} else if ( current.event ) {
subnode.addEventListener( 'change', current.event, true );
}
}
}
}
break;
case 'input':
node = document.createElement( 'div' );
node.setAttribute( 'id', 'div_' + id );
if (data.hidden) {
node.setAttribute('hidden', '');
}
 
if ( data.label ) {
label = node.appendChild( document.createElement( 'label' ) );
label.appendChild( document.createTextNode( data.label ) );
label.setAttribute( 'for', data.id || id);
}
 
subnode = node.appendChild( document.createElement( 'input' ) );
if ( data.value ) {
subnode.setAttribute( 'value', data.value );
}
subnode.setAttribute( 'name', data.name );
if (data.placeholder) {
subnode.setAttribute( 'placeholderid', data.placeholderid );
subnode.setAttribute( 'type', 'text' );
}
subnode.setAttributeif('name', data.namesize ); {
subnode.setAttribute( 'typesize', 'text'data.size );
}
if (data.size) {
if( data.disabled ) {
subnode.setAttribute('size', data.size);
subnode.setAttribute( 'disabled', 'disabled' );
}
}
if (data.disabled) {
if( data.readonly ) {
subnode.setAttribute('disabled', 'disabled');
subnode.setAttribute( 'readonly', 'readonly' );
}
}
if (data.required) {
if( data.maxlength ) {
subnode.setAttribute('required', 'required');
subnode.setAttribute( 'maxlength', data.maxlength );
}
}
if (data.readonly) {
if( data.event ) {
subnode.setAttribute('readonly', 'readonly');
subnode.addEventListener( 'keyup', data.event, false );
}
}
if (data.maxlength) {
break;
subnode.setAttribute('maxlength', data.maxlength);
case 'dyninput':
}
ifvar min = (data.event)min || {1;
var max = data.max || Infinity;
subnode.addEventListener('keyup', data.event, false);
}
childContainder = subnode;
break;
case 'dyninput':
var min = data.min || 1;
var max = data.max || Infinity;
 
node = document.createElement( 'div' );
 
label = node.appendChild( document.createElement( 'h5' ) );
label.appendChild( document.createTextNode( data.label ) );
 
var listNode = node.appendChild( document.createElement( 'div' ) );
 
var more = this.compute( {
type: 'button',
label: '更多more',
disabled: min >= max,
event: function(e) {
var new_node = new Morebits.quickForm.element( e.target.sublist );
e.target.area.appendChild( new_node.render() );
 
if ( ++e.target.counter >= e.target.max ) {
e.target.setAttribute( 'disabled', 'disabled' );
}
e.stopPropagation();
}
} );
 
node.appendChild( more[0] );
var moreButton = more[1];
 
var sublist = {
type: '_dyninput_element',
label: data.sublabel || data.label,
name: data.name,
value: data.value,
size: data.size,
remove: false,
maxlength: data.maxlength,
event: data.event
};
 
for ( i = 0; i < min; ++i ) {
var elem = new Morebits.quickForm.element( sublist );
listNode.appendChild( elem.render() );
}
sublist.remove = true;
sublist.morebutton = moreButton;
sublist.listnode = listNode;
 
moreButton.sublist = sublist;
moreButton.area = listNode;
moreButton.max = max - min;
moreButton.counter = 0;
break;
case '_dyninput_element': // Private, similar to normal input
node = document.createElement( 'div' );
 
if ( data.label ) {
label = node.appendChild( document.createElement( 'label' ) );
label.appendChild( document.createTextNode( data.label ) );
label.setAttribute( 'for', id );
}
 
subnode = node.appendChild( document.createElement( 'input' ) );
if ( data.value ) {
subnode.setAttribute( 'value', data.value );
}
subnode.setAttribute( 'name', data.name );
subnode.setAttribute( 'type', 'text' );
if ( data.size ) {
subnode.setAttribute( 'size', data.size );
}
if ( data.maxlength ) {
subnode.setAttribute( 'maxlength', data.maxlength );
}
if ( data.event ) {
subnode.addEventListener( 'keyup', data.event, false );
}
if ( data.remove ) {
var remove = this.compute( {
type: 'button',
label: '移除remove',
event: function(e) {
var list = e.target.listnode;
第六〇二行 ⟶ 第五二九行:
var more = e.target.morebutton;
 
list.removeChild( node );
--more.counter;
more.removeAttribute( 'disabled' );
e.stopPropagation();
}
} );
node.appendChild( remove[0] );
var removeButton = remove[1];
removeButton.inputnode = node;
removeButton.listnode = data.listnode;
removeButton.morebutton = data.morebutton;
}
break;
case 'hidden':
node = document.createElement( 'input' );
node.setAttribute( 'type', 'hidden' );
node.values = data.value;
node.setAttribute( 'value', data.value );
node.setAttribute( 'name', data.name );
break;
case 'header':
node = document.createElement( 'h5' );
node.appendChild( document.createTextNode( data.label ) );
break;
case 'div':
node = document.createElement( 'div' );
if (data.name) {
node.setAttribute( 'name', data.name );
}
if (data.label) {
if ( ! $.isArray( data.label ) ) {
data.label = [ data.label ];
}
var result = document.createElement( 'span' );
break;
result.className = 'quickformDescription';
case 'hidden':
for( i = 0; i < data.label.length; ++i ) {
node = document.createElement('input');
if( typeof data.label[i] === 'string' ) {
node.setAttribute('type', 'hidden');
result.appendChild( document.createTextNode( data.label[i] ) );
node.values = data.value;
} else if( data.label[i] instanceof Element ) {
node.setAttribute('value', data.value);
node result.setAttributeappendChild('name', data.namelabel[i] );
break;
case 'header':
node = document.createElement('h5');
node.appendChild(document.createTextNode(data.label));
break;
case 'div':
node = document.createElement('div');
if (data.name) {
node.setAttribute('name', data.name);
}
if (data.label) {
if (!Array.isArray(data.label)) {
data.label = [ data.label ];
}
var result = document.createElement('span');
result.className = 'quickformDescription';
for (i = 0; i < data.label.length; ++i) {
if (typeof data.label[i] === 'string') {
result.appendChild(document.createTextNode(data.label[i]));
} else if (data.label[i] instanceof Element) {
result.appendChild(data.label[i]);
}
}
node.appendChild(result);
}
node.appendChild( result );
break;
}
case 'submit':
break;
node = document.createElement('span');
case 'submit':
childContainder = node.appendChild(document.createElement('input'));
node = document.createElement( 'span' );
childContainder.setAttribute('type', 'submit');
childContainder = node.appendChild(document.createElement( 'input' ));
if (data.label) {
childContainder.setAttribute( 'valuetype', data.label'submit' );
if( data.label ) {
}
childContainder.setAttribute( 'namevalue', data.namelabel || 'submit');
}
if (data.disabled) {
childContainder.setAttribute( 'disabledname', data.name || 'disabledsubmit' );
if( data.disabled ) {
}
childContainder.setAttribute( 'disabled', 'disabled' );
break;
}
case 'button':
break;
node = document.createElement('span');
case 'button':
childContainder = node.appendChild(document.createElement('input'));
node = document.createElement( 'span' );
childContainder.setAttribute('type', 'button');
childContainder = node.appendChild(document.createElement( 'input' ));
if (data.label) {
childContainder.setAttribute( 'valuetype', data.label'button' );
if( data.label ) {
}
childContainder.setAttribute( 'namevalue', data.namelabel );
}
if (data.disabled) {
childContainder.setAttribute( 'disabledname', 'disabled'data.name );
if( data.disabled ) {
}
childContainder.setAttribute( 'disabled', 'disabled' );
if (data.event) {
}
childContainder.addEventListener('click', data.event, false);
if( data.event ) {
}
childContainder.addEventListener( 'click', data.event, false );
break;
}
case 'textarea':
break;
node = document.createElement('div');
case 'textarea':
node.setAttribute('id', 'div_' + id);
node = document.createElement( 'div' );
if (data.hidden) {
node.setAttribute( 'hiddenid', 'div_' + id );
if( data.label ) {
}
label = node.appendChild( document.createElement( 'h5' ) );
if (data.label) {
label = node.appendChild( document.createElementcreateTextNode('h5' data.label ) );
// TODO need to nest a <label> tag in here without creating extra vertical space
var labelElement = document.createElement('label');
//label.setAttribute( 'for', id );
labelElement.textContent = data.label;
}
labelElement.setAttribute('for', data.id || id);
labelsubnode = node.appendChild(labelElement document.createElement( 'textarea' ) );
subnode.setAttribute( 'name', data.name );
}
if( data.cols ) {
subnode = node.appendChild(document.createElement('textarea'));
subnode.setAttribute( 'namecols', data.namecols );
}
if (data.cols) {
subnode.setAttributeif('cols', data.colsrows ); {
subnode.setAttribute( 'rows', data.rows );
}
}
if (data.rows) {
if( data.disabled ) {
subnode.setAttribute('rows', data.rows);
subnode.setAttribute( 'disabled', 'disabled' );
}
}
if (data.disabled) {
if( data.readonly ) {
subnode.setAttribute('disabled', 'disabled');
subnode.setAttribute( 'readonly', 'readonly' );
}
}
if (data.required) {
if( data.value ) {
subnode.setAttribute('required', 'required');
subnode.value = data.value;
}
}
if (data.readonly) {
break;
subnode.setAttribute('readonly', 'readonly');
default:
}
throw new Error("Morebits.quickForm: unknown element type " + data.type.toString());
if (data.value) {
subnode.value = data.value;
}
if (data.placeholder) {
subnode.placeholder = data.placeholder;
}
childContainder = subnode;
break;
default:
throw new Error('Morebits.quickForm: unknown element type ' + data.type.toString());
}
 
if ( !childContainder ) {
childContainder = node;
}
if ( data.tooltip ) {
Morebits.quickForm.element.generateTooltip( label || node , data );
}
 
if ( data.extra ) {
childContainder.extra = data.extra;
}
if ( data.style ) {
childContainder.setAttribute( 'style', data.style );
}
if ( data.className ) {
childContainder.className = ( childContainder.className ?
childContainder.className + '" '" + data.className :
data.className );
}
childContainder.setAttribute( 'id', data.id || id );
 
return [ node, childContainder ];
第七四〇行 ⟶ 第六五六行:
 
Morebits.quickForm.element.autoNWSW = function() {
return $(this).offset().top > ($(document).scrollTop() + ($(window).height() / 2)) ? 'sw' : 'nw';
};
 
Morebits.quickForm.element.generateTooltip = function QuickFormElementGenerateTooltip( node, data ) {
/**
* Create a jquery.tipsy-based tooltip.
* @requires jquery.tipsy
* @param {HTMLElement} node - the HTML element beside which a tooltip is to be generated
* @param {Object} data - tooltip-related configuration data
*/
Morebits.quickForm.element.generateTooltip = function QuickFormElementGenerateTooltip(node, data) {
$('<span/>', {
'class': 'ui-icon ui-icon-help ui-icon-inline morebits-tooltip'
}).appendTo(node).tipsy({
'fallback': data.tooltip,
'fade': true,
'gravity': (data.type === '"input'" || data.type === '"select'") ?
Morebits.quickForm.element.autoNWSW : $.fn.tipsy.autoWE,
'html': true,
'delayOut': 250
});
};
 
 
// Some utility methods for manipulating quickForms after their creation:
// (None of these work for "dyninput" type fields at present)
 
 
/**
* Some utility methods for manipulating quickForms after their creation
* Returns all form elements with a given field name or ID
* (None of them work for "dyninput" type fields at present)
* @param {HTMLFormElement} form
*
* @param {string} fieldName - the name or id of the fields
* Morebits.quickForm.getElements(form, fieldName)
* @returns {HTMLElement[]} - array of matching form elements
* Returns all form elements with a given field name or ID
*
* Morebits.quickForm.getCheckboxOrRadio(elementArray, value)
* Searches the array of elements for a checkbox or radio button with a certain |value| attribute
*
* Morebits.quickForm.getElementContainer(element)
* Returns the <div> containing the form element, or the form element itself
* May not work as expected on checkboxes or radios
*
* Morebits.quickForm.getElementLabelObject(element)
* Gets the HTML element that contains the label of the given form element (mainly for internal use)
*
* Morebits.quickForm.getElementLabel(element)
* Gets the label text of the element
*
* Morebits.quickForm.setElementLabel(element, labelText)
* Sets the label of the element to the given text
*
* Morebits.quickForm.overrideElementLabel(element, temporaryLabelText)
* Stores the element's current label, and temporarily sets the label to the given text
*
* Morebits.quickForm.resetElementLabel(element)
* Restores the label stored by overrideElementLabel
*
* Morebits.quickForm.setElementVisibility(element, visibility)
* Shows or hides a form element plus its label and tooltip
*
* Morebits.quickForm.setElementTooltipVisibility(element, visibility)
* Shows or hides the "question mark" icon next to a form element
*/
 
Morebits.quickForm.getElements = function QuickFormGetElements(form, fieldName) {
var $form = $(form);
第七八六行 ⟶ 第七二一行:
};
 
/**
* Searches the array of elements for a checkbox or radio button with a certain
* `value` attribute, and returns the first such element. Returns null if not found.
* @param {HTMLInputElement[]} elementArray - array of checkbox or radio elements
* @param {string} value - value to search for
* @returns {HTMLInputElement}
*/
Morebits.quickForm.getCheckboxOrRadio = function QuickFormGetCheckboxOrRadio(elementArray, value) {
var found = $.grep(elementArray, function(el) {
第八〇三行 ⟶ 第七三一行:
};
 
/**
* Returns the <div> containing the form element, or the form element itself
* May not work as expected on checkboxes or radios
* @param {HTMLElement} element
* @returns {HTMLElement}
*/
Morebits.quickForm.getElementContainer = function QuickFormGetElementContainer(element) {
// for divs, headings and fieldsets, the container is the element itself
第八二〇行 ⟶ 第七四二行:
};
 
/**
* Gets the HTML element that contains the label of the given form element
* (mainly for internal use)
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @returns {HTMLElement}
*/
Morebits.quickForm.getElementLabelObject = function QuickFormGetElementLabelObject(element) {
// for buttons, divs and headers, the label is on the element itself
if (element.type === '"button'" || element.type === '"submit'" ||
element instanceof HTMLDivElement || element instanceof HTMLHeadingElement) {
return element;
 
// for fieldsets, the label is the child <legend> element
} else if (element instanceof HTMLFieldSetElement) {
return element.getElementsByTagName('"legend'")[0];
 
// for textareas, the label is the sibling <h5> element
} else if (element instanceof HTMLTextAreaElement) {
return element.parentNode.getElementsByTagName('"h5'")[0];
 
// for others, the label is the sibling <label> element
} else {
return element.parentNode.getElementsByTagName("label")[0];
}
 
// for others, the label is the sibling <label> element
return null;
return element.parentNode.getElementsByTagName('label')[0];
};
 
/**
* Gets the label text of the element
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @returns {string}
*/
Morebits.quickForm.getElementLabel = function QuickFormGetElementLabel(element) {
var labelElement = Morebits.quickForm.getElementLabelObject(element);
第八五六行 ⟶ 第七七三行:
};
 
/**
* Sets the label of the element to the given text
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @param {string} labelText
* @returns {boolean} true if succeeded, false if the label element is unavailable
*/
Morebits.quickForm.setElementLabel = function QuickFormSetElementLabel(element, labelText) {
var labelElement = Morebits.quickForm.getElementLabelObject(element);
第八七二行 ⟶ 第七八三行:
};
 
/**
* Stores the element's current label, and temporarily sets the label to the given text
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @param {string} temporaryLabelText
* @returns {boolean} true if succeeded, false if the label element is unavailable
*/
Morebits.quickForm.overrideElementLabel = function QuickFormOverrideElementLabel(element, temporaryLabelText) {
if (!element.hasAttribute('"data-oldlabel'")) {
element.setAttribute('"data-oldlabel'", Morebits.quickForm.getElementLabel(element));
}
return Morebits.quickForm.setElementLabel(element, temporaryLabelText);
};
 
/**
* Restores the label stored by overrideElementLabel
* @param {(HTMLElement|Morebits.quickForm.element)} element
* @returns {boolean} true if succeeded, false if the label element is unavailable
*/
Morebits.quickForm.resetElementLabel = function QuickFormResetElementLabel(element) {
if (element.hasAttribute('"data-oldlabel'")) {
return Morebits.quickForm.setElementLabel(element, element.getAttribute('"data-oldlabel'"));
}
return null;
};
 
/**
* Shows or hides a form element plus its label and tooltip
* @param {(HTMLElement|jQuery|string)} element HTML/jQuery element, or jQuery selector string
* @param {boolean} [visibility] Skip this to toggle visibility
*/
Morebits.quickForm.setElementVisibility = function QuickFormSetElementVisibility(element, visibility) {
$(element).toggle(visibility);
};
 
/**
* Shows or hides the "question mark" icon (which displays the tooltip) next to a form element
* @param {(HTMLElement|jQuery)} element
* @param {boolean} [visibility] Skip this to toggle visibility
*/
Morebits.quickForm.setElementTooltipVisibility = function QuickFormSetElementTooltipVisibility(element, visibility) {
$(Morebits.quickForm.getElementContainer(element)).find('".morebits-tooltip'").toggle(visibility);
};
 
第九一九行 ⟶ 第八〇九行:
/**
* **************** HTMLFormElement ****************
*
* getChecked:
* XXX Doesn't seem to work reliably across all browsers at the moment. -- see getChecked2 in twinkleunlink.js, which is better
*
* Returns an array containing the values of elements with the given name, that has it's
* checked property set to true. (i.e. a checkbox or a radiobutton is checked), or select options
* that have selected set to true. (don't try to mix selects with radio/checkboxes, please)
* Type is optional and can specify if either radio or checkbox (for the event
* that both checkboxes and radiobuttons have the same name.
*/
 
HTMLFormElement.prototype.getChecked = function( name, type ) {
/**
* Returns an array containing the values of elements with the given name, that has it's
* checked property set to true. (i.e. a checkbox or a radiobutton is checked), or select
* options that have selected set to true. (don't try to mix selects with radio/checkboxes,
* please)
* Type is optional and can specify if either radio or checkbox (for the event
* that both checkboxes and radiobuttons have the same name.
*
* XXX: Doesn't seem to work reliably across all browsers at the moment. -- see getChecked2
* in twinkleunlink.js, which is better
*/
HTMLFormElement.prototype.getChecked = function(name, type) {
var elements = this.elements[name];
if ( !elements ) {
// if the element doesn't exists, return null.
return null;
第九四〇行 ⟶ 第八二八行:
var return_array = [];
var i;
if ( elements instanceof HTMLSelectElement ) {
var options = elements.options;
for ( i = 0; i < options.length; ++i ) {
if ( options[i].selected ) {
if ( options[i].values ) {
return_array.push( options[i].values );
} else {
return_array.push( options[i].value );
}
 
}
}
} else if ( elements instanceof HTMLInputElement ) {
if ( type && elements.type !== type ) {
return [];
} else if ( elements.checked ) {
return [ elements.value ];
}
} else {
for ( i = 0; i < elements.length; ++i ) {
if ( elements[i].checked ) {
if ( type && elements[i].type !== type ) {
continue;
}
if ( elements[i].values ) {
return_array.push( elements[i].values );
} else {
return_array.push( elements[i].value );
}
}
第九七四行 ⟶ 第八六二行:
return return_array;
};
 
 
 
/**
* **************** RegExp ****************
* getUnchecked:
*
* Does the same as getChecked above, but with unchecked elements.
* RegExp.escape: Will escape a string to be used in a RegExp
*/
 
HTMLFormElementRegExp.prototype.getUncheckedescape = function(name text, typespace_fix ) {
text = mw.RegExp.escape(text);
var elements = this.elements[name];
 
if (!elements) {
// Special MediaWiki escape - underscore/space are often equivalent
// if the element doesn't exists, return null.
if( space_fix ) {
return null;
text = text.replace( / |_/g, '[_ ]' );
}
var return_array = [];
var i;
if (elements instanceof HTMLSelectElement) {
var options = elements.options;
for (i = 0; i < options.length; ++i) {
if (!options[i].selected) {
if (options[i].values) {
return_array.push(options[i].values);
} else {
return_array.push(options[i].value);
}
 
return text;
}
};
 
 
 
/**
* **************** Morebits.bytes ****************
* Utility object for formatting byte values
*/
 
Morebits.bytes = function( value ) {
if( typeof value === 'string' ) {
var res = /(\d+) ?(\w?)(i?)B?/.exec( value );
var number = res[1];
var mag = res[2];
var si = res[3];
 
if( !number ) {
this.number = 0;
return;
}
 
} else if (elements instanceof HTMLInputElement) {
if (type && elements.type !==si type) {
this.value = number * Math.pow( 10, Morebits.bytes.magnitudes[mag] * 3 );
return [];
} else if (!elements.checked) {
this.value = number * Math.pow( 2, Morebits.bytes.magnitudes[mag] * 10 );
return [ elements.value ];
}
} else {
this.value = value;
for (i = 0; i < elements.length; ++i) {
if (!elements[i].checked) {
if (type && elements[i].type !== type) {
continue;
}
if (elements[i].values) {
return_array.push(elements[i].values);
} else {
return_array.push(elements[i].value);
}
}
}
}
return return_array;
};
 
Morebits.bytes.magnitudes = {
'': 0,
'K': 1,
'M': 2,
'G': 3,
'T': 4,
'P': 5,
'E': 6,
'Z': 7,
'Y': 8
};
 
Morebits.bytes.rmagnitudes = {
/**
0: '',
* **************** RegExp ****************
1: 'K',
*
2: 'M',
* Escapes a string to be used in a RegExp
3: 'G',
* @param {string} text - string to be escaped
4: 'T',
* @param {boolean} [space_fix=false] - Set true to replace spaces and underscores with `[ _]` as they are
5: 'P',
* often equivalent
6: 'E',
* @returns {string} - the escaped text
7: 'Z',
*/
8: 'Y'
RegExp.escape = function(text, space_fix) {
};
text = mw.util.escapeRegExp(text);
 
Morebits.bytes.prototype.valueOf = function() {
// Special MediaWiki escape - underscore/space are often equivalent
return this.value;
if (space_fix) {
};
text = text.replace(/ |_/g, '[_ ]');
}
 
Morebits.bytes.prototype.toString = function( magnitude ) {
return text;
var tmp = this.value;
if( magnitude ) {
var si = /i/.test(magnitude);
var mag = magnitude.replace( /.*?(\w)i?B?.*/g, '$1' );
if( si ) {
tmp /= Math.pow( 2, Morebits.bytes.magnitudes[mag] * 10 );
} else {
tmp /= Math.pow( 10, Morebits.bytes.magnitudes[mag] * 3 );
}
if( parseInt( tmp, 10 ) !== tmp ) {
tmp = Number( tmp ).toPrecision( 4 );
}
return tmp + ' ' + mag + (si?'i':'') + 'B';
} else {
// si per default
var current = 0;
while( tmp >= 1024 ) {
tmp /= 1024;
++current;
}
tmp = this.value / Math.pow( 2, current * 10 );
if( parseInt( tmp, 10 ) !== tmp ) {
tmp = Number( tmp ).toPrecision( 4 );
}
return tmp + ' ' + Morebits.bytes.rmagnitudes[current] + ( current > 0 ? 'iB' : 'B' );
}
};
 
 
 
第一〇四九行 ⟶ 第九七四行:
*/
 
if (!String.prototype.trimLeft) {
String.prototype.trimLeft = function stringPrototypeLtrim( ) {
return this.replace( /^[\s]+/g, "" );
};
}
 
if (!String.prototype.trimRight) {
String.prototype.trimRight = function stringPrototypeRtrim( ) {
return this.replace( /[\s]+$/g, "" );
};
}
 
if (!String.prototype.trim) {
String.prototype.trim = function stringPrototypeTrim( ) {
return this.trimRight().trimLeft();
};
}
 
// Helper functions to change case of a string
Morebits.string = {
// Helper functions to change case of a string
toUpperCaseFirstChar: function(str) {
str = str.toString();
return str.substr( 0, 1 ).toUpperCase() + str.substr( 1 );
},
toLowerCaseFirstChar: function(str) {
str = str.toString();
return str.substr( 0, 1 ).toLowerCase() + str.substr( 1 );
},
splitWeightedByKeys: function( str, start, end, skip ) {
 
if( start.length !== end.length ) {
/**
throw new Error( '起始和结束标记必须等长' );
* Append punctuation to a string when it's missing
* @param {string} str
* @param {string} punctuation
* @returns {String}
*/
appendPunctuation: function(str, punctuation) {
if (punctuation === undefined) {
punctuation = '。';
}
if (str.search(/[.?!;。?!;]$/) === -1) {
str += punctuation;
}
return str;
},
 
/**
* Gives an array of substrings of `str` starting with `start` and
* ending with `end`, which is not in `skiplist`
* @param {string} str
* @param {string} start
* @param {string} end
* @param {(string[]|string)} [skiplist]
* @returns {String[]}
*/
splitWeightedByKeys: function(str, start, end, skiplist) {
if (start.length !== end.length) {
throw new Error('起始和结束标记必须等长');
}
var level = 0;
var initial = null;
var result = [];
if ( !Array $.isArray(skiplist skip ) ) {
if (skiplist skip === undefined ) {
skiplistskip = [];
} else if ( typeof skiplistskip === 'string' ) {
skiplistskip = [ skiplistskip ];
} else {
throw new Error(' "不适用的跳过参数'" );
}
}
for ( var i = 0; i < str.length; ++i ) {
for ( var j = 0; j < skiplistskip.length; ++j ) {
if ( str.substr( i, skiplistskip[j].length ) === skiplistskip[j] ) {
i += skiplistskip[j].length - 1;
continue;
}
}
if ( str.substr( i, start.length ) === start ) {
if ( initial === null ) {
initial = i;
}
++level;
i += start.length - 1;
} else if ( str.substr( i, end.length ) === end ) {
--level;
i += end.length - 1;
}
if ( !level && initial !== null ) {
result.push( str.substring( initial, i + 1 ) );
initial = null;
}
第一一二六行 ⟶ 第一〇四三行:
return result;
},
// for deletion/other templates taking a freeform "reason" from a textarea (e.g. PROD, XFD, RPP)
 
formatReasonText: function( str ) {
/**
var result = str.toString().trimRight();
* Formats freeform "reason" (from a textarea) for deletion/other templates
* that are going to be substituted, (e.g. PROD, XFD, RPP)
* @param {string} str
* @returns {string}
*/
formatReasonText: function(str) {
var result = str.toString().trim();
var unbinder = new Morebits.unbinder(result);
unbinder.unbind('"<no'" + '"wiki>'", '"</no'" + '"wiki>'");
unbinder.content = unbinder.content.replace(/\|/g, '"{{subst:!}}'");
return unbinder.rebind();
},
 
/**
* Like `String.prototype.replace()`, but escapes any dollar signs in the replacement string.
* Useful when the the replacement string is arbitrary, such as a username or freeform user input,
* and could contain dollar signs.
* @param {string} string - text in which to replace
* @param {(string|RegExp)} pattern
* @param {string} replacement
* @returns {string}
*/
safeReplace: function morebitsStringSafeReplace(string, pattern, replacement) {
return string.replace(pattern, replacement.replace(/\$/g, '$$$$'));
},
 
/**
* Determine input string is represents as infinity
* @param {string} time The string to determine
* @returns {boolean}
* @see https://gerrit.wikimedia.org/g/mediawiki/core/+/7c4a3f8aae57066236b83ec21dc0ef2f5f2c4ead/includes/GlobalFunctions.php#2878
*/
isInfinity: function morebitsStringIsInfinity(time) {
var infinityValues = ['infinite', 'indefinite', 'infinity', 'never'];
return infinityValues.indexOf(time) !== -1;
},
 
/**
* @param {*} time The string to foramt
* @returns {string}
*/
formatTime: function morebitsStringFormatTime(time) {
var m;
if ((m = time.match(/^\s*(\d+)\s*seconds?\s*$/)) !== null) {
return m[1] + '秒';
}
if ((m = time.match(/^\s*(\d+)\s*min(ute)?s?\s*$/)) !== null) {
return m[1] + '分';
}
if ((m = time.match(/^\s*(\d+)\s*hours?\s*$/)) !== null) {
return m[1] + wgULS('小时', '小時');
}
if ((m = time.match(/^\s*(\d+)\s*days?\s*$/)) !== null) {
return m[1] + '天';
}
if ((m = time.match(/^\s*(\d+)\s*weeks?\s*$/)) !== null) {
return m[1] + wgULS('周', '週');
}
if ((m = time.match(/^\s*(\d+)\s*months?\s*$/)) !== null) {
return m[1] + wgULS('个月', '個月');
}
if ((m = time.match(/^\s*(\d+)\s*years?\s*$/)) !== null) {
return m[1] + '年';
}
if (Morebits.string.isInfinity(time.trim())) {
return wgULS('无限期', '無限期');
}
return time;
}
};
 
 
 
/**
* **************** Morebits.array ****************
*
* uniq(arr): returns a copy of the array with duplicates removed
*
* dups(arr): returns a copy of the array with the first instance of each value
* removed; subsequent instances of those values (duplicates) remain
*
* chunk(arr, size): breaks up |arr| into smaller arrays of length |size|, and
* returns an array of these "chunked" arrays
*/
 
Morebits.array = {
/**
* @returns {Array} a copy of the array with duplicates removed
*/
uniq: function(arr) {
if ( !Array $.isArray( arr ) ) {
throw '"A non-array object passed to Morebits.array.uniq'";
}
var result = [];
for ( var i = 0; i < arr.length; ++i ) {
var current = arr[i];
if ( result.indexOf( current ) === -1 ) {
result.push( current );
}
}
return result;
},
 
/**
* @returns {Array} a copy of the array with the first instance of each value
* removed; subsequent instances of those values (duplicates) remain
*/
dups: function(arr) {
if ( !Array $.isArray( arr ) ) {
throw '"A non-array object passed to Morebits.array.dups'";
}
var uniques = [];
var result = [];
for ( var i = 0; i < arr.length; ++i ) {
var current = arr[i];
if ( uniques.indexOf( current ) === -1 ) {
uniques.push( current );
} else {
result.push( current );
}
}
return result;
},
chunk: function( arr, size ) {
 
if ( ! $.isArray( arr ) ) {
 
throw "A non-array object passed to Morebits.array.chunk";
/**
* Break up an array into smaller arrays.
* @param {Array} arr
* @param {number} size - Size of each chunk (except the last, which could be different)
* @returns {Array} an array of these smaller arrays
*/
chunk: function(arr, size) {
if (!Array.isArray(arr)) {
throw 'A non-array object passed to Morebits.array.chunk';
}
if ( typeof size !== 'number' || size <= 0 ) { // pretty impossible to do anything :)
return [ arr ]; // we return an array consisting of this array.
}
var result = [];
var current;
for ( var i = 0; i < arr.length; ++i ) {
if ( i % size === 0 ) { // when 'i' is 0, this is always true, so we start by creating one.
current = [];
result.push( current );
}
current.push( arr[i] );
}
return result;
第一二七〇行 ⟶ 第一一一七行:
};
 
/**
* ************ Morebits.select2 ***************
* Utilities to enhance select2 menus
* See twinklewarn, twinklexfd, twinkleblock for sample usages
*/
Morebits.select2 = {
 
matchers: {
/**
* Custom matcher in which if the optgroup name matches, all options in that
* group are shown, like in jquery.chosen
*/
optgroupFull: function(params, data) {
var originalMatcher = $.fn.select2.defaults.defaults.matcher;
var result = originalMatcher(params, data);
 
if (result && params.term &&
data.text.toUpperCase().indexOf(params.term.toUpperCase()) !== -1) {
result.children = data.children;
}
return result;
},
 
/** Custom matcher that matches from the beginning of words only */
wordBeginning: function(params, data) {
var originalMatcher = $.fn.select2.defaults.defaults.matcher;
var result = originalMatcher(params, data);
if (!params.term || (result &&
new RegExp('\\b' + mw.util.escapeRegExp(params.term), 'i').test(result.text))) {
return result;
}
return null;
}
},
 
/** Underline matched part of options */
highlightSearchMatches: function(data) {
var searchTerm = Morebits.select2SearchQuery;
if (!searchTerm || data.loading) {
return data.text;
}
var idx = data.text.toUpperCase().indexOf(searchTerm.toUpperCase());
if (idx < 0) {
return data.text;
}
 
return $('<span>').append(
data.text.slice(0, idx),
$('<span>').css('text-decoration', 'underline').text(data.text.slice(idx, idx + searchTerm.length)),
data.text.slice(idx + searchTerm.length)
);
},
 
/** Intercept query as it is happening, for use in highlightSearchMatches */
queryInterceptor: function(params) {
Morebits.select2SearchQuery = params && params.term;
},
 
/**
* Open dropdown and begin search when the .select2-selection has focus and a key is pressed
* https://github.com/select2/select2/issues/3279#issuecomment-442524147
*/
autoStart: function(ev) {
if (ev.which < 48) {
return;
}
var target = $(ev.target).closest('.select2-container');
if (!target.length) {
return;
}
target = target.prev();
target.select2('open');
var search = target.data('select2').dropdown.$search ||
target.data('select2').selection.$search;
search.focus();
}
 
};
 
 
第一三五七行 ⟶ 第一一二六行:
Morebits.pageNameNorm = mw.config.get('wgPageName').replace(/_/g, ' ');
 
 
/**
* *************** Morebits.pageNameRegex *****************
* For a page name 'Foo bar', returns the string '[Ff]oo bar'
* @param {string} pageName - page name without namespace
* @returns {string}
*/
Morebits.pageNameRegex = function(pageName) {
return '[' + pageName[0].toUpperCase() + pageName[0].toLowerCase() + ']' + pageName.slice(1);
};
 
 
/**
* **************** Morebits.unbinder ****************
* Used for temporarily hiding a part of a string while processing the rest of it.
*
* eg. var u = new Morebits.unbinder("Hello world <!-- world --> world");
* u.unbind('<!--','-->');
* u.content = u.content.replace(/world/g, 'earth');
* u.rebind(); // gives "Hello earth <!-- world --> earth"
*
* Text within the 'unbinded' part (in this case, the HTML comment) remains intact
* unbind() can be called multiple times to unbind multiple parts of the string.
*
* Used by Morebits.wikitext.page.commentOutImage
*/
 
Morebits.unbinder = function Unbinder( string ) {
/**
if( typeof string !== 'string' ) {
* @constructor
throw new Error( "不是字符串" );
* @param {string} string
*/
Morebits.unbinder = function Unbinder(string) {
if (typeof string !== 'string') {
throw new Error('不是字符串');
}
this.content = string;
第一四〇〇行 ⟶ 第一一四五行:
 
Morebits.unbinder.prototype = {
unbind: function UnbinderUnbind( prefix, postfix ) {
/**
var re = new RegExp( prefix + '(.*?)' + postfix, 'g' );
* @param {string} prefix
this.content = this.content.replace( re, Morebits.unbinder.getCallback( this ) );
* @param {string} postfix
*/
unbind: function UnbinderUnbind(prefix, postfix) {
var re = new RegExp(prefix + '([\\s\\S]*?)' + postfix, 'g');
this.content = this.content.replace(re, Morebits.unbinder.getCallback(this));
},
 
/** @returns {string} The output */
rebind: function UnbinderRebind() {
var content = this.content;
content.self = this;
for ( var current in this.history ) {
if (Object this.prototypehistory.hasOwnProperty.call(this.history, current ) ) {
content = content.replace( current, this.history[current] );
}
}
第一四二八行 ⟶ 第一一六七行:
 
Morebits.unbinder.getCallback = function UnbinderGetCallback(self) {
return function UnbinderCallback( match ) {
var current = self.prefix + self.counter + self.postfix;
self.history[current] = match;
第一四三九行 ⟶ 第一一七八行:
 
/**
* **************** Morebits.dateDate ****************
* Helper functions to get the month as a string instead of a number
*
* Normally it is poor form to play with prototypes of primitive types, but it
* is fairly unlikely that anyone will iterate over a Date object.
*/
 
Date.monthNames = [
/**
'January',
* @constructor
'February',
* Create a date object. MediaWiki timestamp format is also acceptable,
'March',
* in addition to everything that JS Date() accepts.
'April',
*/
'May',
Morebits.date = function() {
'June',
var args = Array.prototype.slice.call(arguments);
'July',
'August',
'September',
'October',
'November',
'December'
];
 
Date.monthNamesAbbrev = [
'Jan',
'Feb',
'Mar',
'Apr',
'May',
'Jun',
'Jul',
'Aug',
'Sep',
'Oct',
'Nov',
'Dec'
];
 
Date.prototype.getMonthName = function() {
if (typeof args[0] === 'string') {
return Date.monthNames[ this.getMonth() ];
// Attempt to remove a comma and paren-wrapped timezone, to get MediaWiki timestamps to parse
// Firefox (at least in 75) seems to be okay with the comma, though
args[0] = args[0].replace(/(\d\d:\d\d),/, '$1').replace(/\(UTC\)/, 'UTC');
}
this._d = new (Function.prototype.bind.apply(Date, [Date].concat(args)));
};
 
Date.prototype.getMonthNameAbbrev = function() {
Morebits.date.localeData = {
return Date.monthNamesAbbrev[ this.getMonth() ];
months: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
monthsShort: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
days: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
daysShort: ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
relativeTimes: {
thisDay: '[今天]A hh:mm',
prevDay: '[昨天]A hh:mm',
nextDay: '[明天]A hh:mm',
thisWeek: 'ddddA hh:mm',
pastWeek: '[上]ddddA hh:mm',
other: 'YYYY-MM-DD'
}
};
 
Date.prototype.getUTCMonthName = function() {
// Allow native Date.prototype methods to be used on Morebits.date objects
return Date.monthNames[ this.getUTCMonth() ];
Object.getOwnPropertyNames(Date.prototype).forEach(function(func) {
};
Morebits.date.prototype[func] = function() {
return this._d[func].apply(this._d, Array.prototype.slice.call(arguments));
};
});
 
Date.prototype.getUTCMonthNameAbbrev = function() {
$.extend(Morebits.date.prototype, {
return Date.monthNamesAbbrev[ this.getUTCMonth() ];
 
};
isValid: function() {
return !isNaN(this.getTime());
},
 
/** @param {(Date|Morebits.date)} date */
isBefore: function(date) {
return this.getTime() < date.getTime();
},
isAfter: function(date) {
return this.getTime() > date.getTime();
},
 
/** @return {string} */
getUTCMonthName: function() {
return Morebits.date.localeData.months[this.getUTCMonth()];
},
getUTCMonthNameAbbrev: function() {
return Morebits.date.localeData.monthsShort[this.getUTCMonth()];
},
getMonthName: function() {
return Morebits.date.localeData.months[this.getMonth()];
},
getMonthNameAbbrev: function() {
return Morebits.date.localeData.monthsShort[this.getMonth()];
},
getUTCDayName: function() {
return Morebits.date.localeData.days[this.getUTCDay()];
},
getUTCDayNameAbbrev: function() {
return Morebits.date.localeData.daysShort[this.getUTCDay()];
},
getDayName: function() {
return Morebits.date.localeData.days[this.getDay()];
},
getDayNameAbbrev: function() {
return Morebits.date.localeData.daysShort[this.getDay()];
},
 
/**
* Add a given number of minutes, hours, days, months or years to the date.
* This is done in-place. The modified date object is also returned, allowing chaining.
* @param {number} number - should be an integer
* @param {string} unit
* @throws {Error} if invalid or unsupported unit is given
* @returns {Morebits.date}
*/
add: function(number, unit) {
// mapping time units with getter/setter function names
var unitMap = {
seconds: 'Seconds',
minutes: 'Minutes',
hours: 'Hours',
days: 'Date',
months: 'Month',
years: 'FullYear'
};
var unitNorm = unitMap[unit] || unitMap[unit + 's']; // so that both singular and plural forms work
if (unitNorm) {
this['set' + unitNorm](this['get' + unitNorm]() + number);
return this;
}
throw new Error('Invalid unit "' + unit + '": Only ' + Object.keys(unitMap).join(', ') + ' are allowed.');
},
 
/**
* Subtracts a given number of minutes, hours, days, months or years to the date.
* This is done in-place. The modified date object is also returned, allowing chaining.
* @param {number} number - should be an integer
* @param {string} unit
* @throws {Error} if invalid or unsupported unit is given
* @returns {Morebits.date}
*/
subtract: function(number, unit) {
return this.add(-number, unit);
},
 
/**
* Formats the date into a string per the given format string.
* Replacement syntax is a subset of that in moment.js.
* @param {string} formatstr
* @param {(string|number)} [zone=system] - 'system' (for browser-default time zone),
* 'utc' (for UTC), or specify a time zone as number of minutes past UTC.
* @returns {string}
*/
format: function(formatstr, zone) {
var udate = this;
// create a new date object that will contain the date to display as system time
if (zone === 'utc') {
udate = new Morebits.date(this.getTime()).add(this.getTimezoneOffset(), 'minutes');
} else if (typeof zone === 'number') {
// convert to utc, then add the utc offset given
udate = new Morebits.date(this.getTime()).add(this.getTimezoneOffset() + zone, 'minutes');
}
 
var pad = function(num) {
return num < 10 ? '0' + num : num;
};
var h24 = udate.getHours(), m = udate.getMinutes(), s = udate.getSeconds();
var D = udate.getDate(), M = udate.getMonth() + 1, Y = udate.getFullYear();
var h12 = h24 % 12 || 12, amOrPm = h24 >= 12 ? '下午' : '上午';
var replacementMap = {
'HH': pad(h24), 'H': h24, 'hh': pad(h12), 'h': h12, 'A': amOrPm,
'mm': pad(m), 'm': m,
'ss': pad(s), 's': s,
'dddd': udate.getDayName(), 'ddd': udate.getDayNameAbbrev(), 'd': udate.getDay(),
'DD': pad(D), 'D': D,
'MMMM': udate.getMonthName(), 'MMM': udate.getMonthNameAbbrev(), 'MM': pad(M), 'M': M,
'YYYY': Y, 'YY': pad(Y % 100), 'Y': Y
};
 
var unbinder = new Morebits.unbinder(formatstr); // escape stuff between [...]
unbinder.unbind('\\[', '\\]');
unbinder.content = unbinder.content.replace(
/* Regex notes:
* d(d{2,3})? matches exactly 1, 3 or 4 occurrences of 'd' ('dd' is treated as a double match of 'd')
* Y{1,2}(Y{2})? matches exactly 1, 2 or 4 occurrences of 'Y'
*/
/H{1,2}|h{1,2}|m{1,2}|s{1,2}|d(d{2,3})?|D{1,2}|M{1,4}|Y{1,2}(Y{2})?|A/g,
function(match) {
return replacementMap[match];
}
);
return unbinder.rebind().replace(/\[(.*?)\]/g, '$1');
},
 
/**
* Gives a readable relative time string such as "Yesterday at 6:43 PM" or "Last Thursday at 11:45 AM".
* Similar to calendar in moment.js, but with time zone support.
* @param {(string|number)} [zone=system] - 'system' (for browser-default time zone),
* 'utc' (for UTC), or specify a time zone as number of minutes past UTC
* @returns {string}
*/
calendar: function(zone) {
// Zero out the hours, minutes, seconds and milliseconds - keeping only the date;
// find the difference. Note that setHours() returns the same thing as getTime().
var dateDiff = (new Date().setHours(0, 0, 0, 0) -
new Date(this).setHours(0, 0, 0, 0)) / 8.64e7;
switch (true) {
case dateDiff === 0:
return this.format(Morebits.date.localeData.relativeTimes.thisDay, zone);
case dateDiff === 1:
return this.format(Morebits.date.localeData.relativeTimes.prevDay, zone);
case dateDiff > 0 && dateDiff < 7:
return this.format(Morebits.date.localeData.relativeTimes.pastWeek, zone);
case dateDiff === -1:
return this.format(Morebits.date.localeData.relativeTimes.nextDay, zone);
case dateDiff < 0 && dateDiff > -7:
return this.format(Morebits.date.localeData.relativeTimes.thisWeek, zone);
default:
return this.format(Morebits.date.localeData.relativeTimes.other, zone);
}
},
 
/**
* @returns {RegExp} that matches wikitext section titles such as ==December 2019== or
* === Jan 2018 ===
*/
monthHeaderRegex: function() {
return new RegExp('^==+\\s*' + this.getUTCFullYear() + '年(?:' + this.getUTCMonthName() + '|' +
this.getUTCMonthNameAbbrev() + ')\\s*==+', 'mg');
},
 
/**
* Creates a wikitext section header with the month and year.
* @param {number} [level=2] - Header level (default 2)
* @returns {string}
*/
monthHeader: function(level) {
level = level || 2;
var header = Array(level + 1).join('='); // String.prototype.repeat not supported in IE 11
return header + ' ' + this.getUTCFullYear() + '年' + this.getUTCMonthName() + ' ' + header;
}
 
});
 
 
第一六六七行 ⟶ 第一二四一行:
 
Morebits.wikipedia.namespaces = {
'-2': 'Media',
'-1': 'Special',
'0': '',
'1': 'Talk',
'2': 'User',
'3': 'User talk',
'4': 'Project',
'5': 'Project talk',
'6': 'File',
'7': 'File talk',
'8': 'MediaWiki',
'9': 'MediaWiki talk',
'10': 'Template',
'11': 'Template talk',
'12': 'Help',
'13': 'Help talk',
'14': 'Category',
'15': 'Category talk',
'100': 'Portal',
'101': 'Portal talk',
第一七〇〇行 ⟶ 第一二七四行:
 
Morebits.wikipedia.namespacesFriendly = {
'0': wgULS( '(条目)', '(條目)'),
'1': 'Talk',
'2': 'User',
'3': 'User talk',
'4': 'Wikipedia',
'5': 'Wikipedia talk',
'6': 'File',
'7': 'File talk',
'8': 'MediaWiki',
'9': 'MediaWiki talk',
'10': 'Template',
'11': 'Template talk',
'12': 'Help',
'13': 'Help talk',
'14': 'Category',
'15': 'Category talk',
'100': 'Portal',
'101': 'Portal talk',
第一七三六行 ⟶ 第一三一〇行:
* Various objects for wiki editing and API access
*/
 
Morebits.wiki = {};
 
// Determines whether the current page is a redirect or soft redirect
/**
// (fails to detect soft redirects on edit, history, etc. pages)
* Determines whether the current page is a redirect or soft redirect
* (fails to detect soft redirects on edit, history, etc. pages)
* @returns {boolean}
*/
Morebits.wiki.isPageRedirect = function wikipediaIsPageRedirect() {
return !!(mw.config.get('"wgIsRedirect'") || document.getElementById('"softredirect'"));
};
 
第一七五二行 ⟶ 第一三二四行:
* **************** Morebits.wiki.actionCompleted ****************
*
* Use of Morebits.wiki.actionCompleted():
* Every call to Morebits.wiki.api.post() results in the dispatch of
* an asynchronous callback. Each callback can in turn
第一七八一行 ⟶ 第一三五三行:
Morebits.wiki.nbrOfCheckpointsLeft = 0;
 
Morebits.wiki.actionCompleted = function( self ) {
if ( --Morebits.wiki.numberOfActionsLeft <= 0 && Morebits.wiki.nbrOfCheckpointsLeft <= 0 ) {
Morebits.wiki.actionCompleted.event( self );
}
};
第一七八九行 ⟶ 第一三六一行:
// Change per action wanted
Morebits.wiki.actionCompleted.event = function() {
ifnew Morebits.status( Morebits.wiki.actionCompleted.notice), {Morebits.wiki.actionCompleted.postfix, 'info' );
Morebits.status.actionCompleted if( Morebits.wiki.actionCompleted.noticeredirect ); {
}
if (Morebits.wiki.actionCompleted.redirect) {
// if it isn't a URL, make it one. TODO: This breaks on the articles 'http://', 'ftp://', and similar ones.
if ( !( (/^\w+\:\/\//).test( Morebits.wiki.actionCompleted.redirect ) ) ) {
Morebits.wiki.actionCompleted.redirect = mw.util.getUrl( Morebits.wiki.actionCompleted.redirect );
if ( Morebits.wiki.actionCompleted.followRedirect === false ) {
Morebits.wiki.actionCompleted.redirect += '"?redirect=no'";
}
}
window.setTimeout( function() { window.location = Morebits.wiki.actionCompleted.redirect; }, Morebits.wiki.actionCompleted.timeOut );
window.location = Morebits.wiki.actionCompleted.redirect;
}, Morebits.wiki.actionCompleted.timeOut);
}
};
 
Morebits.wiki.actionCompleted.timeOut = ( typeof window.wpActionCompletedTimeOut === 'undefined' ? 5000 : window.wpActionCompletedTimeOut );
Morebits.wiki.actionCompleted.redirect = null;
Morebits.wiki.actionCompleted.notice = null'动作';
Morebits.wiki.actionCompleted.postfix = '已完成';
 
Morebits.wiki.addCheckpoint = function() {
++Morebits.wiki.nbrOfCheckpointsLeft;
};
 
Morebits.wiki.removeCheckpoint = function() {
if ( --Morebits.wiki.nbrOfCheckpointsLeft <= 0 && Morebits.wiki.numberOfActionsLeft <= 0 ) {
Morebits.wiki.actionCompleted.event();
}
第一八二三行 ⟶ 第一三九二行:
* **************** Morebits.wiki.api ****************
* An easy way to talk to the MediaWiki API.
*
* Constructor parameters:
* currentAction: the current action (required)
* query: the query (required)
* onSuccess: the function to call when request gotten
* statusElement: a Morebits.status object to use for status messages (optional)
* onError: the function to call if an error occurs (optional)
*/
Morebits.wiki.api = function( currentAction, query, onSuccess, statusElement, onError ) {
 
/**
* @constructor
* @param {string} currentAction - The current action (required)
* @param {Object} query - The query (required)
* @param {Function} [onSuccess] - The function to call when request gotten
* @param {Object} [statusElement] - A Morebits.status object to use for status messages (optional)
* @param {Function} [onError] - The function to call if an error occurs (optional)
*/
Morebits.wiki.api = function(currentAction, query, onSuccess, statusElement, onError) {
this.currentAction = currentAction;
this.query = query;
this.query.format = 'xml';
this.query.assert = 'user';
this.onSuccess = onSuccess;
this.onError = onError;
if ( statusElement ) {
this.statelem = statusElement;
this.statelem.status( currentAction );
} else {
this.statelem = new Morebits.status( currentAction );
}
if (!query.format) {
this.query.format = 'xml';
} else if (['xml', 'json'].indexOf(query.format) === -1) {
this.statelem.error('Invalid API format: only xml and json are supported.');
}
};
第一八五八行 ⟶ 第一四二一行:
parent: window, // use global context if there is no parent object
query: null,
responseresponseXML: null,
setParent: function(parent) { this.parent = parent; }, // keep track of parent object for callbacks
responseXML: null, // use `response` instead; retained for backwards compatibility
setParent: function(parent) {
this.parent = parent;
}, // keep track of parent object for callbacks
statelem: null, // this non-standard name kept for backwards compatibility
statusText: null, // result received from the API, normally "success" or "error"
第一八六八行 ⟶ 第一四二八行:
errorText: null, // full error description, if any
 
// post(): carries out the request
/**
// do not specify a parameter unless you really really want to give jQuery some extra parameters
* Carries out the request.
post: * @param {Object}function( callerAjaxParameters Do) not specify a parameter unless you really{
* really want to give jQuery some extra parameters
*/
post: function(callerAjaxParameters) {
 
++Morebits.wiki.numberOfActionsLeft;
 
var queryStringajaxparams = $.mapextend(this.query, function(val{}, i) {
if (Array.isArray(val)) {
return encodeURIComponent(i) + '=' + val.map(encodeURIComponent).join('|');
} else if (val !== undefined) {
return encodeURIComponent(i) + '=' + encodeURIComponent(val);
}
}).join('&').replace(/^(.*?)(\btoken=[^&]*)&(.*)/, '$1$3&$2');
// token should always be the last item in the query string (bug TW-B-0013)
 
var ajaxparams = $.extend({}, {
context: this,
type: 'POST',
url: mw.util.wikiScript('api'),
data: Morebits.queryString.create(this.query),
dataType: 'xml',
headers: {
'Api-User-Agent': morebitsWikiApiUserAgent
}
}, callerAjaxParameters );
 
return $.ajax( ajaxparams ).done(
function(responsexml, statusText, jqXHR) {
this.statusText = statusText;
this.response = this.responseXML = responsexml;
if (this.query.formaterrorCode === $(xml).find('jsonerror') {.attr('code');
this.errorCodeerrorText = response.error && response$(xml).find('error').codeattr('info');
this.errorText = response.error && response.error.info;
} else {
this.errorCode = $(response).find('error').attr('code');
this.errorText = $(response).find('error').attr('info');
}
 
if (typeof this.errorCode === '"string'") {
 
// the API didn't like what we told it, e.g., bad edit token or an error creating a page
第一九二一行 ⟶ 第一四六四行:
// set the callback context to this.parent for new code and supply the API object
// as the first argument to the callback (for legacy code)
this.onSuccess.call( this.parent, this );
} else {
this.statelem.info('"完成'");
}
 
第一九二九行 ⟶ 第一四七二行:
}
).fail(
// only network and server errors reach here - complaints from the API itself are caught in success()
function(jqXHR, statusText, errorThrown) {
this.statusText = statusText;
this.errorThrown = errorThrown; // frequently undefined
this.errorText = statusText + wgULS('在调用API时发生了错误“', '在呼叫API時發生了錯誤「') + jqXHR.statusText + wgULS('”。', '」。');
this.returnError();
}
第一九四〇行 ⟶ 第一四八三行:
 
returnError: function() {
if ( this.errorCode === '"badtoken'" ) {
this.statelem.error(wgULS(' "无效令牌,请刷新页面并重试'," '無效權杖,請重新整理頁面並重試'));
} else {
this.statelem.error( this.errorText );
}
 
第一九五一行 ⟶ 第一四九四行:
// set the callback context to this.parent for new code and supply the API object
// as the first argument to the callback for legacy code
this.onError.call( this.parent, this );
}
// don't complete the action so that the error remains displayed
第一九六八行 ⟶ 第一五一一行:
},
 
getXML: function() { // retained for backwards compatibility, use getResponse() instead
return this.responseXML;
},
 
getResponse: function() {
return this.response;
}
 
};
 
第一九八二行 ⟶ 第一五二〇行:
var morebitsWikiApiUserAgent = 'morebits.js~zh/2.0 ([[w:zh:WT:TW]])';
 
// Sets the custom user agent header
/**
Morebits.wiki.api.setApiUserAgent = function( ua ) {
* Sets the custom user agent header
morebitsWikiApiUserAgent = ( ua ? ua + ' ' : '' ) + 'morebits.js~zh/2.0 ([[w:zh:WT:TW]])';
* @param {string} ua User agent
*/
Morebits.wiki.api.setApiUserAgent = function(ua) {
morebitsWikiApiUserAgent = (ua ? ua + ' ' : '') + 'morebits.js~zh/2.0 ([[w:zh:WT:TW]])';
};
 
第二〇〇七行 ⟶ 第一五四二行:
*
*
* NOTE: This list of member functions is incomplete.
* HIGHLIGHTS:
*
* Constructor: Morebits.wiki.page(pageName, currentAction)
第二〇一四行 ⟶ 第一五四九行:
* currentAction - a string describing the action about to be undertaken (optional)
*
* load(onSuccess and, onFailure): areLoads callbackthe functionstext called whenfor the operation is a success or failurepage
* onSuccess - callback function which is called when the load has succeeded
* if enclosed in [brackets], it indicates that it is optional
* onFailure - callback function which is called when the load fails (optional)
*
* loadsave(onSuccess, [onFailure]): LoadsSaves the text for the page. Must be preceded by calling load().
* onSuccess - callback function which is called when the save has succeeded (optional)
*
* onFailure - callback function which is called when the save fails (optional)
* getPageText(): returns a string containing the text of the page after a successful load()
*
* save([onSuccess], [onFailure]): Saves the text set via setPageText() for the page.
* Must be preceded by calling load().
* Warning: Calling save() can result in additional calls to the previous load() callbacks to
* recover from edit conflicts!
第二〇二八行 ⟶ 第一五六一行:
* This behavior can be disabled with setMaxConflictRetries(0).
*
* append([onSuccess], [onFailure]): Adds the text provided via setAppendText() to the end of the page.
* the page. Does not require calling load() first.
* onSuccess - callback function which is called when the method has succeeded (optional)
* onFailure - callback function which is called when the method fails (optional)
*
* prepend([onSuccess], [onFailure]): Adds the text provided via setPrependText() to the start of the page.
* of the page. Does not require calling load() first.
* onSuccess - callback function which is called when the method has succeeded (optional)
* onFailure - callback function which is called when the method fails (optional)
*
* getPageName(): returns a string containing the name of the loaded page, including the namespace
* move([onSuccess], [onFailure]): Moves a page to another title
*
* getPageText(): returns a string containing the text of the page after a successful load()
* patrol(): Patrols a page; ignores errors
*
* setPageText(pageText)
* deletePage([onSuccess], [onFailure]): Deletes a page (for admins only)
* pageText - string containing the updated page text that will be saved when save() is called
*
* setAppendText(appendText)
* undeletePage([onSuccess], [onFailure]): Undeletes a page (for admins only)
* appendText - string containing the text that will be appended to the page when append() is called
*
* setPrependText(prependText)
* protect([onSuccess], [onFailure]): Protects a page
* prependText - string containing the text that will be prepended to the page when prepend() is called
*
* setEditSummary(summary)
* getPageName(): returns a string containing the name of the loaded page, including the namespace
* summary - string containing the text of the edit summary that will be used when save() is called
*
* setMinorEdit(minorEdit)
* setPageText(pageText) sets the updated page text that will be saved when save() is called
* minorEdit is a boolean value:
* true - When save is called, the resulting edit will be marked as "minor".
* false - When save is called, the resulting edit will not be marked as "minor". (default)
*
* setBotEdit(botEdit)
* setAppendText(appendText) sets the text that will be appended to the page when append() is called
* botEdit is a boolean value:
* true - When save is called, the resulting edit will be marked as "bot".
* false - When save is called, the resulting edit will not be marked as "bot". (default)
*
* setPageSection(pageSection)
* setPrependText(prependText) sets the text that will be prepended to the page when prepend() is called
* pageSection - integer specifying the section number to load or save. The default is |null|, which means
* that the entire page will be retrieved.
*
* setMaxConflictRetries(maxRetries)
* maxRetries - number of retries for save errors involving an edit conflict or loss of edit token
* default: 2
*
* setMaxRetries(maxRetries)
* maxRetries - number of retries for save errors not involving an edit conflict or loss of edit token
* default: 2
*
* setCallbackParameters(callbackParameters)
第二〇六四行 ⟶ 第一六二一行:
*
* getStatusElement(): returns the Status element created by the constructor
*
* setFollowRedirect(followRedirect)
* followRedirect is a boolean value:
* true - a maximum of one redirect will be followed.
* In the event of a redirect, a message is displayed to the user and
* the redirect target can be retrieved with getPageName().
* false - the requested pageName will be used without regard to any redirect. (default)
*
* setWatchlist(watchlistOption)
* watchlistOption is a boolean value:
* true - page will be added to the user's watchlist when save() is called
* false - watchlist status of the page will not be changed (default)
*
* setWatchlistFromPreferences(watchlistOption)
* watchlistOption is a boolean value:
* true - page watchlist status will be set based on the user's
* preference settings when save() is called
* false - watchlist status of the page will not be changed (default)
*
* Watchlist notes:
* 1. The MediaWiki API value of 'unwatch', which explicitly removes the page from the
* user's watchlist, is not used.
* 2. If both setWatchlist() and setWatchlistFromPreferences() are called,
* the last call takes priority.
* 3. Twinkle modules should use the appropriate preference to set the watchlist options.
* 4. Most Twinkle modules use setWatchlist().
* setWatchlistFromPreferences() is only needed for the few Twinkle watchlist preferences
* that accept a string value of 'default'.
*
* setCreateOption(createOption)
* createOption is a string value:
* 'recreate' - create the page if it does not exist, or edit it if it exists
* 'createonly' - create the page if it does not exist, but return an error if it
* already exists
* 'nocreate' - don't create the page, only edit it if it already exists
* null - create the page if it does not exist, unless it was deleted in the moment
* between retrieve the edit token and saving the edit (default)
*
* exists(): returns true if the page existed on the wiki when it was last loaded
*
* lookupCreator(onSuccess): Retrieves the username of the user who created the page
* onSuccess - callback function which is called when the username is found
* within the callback, the username can be retrieved using the getCreator() function
*
* getCreator(): returns the user who created the page following lookupCreator()
*
* getCurrentID(): returns a string containing the current revision ID of the page
*
* patrol(): marks the page as patrolled, if possible
* lookupCreation(onSuccess): Retrieves the username and timestamp of page creation
* onSuccess - callback function which is called when the username and timestamp
* are found within the callback.
* The username can be retrieved using the getCreator() function;
* the timestamp can be retrieved using the getCreationTimestamp() function
*
* move(onSuccess, onFailure): Moves a page to another title
* getCreator(): returns the user who created the page following lookupCreation()
*
* deletePage(onSuccess, onFailure): Deletes a page (for admins only)
* getCreationTimestamp(): returns an ISOString timestamp of page creation following lookupCreation()
*
*/
第二一〇九行 ⟶ 第一七〇五行:
*/
 
/**
* @constructor
* @param {string} pageName The name of the page, prefixed by the namespace (if any)
* For the current page, use mw.config.get('wgPageName')
* @param {string} [currentAction] A string describing the action about to be undertaken (optional)
*/
Morebits.wiki.page = function(pageName, currentAction) {
 
if (!currentAction) {
currentAction = wgULS('打开页面“', '打開頁面「') + pageName + wgULS('”', '」');
}
 
第二一二八行 ⟶ 第一七一八行:
*/
var ctx = {
// backing fields for public properties
pageName: pageName,
pageExists: false,
editSummary: null,
tags: '',
callbackParameters: null,
statusElement: new Morebits.status(currentAction),
// - edit
 
// - edit
pageText: null,
editMode: 'all', // save() replaces entire contents of the page by default
第二一五〇行 ⟶ 第一七三八行:
watchlistOption: 'nochange',
creator: null,
// - revert
timestamp: null,
 
// - revert
revertOldID: null,
// - move
 
// - move
moveDestination: null,
moveTalkPage: false,
moveSubpages: false,
moveSuppressRedirect: false,
// - protect
 
// - protect
protectEdit: null,
protectMove: null,
protectCreate: null,
protectCascade: false,
// - stabilize (FlaggedRevs)
 
// - creation lookup
lookupNonRedirectCreator: false,
 
// - stabilize (FlaggedRevs)
flaggedRevs: null,
// internal status
 
// internal status
pageLoaded: false,
csrfTokeneditToken: null,
loadTime: null,
lastEditTime: null,
第二一八四行 ⟶ 第一七六三行:
conflictRetries: 0,
retries: 0,
// callbacks
 
// callbacks
onLoadSuccess: null,
onLoadFailure: null,
onSaveSuccess: null,
onSaveFailure: null,
onLookupCreationSuccessonLookupCreatorSuccess: null,
onMoveSuccess: null,
onMoveFailure: null,
onDeleteSuccess: null,
onDeleteFailure: null,
onUndeleteSuccess: null,
onUndeleteFailure: null,
onProtectSuccess: null,
onProtectFailure: null,
onStabilizeSuccess: null,
onStabilizeFailure: null,
// internal objects
 
// internal objects
loadQuery: null,
loadApi: null,
saveApi: null,
lookupCreationApilookupCreatorApi: null,
moveApi: null,
moveProcessApi: null,
patrolApi: null,
patrolProcessApi: null,
deleteApi: null,
deleteProcessApi: null,
undeleteApi: null,
undeleteProcessApi: null,
protectApi: null,
protectProcessApi: null,
第二二二四行 ⟶ 第一七九五行:
 
/**
* Public interface accessors
* Loads the text for the page
* @param {Function} onSuccess - callback function which is called when the load has succeeded
* @param {Function} [onFailure] - callback function which is called when the load fails (optional)
*/
this.getPageName = function() {
return ctx.pageName;
};
 
this.getPageText = function() {
return ctx.pageText;
};
 
this.setPageText = function(pageText) {
ctx.editMode = 'all';
ctx.pageText = pageText;
};
 
this.setAppendText = function(appendText) {
ctx.editMode = 'append';
ctx.appendText = appendText;
};
 
this.setPrependText = function(prependText) {
ctx.editMode = 'prepend';
ctx.prependText = prependText;
};
 
this.setEditSummary = function(summary) {
ctx.editSummary = summary;
};
 
this.setCreateOption = function(createOption) {
ctx.createOption = createOption;
};
 
this.setMinorEdit = function(minorEdit) {
ctx.minorEdit = minorEdit;
};
 
this.setBotEdit = function(botEdit) {
ctx.botEdit = botEdit;
};
 
this.setPageSection = function(pageSection) {
ctx.pageSection = pageSection;
};
 
this.setMaxConflictRetries = function(maxRetries) {
ctx.maxConflictRetries = maxRetries;
};
 
this.setMaxRetries = function(maxRetries) {
ctx.maxRetries = maxRetries;
};
 
this.setCallbackParameters = function(callbackParameters) {
ctx.callbackParameters = callbackParameters;
};
 
this.getCallbackParameters = function() {
return ctx.callbackParameters;
};
 
this.getCreator = function() {
return ctx.creator;
};
 
this.setOldID = function(oldID) {
ctx.revertOldID = oldID;
};
 
this.getCurrentID = function() {
return ctx.revertCurID;
};
 
this.getRevisionUser = function() {
return ctx.revertUser;
};
 
this.setMoveDestination = function(destination) {
ctx.moveDestination = destination;
};
 
this.setMoveTalkPage = function(flag) {
ctx.moveTalkPage = !!flag;
};
 
this.setMoveSubpages = function(flag) {
ctx.moveSubpages = !!flag;
};
 
this.setMoveSuppressRedirect = function(flag) {
ctx.moveSuppressRedirect = !!flag;
};
 
this.setEditProtection = function(level, expiry) {
ctx.protectEdit = { level: level, expiry: expiry };
};
 
this.setMoveProtection = function(level, expiry) {
ctx.protectMove = { level: level, expiry: expiry };
};
 
this.setCreateProtection = function(level, expiry) {
ctx.protectCreate = { level: level, expiry: expiry };
};
 
this.setCascadingProtection = function(flag) {
ctx.protectCascade = !!flag;
};
 
this.setFlaggedRevs = function(level, expiry) {
ctx.flaggedRevs = { level: level, expiry: expiry };
};
 
this.getStatusElement = function() {
return ctx.statusElement;
};
 
this.setFollowRedirect = function(followRedirect) {
if (ctx.pageLoaded) {
ctx.statusElement.error("内部错误:不能在页面加载后修改重定向设置!");
return;
}
ctx.followRedirect = followRedirect;
};
 
this.setWatchlist = function(flag) {
if (flag) {
ctx.watchlistOption = 'watch';
} else {
ctx.watchlistOption = 'nochange';
}
};
 
this.setWatchlistFromPreferences = function(flag) {
if (flag) {
ctx.watchlistOption = 'preferences';
} else {
ctx.watchlistOption = 'nochange';
}
};
 
this.suppressProtectWarning = function() {
ctx.suppressProtectWarning = true;
};
 
this.exists = function() {
return ctx.pageExists;
};
 
this.load = function(onSuccess, onFailure) {
ctx.onLoadSuccess = onSuccess;
第二二三四行 ⟶ 第一九五〇行:
// Need to be able to do something after the page loads
if (!onSuccess) {
ctx.statusElement.error('"内部错误:未给load()提供onSuccess回调函数!'");
ctx.onLoadFailure(this);
return;
第二二四二行 ⟶ 第一九五八行:
action: 'query',
prop: 'info|revisions',
intoken: 'edit', // fetch an edit token
curtimestamp: '',
meta: 'tokens',
type: 'csrf',
titles: ctx.pageName
// don't need rvlimit=1 because we don't need rvstartid here and only one actual rev is returned by default
第二二六三行 ⟶ 第一九七七行:
ctx.loadQuery.rvsection = ctx.pageSection;
}
if (Morebits.userIsSysopuserIsInGroup('sysop')) {
ctx.loadQuery.inprop = 'protection';
}
 
ctx.loadApi = new Morebits.wiki.api(wgULS('"抓取页面…', '抓取頁面…')", ctx.loadQuery, fnLoadSuccess, ctx.statusElement, ctx.onLoadFailure);
ctx.loadApi.setParent(this);
ctx.loadApi.post();
};
 
// Save updated .pageText to Wikipedia
/**
// Only valid after successful .load()
* Saves the text for the page to Wikipedia
* Must be preceded by successfully calling load().
*
* Warning: Calling save() can result in additional calls to the previous load() callbacks
* to recover from edit conflicts!
* In this case, callers must make the same edit to the new pageText and reinvoke save().
* This behavior can be disabled with setMaxConflictRetries(0).
* @param {Function} [onSuccess] - callback function which is called when the save has
* succeeded (optional)
* @param {Function} [onFailure] - callback function which is called when the save fails
* (optional)
*/
this.save = function(onSuccess, onFailure) {
ctx.onSaveSuccess = onSuccess;
ctx.onSaveFailure = onFailure || emptyFunction;
 
// are we getting our editingedit token from mw.user.tokens?
var canUseMwUserToken = fnCanUseMwUserToken('edit');
 
if (!ctx.pageLoaded && !canUseMwUserToken) {
ctx.statusElement.error('"内部错误:试图保存未被加载的页面!'");
ctx.onSaveFailure(this);
return;
}
if (!ctx.editSummary) {
ctx.statusElement.error('"内部错误:保存前未设置编辑摘要!'");
ctx.onSaveFailure(this);
return;
第二三〇五行 ⟶ 第二〇〇八行:
// shouldn't happen if canUseMwUserToken === true
if (ctx.fullyProtected && !ctx.suppressProtectWarning &&
!confirm(wgULS('您即将编辑全保护页面 "', '您即將編輯全保護頁面 "') + ctx.pageName +
(ctx.fullyProtected === 'infinity' ? '(永久)' : ('(到期:' + new Morebits.date(ctx.fullyProtected).calendar('utc') + ' (UTC)')) +
wgULS('。\n\n击确定以确定,或击取消以取消操作。', '。\n\n點擊確定以確定,或點擊取消以取消操作。'))) {
ctx.statusElement.error(wgULS('已取消"对全保护页面的编辑。', '已取消對全保護頁面的編輯')");
ctx.onSaveFailure(this);
return;
第二三一七行 ⟶ 第二〇二〇行:
var query = {
action: 'edit',
tags: ctx.tags'Twinkle',
title: ctx.pageName,
summary: ctx.editSummary,
token: canUseMwUserToken ? mw.user.tokens.get('csrfToken') : ctx.csrfTokeneditToken,
watchlist: ctx.watchlistOption
};
第二三四一行 ⟶ 第二〇四四行:
 
switch (ctx.editMode) {
case 'append':
query.appendtext = ctx.appendText; // use mode to append to current page contents
break;
case 'prepend':
query.prependtext = ctx.prependText; // use mode to prepend to current page contents
break;
case 'revert':
query.undo = ctx.revertCurID;
query.undoafter = ctx.revertOldID;
if (ctx.lastEditTime) {
query.basetimestamp = ctx.lastEditTime; // check that page hasn't been edited since it was loaded
}
query.starttimestamp = ctx.loadTime; // check that page hasn't been deleted since it was loaded (don't recreate bad stuff)
break;
default: // 'all'
query.text = ctx.pageText; // replace entire contents of the page
if (ctx.lastEditTime) {
query.basetimestamp = ctx.lastEditTime; // check that page hasn't been edited since it was loaded
}
query.starttimestamp = ctx.loadTime; // check that page hasn't been deleted since it was loaded (don't recreate bad stuff)
break;
}
 
第二三七二行 ⟶ 第二〇七五行:
}
 
ctx.saveApi = new Morebits.wiki.api(wgULS(' "保存页面…', '儲存頁面…')", query, fnSaveSuccess, ctx.statusElement, fnSaveError);
ctx.saveApi.setParent(this);
ctx.saveApi.post();
};
 
/**
* Adds the text provided via setAppendText() to the end of the page.
* Does not require calling load() first.
* @param {Function} [onSuccess] - callback function which is called when the method has succeeded (optional)
* @param {Function} [onFailure] - callback function which is called when the method fails (optional)
*/
this.append = function(onSuccess, onFailure) {
ctx.editMode = 'append';
第二三九五行 ⟶ 第二〇九二行:
};
 
/**
* Adds the text provided via setPrependText() to the start of the page.
* Does not require calling load() first.
* @param {Function} [onSuccess] - callback function which is called when the method has succeeded (optional)
* @param {Function} [onFailure] - callback function which is called when the method fails (optional)
*/
this.prepend = function(onSuccess, onFailure) {
ctx.editMode = 'prepend';
第二四一三行 ⟶ 第二一〇四行:
};
 
this.lookupCreator = function(onSuccess) {
/** @returns {string} string containing the name of the loaded page, including the namespace */
this.getPageName = function() {
return ctx.pageName;
};
 
/** @returns {string} string containing the text of the page after a successful load() */
this.getPageText = function() {
return ctx.pageText;
};
 
/** @param {string} pageText - updated page text that will be saved when save() is called */
this.setPageText = function(pageText) {
ctx.editMode = 'all';
ctx.pageText = pageText;
};
 
/** @param {string} appendText - text that will be appended to the page when append() is called */
this.setAppendText = function(appendText) {
ctx.editMode = 'append';
ctx.appendText = appendText;
};
 
/** @param {string} prependText - text that will be prepended to the page when prepend() is called */
this.setPrependText = function(prependText) {
ctx.editMode = 'prepend';
ctx.prependText = prependText;
};
 
 
 
// Edit-related setter methods:
/** @param {string} summary - text of the edit summary that will be used when save() is called */
this.setEditSummary = function(summary) {
ctx.editSummary = summary;
};
 
this.setTags = function(tags) {
ctx.tags = tags;
};
 
/**
* @param {string} createOption - can take the following four values:
* `recreate` - create the page if it does not exist, or edit it if it exists.
* `createonly` - create the page if it does not exist, but return an error if it
* already exists.
* `nocreate` - don't create the page, only edit it if it already exists.
* null - create the page if it does not exist, unless it was deleted in the moment
* between loading the page and saving the edit (default)
*
*/
this.setCreateOption = function(createOption) {
ctx.createOption = createOption;
};
 
/** @param {boolean} minorEdit - set true to mark the edit as a minor edit. */
this.setMinorEdit = function(minorEdit) {
ctx.minorEdit = minorEdit;
};
 
/** @param {boolean} botEdit - set true to mark the edit as a bot edit */
this.setBotEdit = function(botEdit) {
ctx.botEdit = botEdit;
};
 
/**
* @param {number} pageSection - integer specifying the section number to load or save.
* If specified as `null`, the entire page will be retrieved.
*/
this.setPageSection = function(pageSection) {
ctx.pageSection = pageSection;
};
 
/**
* @param {number} maxConflictRetries - number of retries for save errors involving an edit conflict or
* loss of token. Default: 2
*/
this.setMaxConflictRetries = function(maxConflictRetries) {
ctx.maxConflictRetries = maxConflictRetries;
};
 
/**
* @param {number} maxRetries - number of retries for save errors not involving an edit conflict or
* loss of token. Default: 2
*/
this.setMaxRetries = function(maxRetries) {
ctx.maxRetries = maxRetries;
};
 
/**
* @param {boolean} watchlistOption
* True - page will be added to the user's watchlist when save() is called
* False - watchlist status of the page will not be changed (default)
*/
this.setWatchlist = function(watchlistOption) {
if (watchlistOption) {
ctx.watchlistOption = 'watch';
} else {
ctx.watchlistOption = 'nochange';
}
};
 
/**
* @param {boolean} watchlistOption
* True - page watchlist status will be set based on the user's
* preference settings when save() is called.
* False - watchlist status of the page will not be changed (default)
*
* Watchlist notes:
* 1. The MediaWiki API value of 'unwatch', which explicitly removes the page from the
* user's watchlist, is not used.
* 2. If both setWatchlist() and setWatchlistFromPreferences() are called,
* the last call takes priority.
* 3. Twinkle modules should use the appropriate preference to set the watchlist options.
* 4. Most Twinkle modules use setWatchlist().
* setWatchlistFromPreferences() is only needed for the few Twinkle watchlist preferences
* that accept a string value of 'default'.
*/
this.setWatchlistFromPreferences = function(watchlistOption) {
if (watchlistOption) {
ctx.watchlistOption = 'preferences';
} else {
ctx.watchlistOption = 'nochange';
}
};
 
/**
* @param {boolean} followRedirect
* true - a maximum of one redirect will be followed.
* In the event of a redirect, a message is displayed to the user and
* the redirect target can be retrieved with getPageName().
* false - the requested pageName will be used without regard to any redirect (default).
*/
this.setFollowRedirect = function(followRedirect) {
if (ctx.pageLoaded) {
ctx.statusElement.error('内部错误:不能在页面加载后修改重定向设置!');
return;
}
ctx.followRedirect = followRedirect;
};
 
// lookup-creation setter function
/**
* @param {boolean} flag - if set true, the author and timestamp of the first non-redirect
* version of the page is retrieved.
*
* Warning:
* 1. If there are no revisions among the first 50 that are non-redirects, or if there are
* less 50 revisions and all are redirects, the original creation is retrived.
* 2. Revisions that the user is not privileged to access (revdeled/suppressed) will be treated
* as non-redirects.
* 3. Must not be used when the page has a non-wikitext contentmodel
* such as Modulespace Lua or user JavaScript/CSS
*/
this.setLookupNonRedirectCreator = function(flag) {
ctx.lookupNonRedirectCreator = flag;
};
 
// Move-related setter functions
/** @param {string} destination */
this.setMoveDestination = function(destination) {
ctx.moveDestination = destination;
};
 
/** @param {boolean} flag */
this.setMoveTalkPage = function(flag) {
ctx.moveTalkPage = !!flag;
};
 
/** @param {boolean} flag */
this.setMoveSubpages = function(flag) {
ctx.moveSubpages = !!flag;
};
 
/** @param {boolean} flag */
this.setMoveSuppressRedirect = function(flag) {
ctx.moveSuppressRedirect = !!flag;
};
 
// Protect-related setter functions
this.setEditProtection = function(level, expiry) {
ctx.protectEdit = { level: level, expiry: expiry };
};
 
this.setMoveProtection = function(level, expiry) {
ctx.protectMove = { level: level, expiry: expiry };
};
 
this.setCreateProtection = function(level, expiry) {
ctx.protectCreate = { level: level, expiry: expiry };
};
 
this.setCascadingProtection = function(flag) {
ctx.protectCascade = !!flag;
};
 
this.suppressProtectWarning = function() {
ctx.suppressProtectWarning = true;
};
 
// Revert-related getters/setters:
this.setOldID = function(oldID) {
ctx.revertOldID = oldID;
};
 
/** @returns {string} string containing the current revision ID of the page */
this.getCurrentID = function() {
return ctx.revertCurID;
};
 
/** @returns {string} last editor of the page */
this.getRevisionUser = function() {
return ctx.revertUser;
};
 
// Miscellaneous getters/setters:
 
/**
* `callbackParameters` - an object for use in a callback function
*
* Callback notes: callbackParameters is for use by the caller only. The parameters
* allow a caller to pass the proper context into its callback function.
* Callers must ensure that any changes to the callbackParameters object
* within a load() callback still permit a proper re-entry into the
* load() callback if an edit conflict is detected upon calling save().
*/
this.setCallbackParameters = function(callbackParameters) {
ctx.callbackParameters = callbackParameters;
};
 
/**
* @returns the object previous set by setCallbackParameters()
*/
this.getCallbackParameters = function() {
return ctx.callbackParameters;
};
 
/**
* @returns {Morebits.status} Status element created by the constructor
*/
this.getStatusElement = function() {
return ctx.statusElement;
};
 
/**
* @param {string} level The right required for edits not to require
* review. Possible options: none, autoconfirmed, review (not on enWiki).
* @param {string} expiry
*/
this.setFlaggedRevs = function(level, expiry) {
ctx.flaggedRevs = { level: level, expiry: expiry };
};
 
/**
* @returns {boolean} true if the page existed on the wiki when it was last loaded
*/
this.exists = function() {
return ctx.pageExists;
};
 
/**
* @returns {string} ISO 8601 timestamp at which the page was last loaded
*/
this.getLoadTime = function() {
return ctx.loadTime;
};
 
/**
* @returns {string} the user who created the page following lookupCreation()
*/
this.getCreator = function() {
return ctx.creator;
};
 
/**
* @returns {string} the ISOString timestamp of page creation following lookupCreation()
*/
this.getCreationTimestamp = function() {
return ctx.timestamp;
};
 
/**
* Retrieves the username of the user who created the page as well as
* the timestamp of creation
* @param {Function} onSuccess - callback function (required) which is
* called when the username and timestamp are found within the callback.
* The username can be retrieved using the getCreator() function;
* the timestamp can be retrieved using the getCreationTimestamp() function
*/
this.lookupCreation = function(onSuccess) {
if (!onSuccess) {
ctx.statusElement.error('"内部错误:未给lookupCreationlookupCreator()提供onSuccess回调函数!'");
return;
}
ctx.onLookupCreationSuccessonLookupCreatorSuccess = onSuccess;
 
var query = {
第二七一三行 ⟶ 第二一一六行:
'titles': ctx.pageName,
'rvlimit': 1,
'rvprop': 'user|timestamp',
'rvdir': 'newer'
};
 
// Only the wikitext content model can reliably handle
// rvsection, others return an error when paired with the
// content rvprop. Relatedly, non-wikitext models don't
// understand the #REDIRECT concept, so we shouldn't attempt
// the redirect resolution in fnLookupCreationSuccess
if (ctx.lookupNonRedirectCreator) {
query.rvsection = 0;
query.rvprop += '|content';
}
 
if (ctx.followRedirect) {
第二七三一行 ⟶ 第二一二四行:
}
 
ctx.lookupCreationApilookupCreatorApi = new Morebits.wiki.api(wgULS('"抓取页面创建者信息', '抓取頁面建立者資訊')", query, fnLookupCreationSuccessfnLookupCreatorSuccess, ctx.statusElement);
ctx.lookupCreationApilookupCreatorApi.setParent(this);
ctx.lookupCreationApilookupCreatorApi.post();
};
 
/**
* @deprecated since May/June 2019, renamed to lookupCreation
*/
this.lookupCreator = function(onSuccess) {
console.warn("NOTE: lookupCreator() from Twinkle's Morebits has been deprecated since May/June 2019, please use lookupCreation() instead"); // eslint-disable-line no-console
return this.lookupCreation(onSuccess);
};
 
/**
* Marks the page as patrolled, using rcid (if available) or revid
*
* Patrolling as such doesn't need to rely on loading the page in
* question; simply passing a revid to the API is sufficient, so in
* those cases just using Morebits.wiki.api is probably preferable.
*
* No error handling since we don't actually care about the errors
*/
this.patrol = function() {
// There's no patrol link on page, so we can't patrol
if (!Morebits.userIsSysop && !Morebits.userIsInGroup('patroller')) {
if ( !$( '.patrollink' ).length ) {
return;
}
 
// Extract the rcid token from the "Mark page as patrolled" link on page
// If a link is present, don't need to check if it's patrolled
ifvar patrolhref = ($( '.patrollink a' ).length)attr( {'href' ),
rcid = mw.util.getParamValue( 'rcid', patrolhref );
var patrolhref = $('.patrollink a').attr('href');
ctx.rcid = mw.util.getParamValue('rcid', patrolhref);
fnProcessPatrol(this, this);
} else {
var patrolQuery = {
action: 'query',
prop: 'info',
meta: 'tokens',
type: 'patrol', // as long as we're querying, might as well get a token
list: 'recentchanges', // check if the page is unpatrolled
titles: ctx.pageName,
rcprop: 'patrolled',
rctitle: ctx.pageName,
rclimit: 1
};
 
if ( rcid ) {
ctx.patrolApi = new Morebits.wiki.api(wgULS('抓取巡查令牌…', '抓取巡查權杖…'), patrolQuery, fnProcessPatrol);
 
ctx.patrolApi.setParent(this);
var patrolstat = new Morebits.status( '标记页面为已巡查' );
ctx.patrolApi.post();
 
var wikipedia_api = new Morebits.wiki.api( '进行中…', {
action: 'patrol',
rcid: rcid,
token: mw.user.tokens.get( 'patrolToken' )
}, null, patrolstat );
 
// We don't really care about the response
wikipedia_api.post();
}
};
 
/**
* Reverts a page to revertOldID
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailure] - callback function to run on failure (optional)
*/
this.revert = function(onSuccess, onFailure) {
ctx.onSaveSuccess = onSuccess;
第二七九二行 ⟶ 第二一五九行:
 
if (!ctx.revertOldID) {
ctx.statusElement.error('"内部错误:回退前未提供修订版本ID!'");
ctx.onSaveFailure(this);
return;
第二八〇一行 ⟶ 第二一六八行:
};
 
/**
* Moves a page to another title
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailure] - callback function to run on failure (optional)
*/
this.move = function(onSuccess, onFailure) {
ctx.onMoveSuccess = onSuccess;
第二八一一行 ⟶ 第二一七三行:
 
if (!ctx.editSummary) {
ctx.statusElement.error('"内部错误:移动前未提供理由(使用setEditSummary函数)!'");
ctx.onMoveFailure(this);
return;
}
if (!ctx.moveDestination) {
ctx.statusElement.error('"内部错误:移动前未指定目标页面!'");
ctx.onMoveFailure(this);
return;
}
if (fnCanUseMwUserToken('move')) {
fnProcessMove.call(this, this);
} else {
var query = fnNeedTokenInfoQuery('move');
 
var query = {
ctx.moveApi = new Morebits.wiki.api(wgULS('抓取移动令牌…', '抓取移動權杖…'), query, fnProcessMove, ctx.statusElement, ctx.onMoveFailure);
action: 'query',
ctx.moveApi.setParent(this);
prop: 'info',
ctx.moveApi.post();
intoken: 'move',
titles: ctx.pageName
};
if (ctx.followRedirect) {
query.redirects = ''; // follow all redirects
}
if (Morebits.userIsInGroup('sysop')) {
query.inprop = 'protection';
}
 
ctx.moveApi = new Morebits.wiki.api("抓取移动令牌…", query, fnProcessMove, ctx.statusElement, ctx.onMoveFailure);
ctx.moveApi.setParent(this);
ctx.moveApi.post();
};
 
// |delete| is a reserved word in some flavours of JS
/**
* Deletes a page (for admins only)
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailure] - callback function to run on failure (optional)
*/
this.deletePage = function(onSuccess, onFailure) {
ctx.onDeleteSuccess = onSuccess;
第二八四二行 ⟶ 第二二〇七行:
 
// if a non-admin tries to do this, don't bother
if (!Morebits.userIsSysopuserIsInGroup('sysop')) {
ctx.statusElement.error('"不能删除页面:只有管理员可进行该操作'");
ctx.onDeleteFailure(this);
return;
}
if (!ctx.editSummary) {
ctx.statusElement.error('"内部错误:删除前未提供理由(使用setEditSummary函数)!'");
ctx.onDeleteFailure(this);
return;
第二八五六行 ⟶ 第二二二一行:
fnProcessDelete.call(this, this);
} else {
var query = fnNeedTokenInfoQuery('delete');{
action: 'query',
prop: 'info',
inprop: 'protection',
intoken: 'delete',
titles: ctx.pageName
};
if (ctx.followRedirect) {
query.redirects = ''; // follow all redirects
}
 
ctx.deleteApi = new Morebits.wiki.api(wgULS('"抓取删除令牌…', '抓取刪除權杖…')", query, fnProcessDelete, ctx.statusElement, ctx.onDeleteFailure);
ctx.deleteApi.setParent(this);
ctx.deleteApi.post();
第二八六四行 ⟶ 第二二三八行:
};
 
/**
* Undeletes a page (for admins only)
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailure] - callback function to run on failure (optional)
*/
this.undeletePage = function(onSuccess, onFailure) {
ctx.onUndeleteSuccess = onSuccess;
ctx.onUndeleteFailure = onFailure || emptyFunction;
 
// if a non-admin tries to do this, don't bother
if (!Morebits.userIsSysop) {
ctx.statusElement.error(wgULS('不能取消删除页面:只有管理员可进行该操作', '不能取消刪除頁面:只有管理員可進行該操作'));
ctx.onUndeleteFailure(this);
return;
}
if (!ctx.editSummary) {
ctx.statusElement.error('内部错误:取消删除前未提供理由(使用setEditSummary函数)!', '內部錯誤:取消刪除前未提供理由(使用setEditSummary函式)!');
ctx.onUndeleteFailure(this);
return;
}
 
if (fnCanUseMwUserToken('undelete')) {
fnProcessUndelete.call(this, this);
} else {
var query = fnNeedTokenInfoQuery('undelete');
 
ctx.undeleteApi = new Morebits.wiki.api(wgULS('抓取取消删除令牌…', '抓取取消刪除權杖…'), query, fnProcessUndelete, ctx.statusElement, ctx.onUndeleteFailure);
ctx.undeleteApi.setParent(this);
ctx.undeleteApi.post();
}
};
 
/**
* Protects a page (for admins only)
* @param {Function} [onSuccess] - callback function to run on success (optional)
* @param {Function} [onFailure] - callback function to run on failure (optional)
*/
this.protect = function(onSuccess, onFailure) {
ctx.onProtectSuccess = onSuccess;
第二九〇六行 ⟶ 第二二四三行:
 
// if a non-admin tries to do this, don't bother
if (!Morebits.userIsSysopuserIsInGroup('sysop')) {
ctx.statusElement.error('"不能保护页面:只有管理员可进行该操作'");
ctx.onProtectFailure(this);
return;
}
if (!ctx.protectEdit && !ctx.protectMove && !ctx.protectCreate) {
ctx.statusElement.error('"内部错误:调用protect()前未设置编辑和/或移动和/或白纸保护!'");
ctx.onProtectFailure(this);
return;
}
if (!ctx.editSummary) {
ctx.statusElement.error('"内部错误:保护前未提供理由(使用setEditSummary函数)!'");
ctx.onProtectFailure(this);
return;
}
 
// because of the way MW API interprets protection levels (absolute, not
// (absolute, not differential), we always need to request protection levels from the server
var query = {
// protection levels from the server
action: 'query',
var query = fnNeedTokenInfoQuery('protect');
prop: 'info',
inprop: 'protection',
intoken: 'protect',
titles: ctx.pageName,
watchlist: ctx.watchlistOption
};
if (ctx.followRedirect) {
query.redirects = ''; // follow all redirects
}
 
ctx.protectApi = new Morebits.wiki.api(wgULS('"抓取保护令牌…', '抓取保護權杖…')", query, fnProcessProtect, ctx.statusElement, ctx.onProtectFailure);
ctx.protectApi.setParent(this);
ctx.protectApi.post();
};
 
// apply FlaggedRevs protection-style settings
/**
// only works where $wgFlaggedRevsProtection = true (i.e. where FlaggedRevs
* Apply FlaggedRevs protection-style settings
// settings appear on the wiki's "protect" tab)
* only works where $wgFlaggedRevsProtection = true (i.e. where FlaggedRevs
* settings appear on the wiki's "protect" tab)
* @param {function} [onSuccess]
* @param {function} [onFailure]
*/
this.stabilize = function(onSuccess, onFailure) {
ctx.onStabilizeSuccess = onSuccess;
第二九四四行 ⟶ 第二二八六行:
 
// if a non-admin tries to do this, don't bother
if (!Morebits.userIsSysopuserIsInGroup('sysop')) {
ctx.statusElement.error('"不能应用FlaggedRevs设定:只有管理员能这么做'");
ctx.onStabilizeFailure(this);
return;
}
if (!ctx.flaggedRevs) {
ctx.statusElement.error('"内部错误:调用stabilize()前必须设置flaggedRevs!'");
ctx.onStabilizeFailure(this);
return;
}
if (!ctx.editSummary) {
ctx.statusElement.error('"内部错误:调用stabilize()前未提供理由(用setEditSummary函数)!'");
ctx.onStabilizeFailure(this);
return;
}
 
var query = {
if (fnCanUseMwUserToken('stabilize')) {
action: 'query',
fnProcessStabilize.call(this, this);
prop: 'info|flagged',
} else {
intoken: 'edit',
var query = fnNeedTokenInfoQuery('stabilize');
titles: ctx.pageName
 
};
ctx.stabilizeApi = new Morebits.wiki.api('抓取stabilize令牌…', query, fnProcessStabilize, ctx.statusElement, ctx.onStabilizeFailure);
if (ctx.followRedirect) {
ctx.stabilizeApi.setParent(this);
query.redirects = ''; // follow all redirects
ctx.stabilizeApi.post();
}
 
ctx.stabilizeApi = new Morebits.wiki.api("抓取stabilize令牌…", query, fnProcessStabilize, ctx.statusElement, ctx.onStabilizeFailure);
ctx.stabilizeApi.setParent(this);
ctx.stabilizeApi.post();
};
 
/* Private member functions
/*
*
* Private member functions
* These are not exposed outside
*/
 
/**
* Determines whether we can save an API call by using the csrfedit token sent with the page
* HTML, or whether we need to ask the server for more info (e.g. protection expiry).
*
* Currently only used for append, prepend, and deletePage.
* Only applicable for csrf token actions, e.g. not patrol
*
* @param {string} action The action being undertaken, e.g. "edit", "delete".
* Currently used for append, prepend, deletePage, undeletePage, move,
* and stabilize. Can't use for protect since it always needs to
* request protection status.
*
* @param {string} [action=edit] The action being undertaken, e.g.
* "edit" or "delete". In practice, only "edit" or "notedit" matters.
* @returns {boolean}
*/
var fnCanUseMwUserToken = function(action) {
action = typeof action !== 'undefined' ? action : 'edit'; // IE doesn't support default parameters
 
// API-based redirect resolution only works for action=query and
// action=edit in append/prepend modes (and section=new, but we don't
第三〇〇二行 ⟶ 第二三四〇行:
 
// do we need to fetch the edit protection expiry?
if (Morebits.userIsSysopuserIsInGroup('sysop') && !ctx.suppressProtectWarning) {
// poor man's normalisation
if (new mw.Title(Morebits.pageNameNorm).getPrefixedText() === new mw.Title(ctx.pageName).getPrefixedText()) {
if (Morebits.string.toUpperCaseFirstChar(mw.config.get('wgPageName')).replace(/ /g, '_').trim() !==
Morebits.string.toUpperCaseFirstChar(ctx.pageName).replace(/ /g, '_').trim()) {
return false;
}
 
// wgRestrictionEdit is null on non-existent pages,
// so this neatly handles nonexistent pages
var editRestriction = mw.config.get('wgRestrictionEdit');
if (!editRestriction || editRestriction.indexOf('sysop') !== -1) {
第三〇一六行 ⟶ 第二三五四行:
 
return !!mw.user.tokens.get('csrfToken');
};
 
/**
* When functions can't use fnCanUseMwUserToken or require checking
* protection, maintain the query in one place. Used for delete,
* undelete, protect, stabilize, and move (basically, just not load)
*
* @param {string} action The action being undertaken, e.g. "edit" or
* "delete"
*/
var fnNeedTokenInfoQuery = function(action) {
var query = {
action: 'query',
meta: 'tokens',
type: 'csrf',
titles: ctx.pageName
};
// Protection not checked for flagged-revs or non-sysop moves
if (action !== 'stabilize' && (action !== 'move' || Morebits.userIsSysop)) {
query.prop = 'info';
query.inprop = 'protection';
}
if (ctx.followRedirect && action !== 'undelete') {
query.redirects = ''; // follow all redirects
}
return query;
};
 
第三〇五三行 ⟶ 第二三六五行:
var xml = ctx.loadApi.getXML();
 
if ( !fnCheckPageName(xml, ctx.onLoadFailure) ) {
return; // abort
}
 
ctx.pageExists = ($(xml).find('page').attr('missing') !== ''"");
if (ctx.pageExists) {
ctx.pageText = $(xml).find('rev').text();
} else {
ctx.pageText = ''; // allow for concatenation, etc.
}
ctx.csrfToken = $(xml).find('tokens').attr('csrftoken');
if (!ctx.csrfToken) {
ctx.statusElement.error(wgULS('未能抓取编辑令牌。', '未能抓取編輯權杖。'));
ctx.onLoadFailure(this);
return;
}
ctx.loadTime = $(xml).find('api').attr('curtimestamp');
if (!ctx.loadTime) {
ctx.statusElement.error(wgULS('未能抓取当前时间戳。', '未能抓取當前時間戳。'));
ctx.onLoadFailure(this);
return;
}
 
// extract protection info, to alert admins when they are about to edit a protected page
if (Morebits.userIsSysopuserIsInGroup('sysop')) {
var editprot = $(xml).find('pr[type="edit"]');
if (editprot.length > 0 && editprot.attr('level') === 'sysop') {
第三〇八六行 ⟶ 第二三八六行:
}
 
ctx.editToken = $(xml).find('page').attr('edittoken');
if (!ctx.editToken) {
ctx.statusElement.error("未能抓取编辑令牌。");
ctx.onLoadFailure(this);
return;
}
ctx.loadTime = $(xml).find('page').attr('starttimestamp');
if (!ctx.loadTime) {
ctx.statusElement.error("未能抓取起始时间戳。");
ctx.onLoadFailure(this);
return;
}
ctx.lastEditTime = $(xml).find('rev').attr('timestamp');
ctx.revertCurID = $(xml).find('page').attr('lastrevid');
第三〇九二行 ⟶ 第二四〇四行:
ctx.revertCurID = $(xml).find('rev').attr('revid');
if (!ctx.revertCurID) {
ctx.statusElement.error(wgULS('"未能抓取当前修订版本ID。', '未能抓取目前修訂版本ID。')");
ctx.onLoadFailure(this);
return;
第三〇九八行 ⟶ 第二四一〇行:
ctx.revertUser = $(xml).find('rev').attr('user');
if (!ctx.revertUser) {
if ($(xml).find('rev').attr('userhidden') === ''"") { // username was RevDel'd or oversighted
ctx.revertUser = wgULS('"<用户名已隐藏>', '<使用者名稱已隱藏>')";
} else {
ctx.statusElement.error(wgULS('"未能抓取此修订版本的编辑者。', '未能抓取此修訂版本的編輯者。')");
ctx.onLoadFailure(this);
return;
第三一〇七行 ⟶ 第二四一九行:
}
// set revert edit summary
ctx.editSummary = '"[[WP:UNDO|取消]]由 '" + ctx.revertUser + '" 所做出的' + wgULS('修订 ', '修訂 ')" + ctx.revertOldID + '"'" + ctx.editSummary;
}
 
第三一二三行 ⟶ 第二四三五行:
 
// check for invalid titles
if ( $(xml).find('page').attr('invalid') === '') {
ctx.statusElement.error(wgULS('"标题不合法:', '標題不合法:')" + ctx.pageName);
onFailure(this);
return false; // abort
第三一三〇行 ⟶ 第二四四二行:
 
// retrieve actual title of the page after normalization and redirects
if ( $(xml).find('page').attr('title') ) {
var resolvedName = $(xml).find('page').attr('title');
 
// only notify user for redirects, not normalization
if ( $(xml).find('redirects').length > 0 ) {
Morebits.status.info(wgULS('信息'"Info", '資訊'), wgULS('"', '從 ')" + ctx.pageName + '" 重定向到 '" + resolvedName );
}
ctx.pageName = resolvedName; // always update in case of normalization
}
else {
// could be a circular redirect or other problem
ctx.statusElement.error(wgULS('"不能解页面的重定向:', '不能解析頁面的重新導向:')" + ctx.pageName);
onFailure(this);
 
第三一四八行 ⟶ 第二四六一行:
}
return true; // all OK
};
 
// helper function to get a new token on encountering token errors
// in save, deletePage, and undeletePage
// Being a synchronous ajax call, this blocks the event loop,
// and hence should be used sparingly.
var fnGetToken = function() {
var token;
var tokenApi = new Morebits.wiki.api(wgULS('获取令牌', '取得權杖'), {
action: 'query',
meta: 'tokens'
}, function(apiobj) {
token = $(apiobj.responseXML).find('tokens').attr('csrftoken');
}, null, function() {
this.getStatusElement().error(wgULS('获取令牌失败', '取得權杖失敗'));
});
tokenApi.post({async: false});
return token;
};
 
第三一七四行 ⟶ 第二四六九行:
 
// see if the API thinks we were successful
if ($(xml).find('edit').attr('result') === '"Success'") {
 
// real success
// default on success action - display link for edited page
var link = document.createElement('a');
link.setAttribute('href', mw.util.getUrl(ctx.pageName) );
link.appendChild(document.createTextNode(ctx.pageName));
ctx.statusElement.info(['完成(', link, ')']);
第三一八八行 ⟶ 第二四八三行:
}
 
// errors here are only generated by extensions which hook APIEditBeforeSave within MediaWiki,
// whichWikimedia aswikis ofshould 1.34.0-wmf.23only (Septreturn 2019)spam shouldblacklist onlyerrors, captchas, encompassand captchaAbuseFilter messages
ifvar $editNode = ($(xml).find('captchaedit').length > 0) {;
var blacklist = $editNode.attr('spamblacklist');
ctx.statusElement.error(wgULS('不能保存页面,因维基服务器要求您输入验证码。', '不能儲存頁面,因維基伺服器要求您輸入驗證碼。'));
 
if (blacklist) {
var code = document.createElement('code');
code.style.fontFamily = "monospace";
code.appendChild(document.createTextNode(blacklist));
ctx.statusElement.error(['不能保存页面,因URL ', code, ' 在垃圾黑名单中。']);
} else if ( $(xml).find('captcha').length > 0 ) {
ctx.statusElement.error("不能保存页面,因服务器试图让您完成一个全自动区分计算机和人类的图灵测试。");
} else if ( $editNode.attr('code') === 'abusefilter-disallowed' ) {
ctx.statusElement.error('编辑被防滥用过滤器规则“' + $editNode.attr('info').substring(17) + '”阻止。');
} else if ( $editNode.attr('info').indexOf('Hit AbuseFilter:') === 0 ) {
var div = document.createElement('div');
div.className = "toccolours";
div.style.fontWeight = "normal";
div.style.color = "black";
div.innerHTML = $editNode.attr('warning');
ctx.statusElement.error([ '防滥用过滤器给出了如下警告:', div, '如果您仍希望做出该编辑,请重新提交。此警告不会再次出现。' ]);
// XXX provide the user with a way to automatically retry the action if they so choose -
// I can't see how to do this without creating a UI dependency on Morebits.wiki.page though -- TTO
} else {
ctx.statusElement.error(wgULS('"保存页面时由API得到未知错误', '儲存頁面時由API得到未知錯誤')");
}
 
第三二〇四行 ⟶ 第二五一八行:
// callback from saveApi.post()
var fnSaveError = function() {
 
var errorCode = ctx.saveApi.getErrorCode();
 
// check for edit conflict
if ( errorCode === '"editconflict'" && ctx.conflictRetries++ < ctx.maxConflictRetries ) {
 
// edit conflicts can occur when the page needs to be purged from the server cache
第三二一五行 ⟶ 第二五三〇行:
};
 
var purgeApi = new Morebits.wiki.api(wgULS('"检测到编辑冲突,更新服务器缓存', '檢測到編輯衝突,更新伺服器快取')", purgeQuery, null, ctx.statusElement);
var result = purgeApi.post( { async: false } ); // just wait for it, result is for debugging
 
--Morebits.wiki.numberOfActionsLeft; // allow for normal completion if retry succeeds
 
ctx.statusElement.info(wgULS('"检测到编辑冲突,重试修改', '檢測到編輯衝突,重試修改')");
if (fnCanUseMwUserToken('edit')) {
ctx.saveApi.post(); // necessarily append or prepend, so this should work as desired
第三二二八行 ⟶ 第二五四三行:
 
// check for loss of edit token
// it's impractical to request a new token here, so invoke edit conflict logic when this happens
} else if (errorCode === 'badtoken' && ctx.retries++ < ctx.maxRetries) {
} else if ( errorCode === "notoken" && ctx.conflictRetries++ < ctx.maxConflictRetries ) {
 
ctx.statusElement.info(wgULS('"编辑令牌不可用,重试', '編輯權杖不可用,重試')");
--Morebits.wiki.numberOfActionsLeft; // allow for normal completion if retry succeeds
if (fnCanUseMwUserToken('edit')) {
ctx.saveApi.query.token = fnGetToken.call(this);
this.load(fnAutoSave, ctx.onSaveFailure); // try the append or prepend again
ctx.saveApi.post();
} else {
ctx.loadApi.post(); // reload the page and reapply the edit
}
 
// check for network or server error
} else if ( errorCode === '"undefined'" && ctx.retries++ < ctx.maxRetries ) {
 
// the error might be transient, so try again
ctx.statusElement.info(wgULS('"保存失败,重试', '儲存失敗,重試')");
--Morebits.wiki.numberOfActionsLeft; // allow for normal completion if retry succeeds
ctx.saveApi.post(); // give it another go!
第三二四七行 ⟶ 第二五六六行:
 
// non-admin attempting to edit a protected page - this gives a friendlier message than the default
if ( errorCode === '"protectedpage'" ) {
ctx.statusElement.error(wgULS(' "不能保存修改:页面被全保护'," '不能儲存修改:頁面被全保護'));
} else if ( errorCode === "hookaborted" ) {
// check for absuefilter hits: disallowed or warning
ctx.statusElement.error( "不能保存修改:被防滥用过滤器阻止" );
} else if (errorCode.indexOf('abusefilter') === 0) {
var desc = $(ctx.saveApi.getXML()).find('abusefilter').attr('description');
if (errorCode === 'abusefilter-disallowed') {
ctx.statusElement.error(wgULS('编辑被防滥用过滤器规则“' + desc + '”阻止。如果您认为您的该次编辑是有意义的,请至 Wikipedia:防滥用过滤器/错误报告 提报。',
'編輯被防濫用過濾器規則「' + desc + '」阻止。如果您認為您的該次編輯是有意義的,請至 Wikipedia:防濫用過濾器/錯誤報告 提報。'));
} else if (errorCode === 'abusefilter-warning') {
ctx.statusElement.error(wgULS('编辑被防滥用过滤器规则“' + desc + '”警告,如果您仍希望做出该编辑,请尝试重新提交,根据过滤器的设置您可能可以作出此编辑。',
'編輯被防濫用過濾器規則「' + desc + '」警告,如果您仍希望做出該編輯,請嘗試重新提交,根據過濾器的設定您可能可以作出此編輯。'));
// We should provide the user with a way to automatically retry the action if they so choose -
// I can't see how to do this without creating a UI dependency on Morebits.wiki.page though -- TTO
} else { // shouldn't happen but...
ctx.statusElement.error(wgULS('编辑被防滥用过滤器阻止。如果您认为您的该次编辑是有意义的,请至 Wikipedia:防滥用过滤器/错误报告 提报。',
'編輯被防濫用過濾器阻止。如果您認為您的該次編輯是有意義的,請至 Wikipedia:防濫用過濾器/錯誤報告 提報。'));
}
// check for blacklist hits
} else if (errorCode === 'spamblacklist') {
// .find('matches') returns an array in case multiple items are blacklisted, we only return the first
var spam = $(ctx.saveApi.getXML()).find('spamblacklist').find('matches').children()[0].textContent;
ctx.statusElement.error(wgULS('不能保存页面,因URL ' + spam + ' 在垃圾黑名单中。',
'不能儲存頁面,因URL ' + spam + ' 在垃圾黑名單中。'));
} else {
ctx.statusElement.error(wgULS(' "不能保存修改:', '不能儲存修改:')" + ctx.saveApi.getErrorText() );
}
ctx.editMode = 'all'; // cancel append/prepend/revert modes
第三二八〇行 ⟶ 第二五八〇行:
};
 
var fnLookupCreationSuccessfnLookupCreatorSuccess = function() {
var xml = ctx.lookupCreationApilookupCreatorApi.getXML();
 
if ( !fnCheckPageName(xml) ) {
return; // abort
}
 
if (!ctx.lookupNonRedirectCreatorcreator ||= !/^\s*#(redirect|重定向|重新導向)/im.test($(xml).find('rev').textattr('user'))) {;
 
ctx.creator = $(xml).find('rev').attr('user');
if (!ctx.creator) {
ctx.statusElement.error(wgULS('无法获取页面创建者的名字', '無法取得頁面建立者的名字'));
return;
}
ctx.timestamp = $(xml).find('rev').attr('timestamp');
if (!ctx.timestamp) {
ctx.statusElement.error(wgULS('无法获取页面创建时间', '無法取得頁面建立時間'));
return;
}
ctx.onLookupCreationSuccess(this);
 
} else {
ctx.lookupCreationApi.query.rvlimit = 50; // modify previous query to fetch more revisions
ctx.lookupCreationApi.query.titles = ctx.pageName; // update pageName if redirect resolution took place in earlier query
 
ctx.lookupCreationApi = new Morebits.wiki.api(wgULS('获取页面创建信息', '取得頁面建立資訊'), ctx.lookupCreationApi.query, fnLookupNonRedirectCreator, ctx.statusElement);
ctx.lookupCreationApi.setParent(this);
ctx.lookupCreationApi.post();
}
 
};
 
var fnLookupNonRedirectCreator = function() {
var xml = ctx.lookupCreationApi.getXML();
 
$(xml).find('rev').each(function(_, rev) {
if (!/^\s*#(redirect|重定向|重新導向)/im.test(rev.textContent)) { // inaccessible revisions also check out
ctx.creator = rev.getAttribute('user');
ctx.timestamp = rev.getAttribute('timestamp');
return false; // break
}
});
 
if (!ctx.creator) {
ctx.statusElement.error("不能获取页面创建者的名字");
// fallback to give first revision author if no non-redirect version in the first 50
ctx.creator = $(xml).find('rev')[0].getAttribute('user');
ctx.timestamp = $(xml).find('rev')[0].getAttribute('timestamp');
if (!ctx.creator) {
ctx.statusElement.error(wgULS('不能获取页面创建者的名字', '不能取得頁面建立者的名字'));
return;
}
 
}
if (!ctx.timestamp) {
ctx.statusElement.error(wgULS('无法获取页面创建时间', '無法取得頁面建立時間'));
return;
}
ctx.onLookupCreatorSuccess(this);
 
ctx.onLookupCreationSuccess(this);
 
};
 
var fnProcessMove = function() {
var xml = ctx.moveApi.getXML();
var pageTitle, token;
 
if (fnCanUseMwUserToken$(xml).find('page').attr('movemissing') === "") {
ctx.statusElement.error("不能移动页面,因其已不存在");
token = mw.user.tokens.get('csrfToken');
pageTitle = ctx.pageNameonMoveFailure(this);
return;
} else {
}
var xml = ctx.moveApi.getXML();
 
// extract protection info
if ($(xml).find('page').attr('missing') === '') {
if (Morebits.userIsInGroup('sysop')) {
ctx.statusElement.error(wgULS('不能移动页面,因其已不存在', '不能移動頁面,因其已不存在'));
var editprot = $(xml).find('pr[type="edit"]');
if (editprot.length > 0 && editprot.attr('level') === 'sysop' && !ctx.suppressProtectWarning &&
!confirm('您即将移动全保护页面“' + ctx.pageName + '”' +
(editprot.attr('expiry') === 'infinity' ? '(永久)' : ('(到期:' + editprot.attr('expiry') + ')')) +
'。\n\n点击确定以确定,或点击取消以取消。')) {
ctx.statusElement.error("对全保护页面的移动已取消。");
ctx.onMoveFailure(this);
return;
}
}
 
var moveToken = $(xml).find('page').attr('movetoken');
// extract protection info
if (Morebits.userIsSysop!moveToken) {
ctx.statusElement.error("不能抓取移动令牌。");
var editprot = $(xml).find('pr[type="edit"]');
ctx.onMoveFailure(this);
if (editprot.length > 0 && editprot.attr('level') === 'sysop' && !ctx.suppressProtectWarning &&
return;
!confirm(wgULS('您即将移动全保护页面“', '您即將移動全保護頁面「') + ctx.pageName + wgULS('”', '」') +
(editprot.attr('expiry') === 'infinity' ? '(永久)' : '(到期:' + new Morebits.date(editprot.attr('expiry')).calendar('utc') + ' (UTC))') +
wgULS('。\n\n单击确定以确定,或单击取消以取消操作。', '。\n\n點擊確定以確定,或點擊取消以取消操作。'))) {
ctx.statusElement.error(wgULS('对全保护页面的移动已取消。', '對全保護頁面的移動已取消。'));
ctx.onMoveFailure(this);
return;
}
}
 
token = $(xml).find('tokens').attr('csrftoken');
if (!token) {
ctx.statusElement.error(wgULS('不能抓取移动令牌。', '不能抓取移動權杖。'));
ctx.onMoveFailure(this);
return;
}
 
pageTitle = $(xml).find('page').attr('title');
}
 
var query = {
'action': 'move',
'from': pageTitle$(xml).find('page').attr('title'),
'to': ctx.moveDestination,
'token': tokenmoveToken,
'reason': ctx.editSummary,
'watchlist': ctx.watchlistOption
};
if (ctx.moveTalkPage) {
第三三九二行 ⟶ 第二六三五行:
}
if (ctx.moveSubpages) {
query.movesubpages = 'true'; // XXX don't know whether this works for non-admins
}
if (ctx.moveSuppressRedirect) {
query.noredirect = 'true';
}
if (ctx.watchlistOption === 'watch') {
query.watch = 'true';
}
 
ctx.moveProcessApi = new Morebits.wiki.api(wgULS('"移动页面…', '移動頁面…')", query, ctx.onMoveSuccess, ctx.statusElement, ctx.onMoveFailure);
ctx.moveProcessApi.setParent(this);
ctx.moveProcessApi.post();
};
 
var fnProcessPatrol = function() {
var query = {
action: 'patrol'
};
 
// Didn't need to load the page
if (ctx.rcid) {
query.rcid = ctx.rcid;
query.token = mw.user.tokens.get('patrolToken');
} else {
var xml = ctx.patrolApi.getResponse();
 
// Don't patrol if not unpatrolled
if ($(xml).find('rc').attr('unpatrolled') !== '') {
return;
}
 
var lastrevid = $(xml).find('page').attr('lastrevid');
if (!lastrevid) {
return;
}
query.revid = lastrevid;
 
var token = $(xml).find('tokens').attr('patroltoken');
if (!token) {
return;
}
 
query.token = token;
}
 
var patrolStat = new Morebits.status(wgULS('标记页面为已巡查', '標記頁面為已巡查'));
 
ctx.patrolProcessApi = new Morebits.wiki.api(wgULS('进行中…', '進行中…'), query, null, patrolStat);
ctx.patrolProcessApi.setParent(this);
ctx.patrolProcessApi.post();
};
 
第三四五〇行 ⟶ 第二六五八行:
var xml = ctx.deleteApi.getXML();
 
if ($(xml).find('page').attr('missing') === ''"") {
ctx.statusElement.error(wgULS('"不能删除页面,因其已不存在', '不能刪除頁面,因其已不存在')");
ctx.onDeleteFailure(this);
return;
第三四五九行 ⟶ 第二六六七行:
var editprot = $(xml).find('pr[type="edit"]');
if (editprot.length > 0 && editprot.attr('level') === 'sysop' && !ctx.suppressProtectWarning &&
!confirm(wgULS('您即将删除全保护页面“' + ctx.pageName + '"', '您即將刪除全保護頁面「' + ctx.pageName + '」')" +
(editprot.attr('expiry') === 'infinity' ? '(永久)' : ('(到期 ' + new Morebits.date(editprot.attr('expiry')).calendar('utc') + ' (UTC))')) +
wgULS('。\n\n击确定以确定,或击取消以取消操作。', '。\n\n點擊確定以確定,或點擊取消以取消操作。'))) {
ctx.statusElement.error(wgULS('"对全保护页面的删除已取消。', '對全保護頁面的刪除已取消。')");
ctx.onDeleteFailure(this);
return;
}
 
token = $(xml).find('tokenspage').attr('csrftokendeletetoken');
if (!token) {
ctx.statusElement.error(wgULS('"不能抓取删除令牌。', '不能抓取刪除權杖。')");
ctx.onDeleteFailure(this);
return;
第三四七九行 ⟶ 第二六八七行:
var query = {
'action': 'delete',
'tags': ctx.tags,
'title': pageTitle,
'token': token,
'reason': ctx.editSummary,
'watchlist': ctx.watchlistOption
};
if (ctx.watchlistOption === 'watch') {
query.watch = 'true';
}
 
ctx.deleteProcessApi = new Morebits.wiki.api(wgULS('"删除页面…', '刪除頁面…')", query, ctx.onDeleteSuccess, ctx.statusElement, fnProcessDeleteError);
ctx.deleteProcessApi.setParent(this);
ctx.deleteProcessApi.post();
第三四九七行 ⟶ 第二七〇六行:
 
// check for "Database query error"
if ( errorCode === '"internal_api_error_DBQueryError'" && ctx.retries++ < ctx.maxRetries ) {
 
ctx.statusElement.info(wgULS('数据库查询错误,重试', '資料庫查詢錯誤,重試'));
ctx.statusElement.info("数据库查询错误,重试");
--Morebits.wiki.numberOfActionsLeft; // allow for normal completion if retry succeeds
ctx.deleteProcessApi.post(); // give it another go!
 
} else if (errorCode === 'badtoken' && ctx.retries++ < ctx.maxRetries) {
} else if ( errorCode === "badtoken" ) {
ctx.statusElement.info(wgULS('无效令牌,重试', '無效權杖,重試'));
// this is pathetic, but given the current state of Morebits.wiki.page it would
--Morebits.wiki.numberOfActionsLeft;
// be a dog's breakfast to try and fix this
ctx.deleteProcessApi.query.token = fnGetToken.call(this);
ctx.statusElement.error("无效令牌,请刷新页面并重试。");
ctx.deleteProcessApi.post();
} else if (errorCode === 'missingtitle') {
ctx.statusElement.error(wgULS('不能删除页面,因其已不存在', '不能刪除頁面,因其已不存在'));
if (ctx.onDeleteFailure) {
ctx.onDeleteFailure.call(this, this, ctx.deleteProcessApi); // invoke callback
}
 
} else if ( errorCode === "missingtitle" ) {
// hard error, give up
 
} else {
ctx.statusElement.error(wgULS('"不能删除页面:', ',因其已能刪除頁面:') + ctx.deleteProcessApi.getErrorText()存在");
if (ctx.onDeleteFailure) {
ctx.onDeleteFailure.call(this, ctx.deleteProcessApi); // invoke callback
}
}
};
 
// hard error, give up
var fnProcessUndelete = function() {
var pageTitle, token;
 
if (fnCanUseMwUserToken('undelete')) {
token = mw.user.tokens.get('csrfToken');
pageTitle = ctx.pageName;
} else {
var xml = ctx.undeleteApi.getXML();
 
ctx.statusElement.error( "不能删除页面:" + ctx.deleteProcessApi.getErrorText() );
if ($(xml).find('page').attr('missing') !== '') {
if (ctx.onDeleteFailure) {
ctx.statusElement.error(wgULS('不能取消删除页面,因为它已存在', '不能取消刪除頁面,因為它已存在'));
ctx.onDeleteFailure.call(this, ctx.deleteProcessApi); // invoke callback
ctx.onUndeleteFailure(this);
return;
}
 
// extract protection info
var editprot = $(xml).find('pr[type="create"]');
if (editprot.length > 0 && editprot.attr('level') === 'sysop' && !ctx.suppressProtectWarning &&
!confirm(wgULS('您即将取消删除全保护页面“' + ctx.pageName + '”', '您即將取消刪除全保護頁面「' + ctx.pageName + '」') +
(editprot.attr('expiry') === 'infinity' ? '(永久)' : '(到期:' + new Morebits.date(editprot.attr('expiry')).calendar('utc') + ' (UTC))') +
wgULS('。\n\n单击确定以取消删除,或单击取消以取消操作。', '。\n\n點擊確定以取消刪除,或點擊取消以取消操作。'))) {
ctx.statusElement.error(wgULS('对全保护页面的取消删除已取消。', '對全保護頁面的取消刪除已取消。'));
ctx.onUndeleteFailure(this);
return;
}
 
token = $(xml).find('tokens').attr('csrftoken');
if (!token) {
ctx.statusElement.error(wgULS('未能抓取取消删除令牌', '未能抓取取消刪除權杖…'));
ctx.onUndeleteFailure(this);
return;
}
 
pageTitle = $(xml).find('page').attr('title');
}
 
var query = {
'action': 'undelete',
'title': pageTitle,
'token': token,
'reason': ctx.editSummary,
'watchlist': ctx.watchlistOption
};
 
ctx.undeleteProcessApi = new Morebits.wiki.api(wgULS('取消删除…', '取消刪除…'), query, ctx.onUndeleteSuccess, ctx.statusElement, fnProcessUndeleteError);
ctx.undeleteProcessApi.setParent(this);
ctx.undeleteProcessApi.post();
};
 
// callback from undeleteProcessApi.post()
var fnProcessUndeleteError = function() {
 
var errorCode = ctx.undeleteProcessApi.getErrorCode();
 
// check for "Database query error"
if (errorCode === 'internal_api_error_DBQueryError' && ctx.retries++ < ctx.maxRetries) {
ctx.statusElement.info(wgULS('数据库查询错误,重试', '資料庫查詢錯誤,重試'));
--Morebits.wiki.numberOfActionsLeft; // allow for normal completion if retry succeeds
ctx.undeleteProcessApi.post(); // give it another go!
} else if (errorCode === 'badtoken' && ctx.retries++ < ctx.maxRetries) {
ctx.statusElement.error(wgULS('无效令牌,重试。', '無效權杖,重試。'));
--Morebits.wiki.numberOfActionsLeft;
ctx.undeleteProcessApi.query.token = fnGetToken.call(this);
ctx.undeleteProcessApi.post();
 
} else if (errorCode === 'cantundelete') {
ctx.statusElement.error(wgULS('不能取消删除页面,因没有版本供取消删除或已被取消删除', '不能取消刪除頁面,因沒有版本供取消刪除或已被取消刪除'));
if (ctx.onUndeleteFailure) {
ctx.onUndeleteFailure.call(this, ctx.undeleteProcessApi); // invoke callback
}
// hard error, give up
} else {
ctx.statusElement.error(wgULS('不能取消删除页面:', '不能取消刪除頁面:') + ctx.undeleteProcessApi.getErrorText());
if (ctx.onUndeleteFailure) {
ctx.onUndeleteFailure.call(this, ctx.undeleteProcessApi); // invoke callback
}
}
第三六〇三行 ⟶ 第二七四〇行:
var xml = ctx.protectApi.getXML();
 
var missing = ($(xml).find('page').attr('missing') === ''"");
if (((ctx.protectEdit || ctx.protectMove) && missing)) {
ctx.statusElement.error(wgULS('"不能保护页面,因其已不存在', '不能保護頁面,因其已不存在')");
ctx.onProtectFailure(this);
return;
}
if (ctx.protectCreate && !missing) {
ctx.statusElement.error(wgULS('"不能白纸保护页面,因其已存在', '不能白紙保護頁面,因其已存在')");
ctx.onProtectFailure(this);
return;
第三六一七行 ⟶ 第二七五四行:
// TODO cascading protection not possible on edit<sysop
 
var tokenprotectToken = $(xml).find('tokenspage').attr('csrftokenprotecttoken');
if (!tokenprotectToken) {
ctx.statusElement.error(wgULS('"不能抓取保护令牌。', '不能抓取保護權杖。')");
ctx.onProtectFailure(this);
return;
}
 
var pageTitle = $(xml).find('page').attr('title');
 
// fetch existing protection levels
第三六三九行 ⟶ 第二七七四行:
expirys.push(ctx.protectEdit.expiry);
} else if (editprot.length) {
protections.push('edit=' + editprot.attr('"level'"));
expirys.push(editprot.attr('"expiry'").replace('"infinity'", '"indefinite'"));
}
 
第三六四七行 ⟶ 第二七八二行:
expirys.push(ctx.protectMove.expiry);
} else if (moveprot.length) {
protections.push('move=' + moveprot.attr('"level'"));
expirys.push(moveprot.attr('"expiry'").replace('"infinity'", '"indefinite'"));
}
 
第三六五五行 ⟶ 第二七九〇行:
expirys.push(ctx.protectCreate.expiry);
} else if (createprot.length) {
protections.push('create=' + createprot.attr('"level'"));
expirys.push(createprot.attr('"expiry'").replace('"infinity'", '"indefinite'"));
}
 
var query = {
action: 'protect',
title: $(xml).find('page').attr('title'),
tags: ctx.tags,
titletoken: pageTitleprotectToken,
token: token,
protections: protections.join('|'),
expiry: expirys.join('|'),
reason: ctx.editSummary,
watchlist: ctx.watchlistOption
};
if (ctx.protectCascade) {
query.cascade = 'true';
}
if (ctx.watchlistOption === 'watch') {
query.watch = 'true';
}
 
ctx.protectProcessApi = new Morebits.wiki.api(wgULS('"保护页面…', '保護頁面…')", query, ctx.onProtectSuccess, ctx.statusElement, ctx.onProtectFailure);
ctx.protectProcessApi.setParent(this);
ctx.protectProcessApi.post();
第三六七九行 ⟶ 第二八一五行:
 
var fnProcessStabilize = function() {
var xml = ctx.stabilizeApi.getXML();
var pageTitle, token;
 
var missing = ($(xml).find('page').attr('missing') === "");
if (fnCanUseMwUserToken('stabilize')) {
if (missing) {
token = mw.user.tokens.get('csrfToken');
ctx.statusElement.error("不能保护页面,因其已不存在");
pageTitle = ctx.pageName;
ctx.onStabilizeFailure(this);
} else {
return;
var xml = ctx.stabilizeApi.getXML();
}
 
var missingstabilizeToken = $(xml).find('page').attr('missingedittoken') === '';
if (missing!stabilizeToken) {
ctx.statusElement.error('Cannot protect the page, because it no longer exists'"不能抓取stabilize令牌。");
ctx.onStabilizeFailure(this);
return;
}
 
token = $(xml).find('tokens').attr('csrftoken');
if (!token) {
ctx.statusElement.error('不能抓取stabilize令牌。');
ctx.onStabilizeFailure(this);
return;
}
 
pageTitle = $(xml).find('page').attr('title');
}
 
var query = {
action: 'stabilize',
title: pageTitle$(xml).find('page').attr('title'),
token: tokenstabilizeToken,
protectlevel: ctx.flaggedRevs.level,
expiry: ctx.flaggedRevs.expiry,
reason: ctx.editSummary
};
// [[phab:T247915]]
if (ctx.watchlistOption === 'watch') {
query.watchlistwatch = 'true';
}
 
ctx.stabilizeProcessApi = new Morebits.wiki.api('"配置stabilization设定…'", query, ctx.onStabilizeSuccess, ctx.statusElement, ctx.onStabilizeFailure);
ctx.stabilizeProcessApi.setParent(this);
ctx.stabilizeProcessApi.post();
第三七二三行 ⟶ 第二八四九行:
}; // end Morebits.wiki.page
 
/** Morebits.wiki.page TODO: (XXX)
* - Should we retry loads also?
* - Need to reset current action before the save?
第三八〇一行 ⟶ 第二九二七行:
Morebits.wiki.flow = function(pageName, currentAction) {
 
if (!currentAction) {
currentAction = '打开页面“' + pageName + '”';
}
}
 
/**
* Private context variables
*
* This context is not visible to the outside, thus all the data here
* must be accessed via getter and setter functions.
*/
var ctx = {
// backing fields for public properties
pageName: pageName,
// isFlow: null,
callbackParameters: null,
statusElement: new Morebits.status(currentAction),
// - edit
header: null,
headerLastRevision: null,
topic: null,
content: null,
// watchlistOption: 'nochange',
// internal status
headerLoaded: false,
editToken: null,
// loadTime: null,
// lastEditTime: null,
// revertCurID: null,
// revertUser: null,
fullyProtected: false,
suppressProtectWarning: false,
// conflictRetries: 0,
// retries: 0,
// callbacks
onNewTopicSuccess: null,
onNewTopicFailure: null,
onViewHeaderSuccess: null,
onViewHeaderFailure: null,
onEditHeaderSuccess: null,
onEditHeaderFailure: null,
// internal objects
newTopicApi: null,
viewHeaderApi: null,
editHeaderApi: null,
};
 
var emptyFunction = function() { };
 
/**
* Public interface accessors
*/
this.getPageName = function() {
return ctx.pageName;
};
 
this.getHeader = function() {
return ctx.header;
};
 
this.setHeader = function(header) {
ctx.header = header;
};
 
this.getTopic = function() {
return ctx.topic;
};
 
this.setTopic = function(topic) {
ctx.topic = topic;
};
 
this.getContent = function() {
return ctx.content;
};
 
this.setContent = function(content) {
ctx.content = content;
};
 
this.setCallbackParameters = function(callbackParameters) {
ctx.callbackParameters = callbackParameters;
};
 
this.getCallbackParameters = function() {
return ctx.callbackParameters;
};
 
this.getStatusElement = function() {
return ctx.statusElement;
};
 
 
// Save updated .pageText to Wikipedia
// Only valid after successful .load()
this.newTopic = function(onSuccess, onFailure) {
ctx.onNewTopicSuccess = onSuccess;
ctx.onNewTopicFailure = onFailure || emptyFunction;
 
var query = {
action: 'flow',
page: ctx.pageName,
token: mw.user.tokens.get('csrfToken'),
submodule: 'new-topic',
nttopic: ctx.topic,
ntcontent: ctx.content,
ntformat: 'wikitext',
};
};
 
ctx.newTopicApi = new Morebits.wiki.api(' "留言…'", query, fnNewTopicSuccess, ctx.statusElement, fnNewTopicError);
ctx.newTopicApi.setParent(this);
ctx.newTopicApi.post();
};
 
 
this.viewHeader = function (onSuccess, onFailure) {
ctx.onViewHeaderSuccess = onSuccess;
ctx.onViewHeaderFailure = onFailure || emptyFunction;
// header: null,
// headerLastRevision: null,
// headerLoaded
 
if (!onSuccess) {
ctx.statusElement.error('"内部错误:未给viewHeader()提供onSuccess回调函数!'");
ctx.onViewHeaderFailure(this);
return;
}
}
 
var query = {
action: 'flow',
submodule: 'view-header',
page: ctx.pageName,
vhformat: 'wikitext',
};
};
 
ctx.viewHeaderApi = new Morebits.wiki.api(wgULS('抓取Flow描述…', '抓取Flow描述…'), query, fnViewHeaderSuccess, ctx.statusElement, ctx.onViewHeaderFailure);
ctx.viewHeaderApi.setParent(this);
ctx.viewHeaderApi.post();
};
 
this.editHeader = function (onSuccess, onFailure) {
ctx.onEditHeaderSuccess = onSuccess;
ctx.onEditHeaderFailure = onFailure || emptyFunction;
 
var query = {
action: 'flow',
page: ctx.pageName,
token: mw.user.tokens.get('csrfToken'),
submodule: 'edit-header',
ehprev_revision: ctx.headerLastRevision,
ehcontent: ctx.header,
ehformat: 'wikitext',
};
};
 
ctx.editHeaderApi = new Morebits.wiki.api(wgULS(' "编辑Flow讨论页描述…', '編輯Flow討論頁描述…')", query, fnEditHeaderSuccess, ctx.statusElement, fnEditHeaderError);
ctx.editHeaderApi.setParent(this);
ctx.editHeaderApi.post();
};
 
 
/* Private member functions
*
* These are not exposed outside
*/
 
// callback from newTopicApi.post()
var fnNewTopicSuccess = function() {
var xml = ctx.newTopicApi.getXML();
 
if ($(xml).find('new-topic').attr('status') === '"ok'") {
var link = document.createElement('a');
link.setAttribute('href', mw.util.getUrl(ctx.pageName) );
link.appendChild(document.createTextNode(ctx.pageName));
ctx.statusElement.info(['完成(', link, ')']);
if (ctx.onNewTopicSuccess) {
ctx.onNewTopicSuccess(this); // invoke callback
}
}
} else {
ctx.statusElement.error(wgULS('"保存页面时由API得到未知错误', '儲存頁面時由API得到未知錯誤')");
 
// force error to stay on the screen
++Morebits.wiki.numberOfActionsLeft;
 
ctx.onNewTopicFailure(this);
}
}
};
 
// callback from newTopicApi.post()
var fnNewTopicError = function() {
var errorCode = ctx.newTopicApi.getErrorCode();
 
if (errorCode === 'invalid-page') {
ctx.statusElement.error(wgULS('"内部错误:不是Flow页面,无法留言', '內部錯誤:不是Flow頁面,無法留言')");
} else if (errorCode === 'block') {
ctx.statusElement.error(wgULS('"无法留言,因讨论页被保护', '無法留言,因討論頁被保護')");
} else if (errorCode === 'spamfilter') {
ctx.statusElement.error(wgULS('"无法留言,因为需要验证码或已经触发URL黑名单', '無法留言,因為需要驗證碼或已經觸發URL黑名單')");
} else {
ctx.statusElement.error(wgULS('"留言时由API得到未知错误', '留言時由API得到未知錯誤')");
}
}
 
if (ctx.onNewTopicFailure) {
ctx.onNewTopicFailure(this); // invoke callback
}
}
};
 
var fnViewHeaderSuccess = function() {
var xml = ctx.viewHeaderApi.getXML();
ctx.header = $(xml).find('content').attr('content');
ctx.headerLastRevision = $(xml).find('revision').attr('revisionId');
ctx.headerLoaded = true;
ctx.onViewHeaderSuccess(this);
};
 
var fnEditHeaderSuccess = function() {
var xml = ctx.editHeaderApi.getXML();
 
if ($(xml).find('edit-header').attr('status') === '"ok'") {
ctx.statusElement.info('完成');
ctx.headerLastRevision = $(xml).find('header').attr('header-revision-id');
if (ctx.onEditHeaderSuccess) {
ctx.onEditHeaderSuccess(this);
}
}
} else {
ctx.statusElement.error(wgULS('"保存Flow讨论页描述时由API得到未知错误', '儲存Flow討論頁描述時由API得到未知錯誤')");
 
// force error to stay on the screen
++Morebits.wiki.numberOfActionsLeft;
 
ctx.onEditHeaderFailure(this);
}
}
};
 
var fnEditHeaderError = function() {
var errorCode = ctx.editHeaderApi.getErrorCode();
 
if (errorCode === 'invalid-page') {
ctx.statusElement.error(wgULS('"内部错误:不是Flow页面,无法编辑描述', '內部錯誤:不是Flow頁面,無法編輯描述')");
} else if (errorCode === 'block') {
ctx.statusElement.error(wgULS('"无法编辑描述,因讨论页被保护', '無法編輯描述,因討論頁被保護')");
} else if (errorCode === 'spamfilter') {
ctx.statusElement.error(wgULS('"无法编辑描述,因为需要验证码或已经触发URL黑名单', '無法編輯描述,因為需要驗證碼或已經觸發URL黑名單')");
} else {
ctx.statusElement.error(wgULS('"编辑描述时由API得到未知错误', '編輯描述時由API得到未知錯誤')");
}
}
 
if (ctx.onEditHeaderFailure) {
ctx.onEditHeaderFailure(this); // invoke callback
}
}
};
};
 
Morebits.wiki.flow.check = function(title, callbackOnFlow, callbackOnNonFlow, onError) {
var callback = function (obj) {
var responseXML = obj.responseXML;
var pages = responseXML.getElementsByTagName('page');
if (pages.length > 0) {
var model = pages[0].getAttribute('contentmodel');
if (model === 'flow-board') {
if (typeof callbackOnFlow === 'function') {
callbackOnFlow();
}
}
} else if (model !== null) {
if (typeof callbackOnNonFlow === 'function') {
callbackOnNonFlow();
}
}
} else {
if (typeof onError === 'function') {
obj.statelem.error(' "内部错误:页面标题无效'" );
onError(obj);
}
}
}
}
} else {
if (typeof onError === 'function') {
obj.statelem.error(' "内部错误:调用API时失败'" );
onError(obj);
}
}
}
}
};
 
var statusElement = new Morebits.status(wgULS('检查是否为Flow页面', '檢查是否為Flow頁面'));
var checkApi = new Morebits.wiki.api(wgULS('"查询页面信息', '查詢頁面資訊')", {
action: 'query',
prop: 'info',
titles: title,
}, callback, statusElement, onError);
checkApi.post();
}; // end Morebits.wiki.flow
 
Morebits.wiki.flow.relevantUserName = function (allowBlock) {
// 处理Flow页面的问题
var name = mw.config.get('wgRelevantUserName');
第四〇九七行 ⟶ 第三二二三行:
var title = $('a', '#contentSub').attr('title');
if (title && title.indexOf('User talk:') === 0) {
return title.replacesubstr(/^User talk:([^/]+).*$/, '$1'10);
} else {
return null;
}
} else {
return null;
 
} else if (mw.config.get('wgCanonicalSpecialPageName') === 'Contributions') {
if ($('#contentSub').find('a[title^="Special:日志/block"]').length && allowBlock) {
var link = $('#contentSub').find('a[title^="Special:日志/block"]')[0].href;
return mw.util.getParamValue('page', link).replace('User:', '');
}
}
return null;
 
};
 
第四一一五行 ⟶ 第三二三六行:
* **************** Morebits.wiki.preview ****************
* Uses the API to parse a fragment of wikitext and render it as HTML.
*
* Constructor: Morebits.wiki.preview(previewbox, currentAction)
* previewbox - the <div> element that will contain the rendered HTML
*
* beginRender(wikitext): Displays the preview box, and begins an asynchronous attempt
* to render the specified wikitext.
* wikitext - wikitext to render; most things should work, including subst: and ~~~~
* pageTitle - optional parameter for the page this should be rendered as being on
*
* closePreview(): Hides the preview box and clears it.
*
* The suggested implementation pattern (in Morebits.simpleWindow + Morebits.quickForm situations) is to
第四一二二行 ⟶ 第三二五三行:
*/
 
/**
* @constructor
* @param {HTMLElement} previewbox - the element that will contain the rendered HTML,
* usually a <div> element
*/
Morebits.wiki.preview = function(previewbox) {
this.previewbox = previewbox;
$(previewbox).addClass('"morebits-previewbox'").hide();
 
/**
* Displays the preview box, and begins an asynchronous attempt
* to render the specified wikitext.
* @param {string} wikitext - wikitext to render; most things should work, including subst: and ~~~~
* @param {string} [pageTitle] - optional parameter for the page this should be rendered as being on, if omitted it is taken as the current page
*/
this.beginRender = function(wikitext, pageTitle) {
$(previewbox).show();
第四一五七行 ⟶ 第三二七七行:
title: pageTitle || pageName
};
var renderApi = new Morebits.wiki.api(wgULS('加"中…', '載入中…')", query, fnRenderSuccess, new Morebits.status(wgULS('"预览', '預覽')"));
renderApi.post();
};
第四一六五行 ⟶ 第三二八五行:
var html = $(xml).find('text').text();
if (!html) {
apiobj.statelem.error(wgULS('加"预览失败,或模板被清空', '載入預覽失敗,或模板被清空')");
return;
}
previewbox.innerHTML = html;
$(previewbox).find('"a'").attr('"target'", '"_blank'"); // this makes links open in new tab
};
 
/** Hides the preview box and clears it. */
this.closePreview = function() {
$(previewbox).empty().hide();
第四一八八行 ⟶ 第三三〇七行:
 
Morebits.wikitext.template = {
parse: function( text, start ) {
var count = -1;
var level = -1;
第四一九九行 ⟶ 第三三一八行:
var key, value;
 
for ( var i = start; i < text.length; ++i ) {
var test3 = text.substr( i, 3 );
if ( test3 === '{{{' ) {
current += '{{{';
i += 2;
第四二〇七行 ⟶ 第三三二六行:
continue;
}
if ( test3 === '}}}' ) {
current += '}}}';
i += 2;
第四二一三行 ⟶ 第三三三二行:
continue;
}
var test2 = text.substr( i, 2 );
if ( test2 === '{{' || test2 === '[[' ) {
current += test2;
++i;
第四二二〇行 ⟶ 第三三三九行:
continue;
}
if ( test2 === ']]' ) {
current += ']]'test2;
++i;
--level;
continue;
}
if ( test2 === '}}' ) {
current += test2;
++i;
--level;
 
if ( level <= 0 ) {
if ( count === -1 ) {
result.name = current.substring(2).trim();
++count;
} else {
if ( equals !== -1 ) {
key = current.substring( 0, equals ).trim();
value = current.substring( equals ).trim();
result.parameters[key] = value;
equals = -1;
第四二五一行 ⟶ 第三三七〇行:
}
 
if ( text.charAt(i) === '|' && level <= 0 ) {
if ( count === -1 ) {
result.name = current.substring(2).trim();
++count;
} else {
if ( equals !== -1 ) {
key = current.substring( 0, equals ).trim();
value = current.substring( equals + 1 ).trim();
result.parameters[key] = value;
equals = -1;
第四二六七行 ⟶ 第三三八六行:
}
current = '';
} else if ( equals === -1 && text.charAt(i) === '=' && level <= 0 ) {
equals = current.length;
current += text.charAt(i);
第四二七九行 ⟶ 第三三九八行:
};
 
Morebits.wikitext.page = function mediawikiPage( text ) {
/**
* @constructor
* @param {string} text
*/
Morebits.wikitext.page = function mediawikiPage(text) {
this.text = text;
};
第四二八九行 ⟶ 第三四〇四行:
Morebits.wikitext.page.prototype = {
text: '',
removeLink: function( link_target ) {
 
var first_char = link_target.substr( 0, 1 );
/**
var link_re_string = "[" + first_char.toUpperCase() + first_char.toLowerCase() + ']' + RegExp.escape( link_target.substr( 1 ), true );
* Removes links to `link_target` from the page text.
var link_simple_re = new RegExp( "\\[\\[:?(" + link_re_string + ")\\]\\]", 'g' );
* @param {string} link_target
var link_named_re = new RegExp( "\\[\\[:?" + link_re_string + "\\|(.+?)\\]\\]", 'g' );
*/
this.text = this.text.replace( link_simple_re, "$1" ).replace( link_named_re, "$1" );
removeLink: function(link_target) {
var first_char = link_target.substr(0, 1);
var link_re_string = '[' + first_char.toUpperCase() + first_char.toLowerCase() + ']' + RegExp.escape(link_target.substr(1), true);
 
// Files and Categories become links with a leading colon, e.g. [[:File:Test.png]]
// Otherwise, allow for an optional leading colon, e.g. [[:User:Test]]
var special_ns_re = /^(?:File|F|Image|图像|圖像|文件|档案|檔案|Category|CAT|分类|分類):/i;
var colon = special_ns_re.test(link_target) ? ':' : ':?';
 
var link_simple_re = new RegExp('\\[\\[' + colon + '(' + link_re_string + ')\\]\\]', 'g');
var link_named_re = new RegExp('\\[\\[' + colon + link_re_string + '\\|(.+?)\\]\\]', 'g');
this.text = this.text.replace(link_simple_re, '$1').replace(link_named_re, '$1');
},
commentOutImage: function( image, reason ) {
var unbinder = new Morebits.unbinder( this.text );
unbinder.unbind( '<!--', '-->' );
 
reason = reason ? (reason + ':') : '';
/**
var first_char = image.substr( 0, 1 );
* Comments out images from page text. If used in a gallery, deletes the whole line.
var image_re_string = "[" + first_char.toUpperCase() + first_char.toLowerCase() + ']' + RegExp.escape( image.substr( 1 ), true );
* If used as a template argument (not necessarily with File: prefix), the template parameter is commented out.
* @param {string} image - Image name without File: prefix
* @param {string} reason - Reason to be included in comment, alongside the commented-out image
*/
commentOutImage: function(image, reason) {
var unbinder = new Morebits.unbinder(this.text);
unbinder.unbind('<!--', '-->');
 
/*
reason = reason ? reason + ':' : '';
* Check for normal image links, i.e. [[Image:Foobar.png|...]]
var first_char = image.substr(0, 1);
* Will eat the whole link
var image_re_string = '[' + first_char.toUpperCase() + first_char.toLowerCase() + ']' + RegExp.escape(image.substr(1), true);
*/
 
var links_re = new RegExp( "\\[\\[(?:[Ii]mage|[Ff]ile|文件|檔案):\\s*" + image_re_string );
// Check for normal image links, i.e. [[File:Foobar.png|...]]
var allLinks = Morebits.array.uniq(Morebits.string.splitWeightedByKeys( unbinder.content, '[[', ']]' ));
// Will eat the whole link
for( var i = 0; i < allLinks.length; ++i ) {
var links_re = new RegExp('\\[\\[(?:[Ii]mage|[Ff]ile|文件|檔案):\\s*' + image_re_string);
if( links_re.test( allLinks[i] ) ) {
var allLinks = Morebits.array.uniq(Morebits.string.splitWeightedByKeys(unbinder.content, '[[', ']]'));
for (var i = 0; i < allLinks.length; ++i) {
if (links_re.test(allLinks[i])) {
var replacement = '<!-- ' + reason + allLinks[i] + ' -->';
unbinder.content = unbinder.content.replace( allLinks[i], replacement, 'g' );
}
}
// unbind the newly created comments
unbinder.unbind( '<!--', '-->' );
 
/*
// Check for gallery images, i.e. instances that must start on a new line,
// * Check for gallery images, i.e. instances that must start on a new line, eventually preceded with some space, and must include FileImage: prefix
// * Will eat the whole line.
*/
var gallery_image_re = new RegExp('(^\\s*(?:[Ii]mage|[Ff]ile|文件|檔案):\\s*' + image_re_string + '.*?$)', 'mg');
var gallery_image_re = new RegExp( "(^\\s*(?:[Ii]mage|[Ff]ile|文件|檔案):\\s*" + image_re_string + ".*?$)", 'mg' );
unbinder.content = unbinder.content.replace(gallery_image_re, '<!-- ' + reason + '$1 -->');
unbinder.content = unbinder.content.replace( gallery_image_re, "<!-- " + reason + "$1 -->" );
 
// unbind the newly created comments
unbinder.unbind( '<!--', '-->' );
/*
* Check free image usages, for example as template arguments, might have the Image: prefix excluded, but must be preceeded by an |
* Will only eat the image name and the preceeding bar and an eventual named parameter
*/
var free_image_re = new RegExp( "(\\|\\s*(?:[\\w\\s]+\\=)?\\s*(?:(?:[Ii]mage|[Ff]ile|文件|檔案):\\s*)?" + image_re_string + ")", 'mg' );
unbinder.content = unbinder.content.replace( free_image_re, "<!-- " + reason + "$1 -->" );
 
// Check free image usages, for example as template arguments, might have the File: prefix excluded, but must be preceeded by an |
// Will only eat the image name and the preceeding bar and an eventual named parameter
var free_image_re = new RegExp('(\\|\\s*(?:[\\w\\s]+\\=)?\\s*(?:(?:[Ii]mage|[Ff]ile|文件|檔案):\\s*)?' + image_re_string + ')', 'mg');
unbinder.content = unbinder.content.replace(free_image_re, '<!-- ' + reason + '$1 -->');
// Rebind the content now, we are done!
this.text = unbinder.rebind();
},
addToImageComment: function( image, data ) {
 
var first_char = image.substr( 0, 1 );
/**
var first_char_regex = RegExp.escape( first_char, true );
* Converts first usage of [[File:`image`]] to [[File:`image`|`data`]]
if( first_char.toUpperCase() !== first_char.toLowerCase() ) {
* @param {string} image - Image name without File: prefix
first_char_regex = '[' + RegExp.escape( first_char.toUpperCase(), true ) + RegExp.escape( first_char.toLowerCase(), true ) + ']';
* @param {string} data
*/
addToImageComment: function(image, data) {
var first_char = image.substr(0, 1);
var first_char_regex = RegExp.escape(first_char, true);
if (first_char.toUpperCase() !== first_char.toLowerCase()) {
first_char_regex = '[' + RegExp.escape(first_char.toUpperCase(), true) + RegExp.escape(first_char.toLowerCase(), true) + ']';
}
var image_re_string = '"(?:[Ii]mage|[Ff]ile|文件|檔案):\\s*'" + first_char_regex + RegExp.escape( image.substr( 1 ), true );
var links_re = new RegExp(' "\\[\\['" + image_re_string );
var allLinks = Morebits.array.uniq(Morebits.string.splitWeightedByKeys( this.text, '[[', ']]' ));
for ( var i = 0; i < allLinks.length; ++i ) {
if ( links_re.test( allLinks[i] ) ) {
var replacement = allLinks[i];
// just put it at the end?
replacement = replacement.replace( /\]\]$/, '|' + data + ']]' );
this.text = this.text.replace( allLinks[i], replacement, 'g' );
}
}
var gallery_re = new RegExp(' "^(\\s*'" + image_re_string + '.*?)\\|?(.*?)$', 'mg' );
var newtext = '"$1|$2 '" + data;
this.text = this.text.replace( gallery_re, newtext );
},
removeTemplate: function( template ) {
 
var first_char = template.substr( 0, 1 );
/**
var template_re_string = "(?:[Tt]emplate:|模板:)?\\s*[" + first_char.toUpperCase() + first_char.toLowerCase() + ']' + RegExp.escape( template.substr( 1 ), true );
* Removes transclusions of template from page text
var links_re = new RegExp( "\\{\\{" + template_re_string );
* @param {string} template - Page name whose transclusions are to be removed,
var allTemplates = Morebits.array.uniq(Morebits.string.splitWeightedByKeys( this.text, '{{', '}}', [ '{{{', '}}}' ] ));
* include namespace prefix only if not in template namespace
for( var i = 0; i < allTemplates.length; ++i ) {
*/
if( links_re.test( allTemplates[i] ) ) {
removeTemplate: function(template) {
this.text = this.text.replace( allTemplates[i], '', 'g' );
var first_char = template.substr(0, 1);
var template_re_string = '(?:[Tt]emplate:|模板:)?\\s*[' + first_char.toUpperCase() + first_char.toLowerCase() + ']' + RegExp.escape(template.substr(1), true);
var links_re = new RegExp('\\{\\{' + template_re_string);
var allTemplates = Morebits.array.uniq(Morebits.string.splitWeightedByKeys(this.text, '{{', '}}', [ '{{{', '}}}' ]));
for (var i = 0; i < allTemplates.length; ++i) {
if (links_re.test(allTemplates[i])) {
this.text = this.text.replace(allTemplates[i], '', 'g');
}
}
},
 
/** @returns {string} */
getText: function() {
return this.text;
}
};
 
 
 
/**
* **************** Morebits.userspaceLoggerqueryString ****************
* Maps the querystring to an object
* Handles logging actions to a userspace log, used in
*
* twinklespeedy and twinkleprod.
* Functions:
*
* Morebits.queryString.exists(key)
* returns true if the particular key is set
* Morebits.queryString.get(key)
* returns the value associated to the key
* Morebits.queryString.equals(key, value)
* returns true if the value associated with given key equals given value
* Morebits.queryString.toString()
* returns the query string as a string
* Morebits.queryString.create( hash )
* creates an querystring and encodes strings via encodeURIComponent and joins arrays with |
*
* In static context, the value of location.search.substring(1), else the value given to the constructor is going to be used. The mapped hash is saved in the object.
*
* Example:
*
* var value = Morebits.queryString.get('key');
* var obj = new Morebits.queryString('foo=bar&baz=quux');
* value = obj.get('foo');
*/
Morebits.queryString = function QueryString(qString) {
this.string = qString;
this.params = {};
 
if( !qString.length ) {
Morebits.userspaceLogger = function(logPageName) {
return;
if (!logPageName) {
throw new Error(wgULS('未指定日志页面名称', '未指定日誌頁面名稱'));
}
this.initialText = '';
this.headerLevel = 3;
 
qString.replace(/\+/, ' ');
this.log = function(logText, summaryText) {
var args = qString.split('&');
if (!logText) {
 
return;
for( var i = 0; i < args.length; ++i ) {
var pair = args[i].split( '=' );
var key = decodeURIComponent( pair[0] ), value = key;
 
if( pair.length === 2 ) {
value = decodeURIComponent( pair[1] );
}
var page = new Morebits.wiki.page('User:' + mw.config.get('wgUserName') + '/' + logPageName,
wgULS('将项目添加到用户空间日志', '將項目加入到使用者空間日誌')); // make this '... to ' + logPageName ?
return page.load(function(pageobj) {
// add blurb if log page doesn't exist or is blank
var text = pageobj.getPageText() || this.initialText;
 
this.params[key] = value;
// create monthly header if it doesn't exist already
}
var date = new Morebits.date(pageobj.getLoadTime());
};
if (!date.monthHeaderRegex().exec(text)) {
text += '\n\n' + date.monthHeader(this.headerLevel);
}
 
Morebits.queryString.staticstr = null;
pageobj.setPageText(text + '\n' + logText);
 
pageobj.setEditSummary(summaryText);
Morebits.queryString.staticInit = function() {
pageobj.setCreateOption('recreate');
if( !Morebits.queryString.staticstr ) {
pageobj.save();
Morebits.queryString.staticstr = new Morebits.queryString(location.search.substring(1));
}.bind(this));
};
};
 
Morebits.queryString.get = function(key) {
Morebits.queryString.staticInit();
return Morebits.queryString.staticstr.get(key);
};
 
Morebits.queryString.prototype.get = function(key) {
return this.params[key] ? this.params[key] : null;
};
 
Morebits.queryString.exists = function(key) {
Morebits.queryString.staticInit();
return Morebits.queryString.staticstr.exists(key);
};
 
Morebits.queryString.prototype.exists = function(key) {
return this.params[key] ? true : false;
};
 
Morebits.queryString.equals = function(key, value) {
Morebits.queryString.staticInit();
return Morebits.queryString.staticstr.equals(key, value);
};
 
Morebits.queryString.prototype.equals = function(key, value) {
return this.params[key] === value ? true : false;
};
 
Morebits.queryString.toString = function() {
Morebits.queryString.staticInit();
return Morebits.queryString.staticstr.toString();
};
 
Morebits.queryString.prototype.toString = function() {
return this.string ? this.string : null;
};
 
Morebits.queryString.create = function( arr ) {
var resarr = [];
var editToken; // KLUGE: this should always be the last item in the query string (bug TW-B-0013)
for( var i in arr ) {
if( arr[i] === undefined ) {
continue;
}
var res;
if( $.isArray( arr[i] ) ){
var v = [];
for(var j = 0; j < arr[i].length; ++j ) {
v[j] = encodeURIComponent( arr[i][j] );
}
res = v.join('|');
} else {
res = encodeURIComponent( arr[i] );
}
if( i === 'token' ) {
editToken = res;
} else {
resarr.push( encodeURIComponent( i ) + '=' + res );
}
}
if( editToken !== undefined ) {
resarr.push( 'token=' + editToken );
}
return resarr.join('&');
};
Morebits.queryString.prototype.create = Morebits.queryString.create;
 
 
 
/**
第四四四三行 ⟶ 第三六二〇行:
*/
 
Morebits.status = function Status( text, stat, type ) {
/**
* @constructor
* Morebits.status.init() must be called before any status object is created, otherwise
* those statuses won't be visible.
* @param {String} text - Text before the the colon `:`
* @param {String} stat - Text after the colon `:`
* @param {String} [type=status] - This parameter determines the font color of the status line,
* this can be 'status' (blue), 'info' (green), 'warn' (red), or 'error' (bold red)
* The default is 'status'
*/
 
Morebits.status = function Status(text, stat, type) {
this.textRaw = text;
this.text = this.codify(text);
this.type = type || 'status';
this.generate();
if ( stat ) {
this.update( stat, type );
}
};
 
Morebits.status.init = function( root ) {
/**
if( !( root instanceof Element ) ) {
* Specify an area for status message elements to be added to
throw new Error( '对象不是一个Element' );
* @param {HTMLElement} root - usually a div element
*/
Morebits.status.init = function(root) {
if (!(root instanceof Element)) {
throw new Error('对象不是一个Element');
}
while ( root.hasChildNodes() ) {
root.removeChild( root.firstChild );
}
Morebits.status.root = root;
第四四八一行 ⟶ 第三六四三行:
Morebits.status.root = null;
 
Morebits.status.onError = function( handler ) {
/** @param {Function} handler - function to execute on error */
Morebits.status.onError if =( function$.isFunction( handler ) ) {
if (typeof handler === 'function') {
Morebits.status.errorEvent = handler;
} else {
throw '"Morebits.status.onError:处理程序不是一个函数'";
}
};
第四四九八行 ⟶ 第三六五九行:
node: null,
linked: false,
 
/** Add the status element node to the DOM */
link: function() {
if ( ! this.linked && Morebits.status.root ) {
Morebits.status.root.appendChild( this.node );
this.linked = true;
}
},
 
/** Remove the status element node from the DOM */
unlink: function() {
if ( this.linked ) {
Morebits.status.root.removeChild( this.node );
this.linked = false;
}
},
codify: function( obj ) {
 
if ( ! $.isArray( obj ) ) {
/**
* Create a document fragment with the status text
* @param {(string|Element|Array)} obj
* @returns {DocumentFragment}
*/
codify: function(obj) {
if (!Array.isArray(obj)) {
obj = [ obj ];
}
var result;
result = document.createDocumentFragment();
for ( var i = 0; i < obj.length; ++i ) {
if ( typeof obj[i] === 'string' ) {
result.appendChild( document.createTextNode( obj[i] ) );
} else if ( obj[i] instanceof Element ) {
result.appendChild( obj[i] );
} // Else cosmic radiation made something shit
}
第四五三六行 ⟶ 第三六八七行:
 
},
update: function( status, type ) {
 
this.stat = this.codify( status );
/**
if( type ) {
* Update the status
* @param {String} status - Part of status message after colon `:`
* @param {String} type - 'status' (blue), 'info' (green), 'warn' (red), or 'error' (bold red)
*/
update: function(status, type) {
this.stat = this.codify(status);
if (type) {
this.type = type;
if (type === 'error') {
// hack to force the page not to reload when an error is output - see also Morebits.status() above
Morebits.wiki.numberOfActionsLeft = 1000;
 
// call error callback
if (Morebits.status.errorEvent) {
Morebits.status.errorEvent();
}
 
// also log error messages in the browser console
if (console && console.error) {
console.error(this.textRaw + ': ' + status); // eslint-disable-line no-console
console.error(this.textRaw + ": " + status);
}
}
}
this.render();
},
 
/** Produce the html for first part of the status message */
generate: function() {
this.node = document.createElement( 'div' );
this.node.appendChild( document.createElement('span') ).appendChild( this.text );
this.node.appendChild( document.createElement('span') ).appendChild( document.createTextNode( ': ' ) );
this.target = this.node.appendChild( document.createElement( 'span' ) );
this.target.appendChild( document.createTextNode( '' ) ); // dummy node
},
 
/** Complete the html, for the second part of the status message */
render: function() {
this.node.className = 'morebits_status_tw_status_' + this.type;
while ( this.target.hasChildNodes() ) {
this.target.removeChild( this.target.firstChild );
}
this.target.appendChild( this.stat );
this.link();
},
status: function( status ) {
this.update( status, 'status');
},
info: function( status ) {
this.update( status, 'info');
},
warn: function( status ) {
this.update( status, 'warn');
},
error: function( status ) {
this.update( status, 'error');
}
};
 
Morebits.status.info = function( text, status ) {
return new Morebits.status( text, status, 'info' );
};
 
Morebits.status.warn = function( text, status ) {
return new Morebits.status( text, status, 'warn' );
};
 
Morebits.status.error = function( text, status ) {
return new Morebits.status( text, status, 'error' );
};
 
// display the user's rationale, comments, etc. back to them after a failure,
/**
// so they don't use it
* For the action complete message at the end, create a status line without
Morebits.status.printUserText = function( comments, message ) {
* a colon separator.
var p = document.createElement( 'p' );
* @param {String} text
p.textContent = message;
*/
var div = document.createElement( 'div' );
Morebits.status.actionCompleted = function(text) {
var node = document.createElement('div');
node.appendChild(document.createElement('span')).appendChild(document.createTextNode(text));
node.className = 'morebits_status_info';
if (Morebits.status.root) {
Morebits.status.root.appendChild(node);
}
};
 
/**
* Display the user's rationale, comments, etc. back to them after a failure,
* so that they may re-use it
* @param {string} comments
* @param {string} message
*/
Morebits.status.printUserText = function(comments, message) {
var p = document.createElement('p');
p.innerHTML = message;
var div = document.createElement('div');
div.className = 'toccolours';
div.style.marginTop = '0';
div.style.whiteSpace = 'pre-wrap';
div.textContent = comments;
p.appendChild( div );
Morebits.status.root.appendChild( p );
};
 
第四六四三行 ⟶ 第三七六六行:
* **************** Morebits.htmlNode() ****************
* Simple helper function to create a simple node
* @param {string} type - type of HTML element
* @param {string} text - text content
* @param {string} [color] - font color
* @returns {HTMLElement}
*/
 
Morebits.htmlNode = function (type, content, color) {
Morebits.htmlNode = function ( type, content, color ) {
var node = document.createElement(type);
var node = document.createElement( type );
if (color) {
if( color ) {
node.style.color = color;
}
node.appendChild( document.createTextNode( content ) );
return node;
};
第四六六〇行 ⟶ 第三七八〇行:
 
/**
* **************** Morebits.checkboxShiftClickSupportcheckboxClickHandler() ****************
* shift-click-support for checkboxes
* wikibits version (window.addCheckboxClickHandlers) has some restrictions, and
* doesn't work with checkboxes inside a sortable table, so let's build our own.
*/
 
Morebits.checkboxShiftClickSupport = function (jQuerySelector, jQueryContext) {
var lastCheckbox = null;
 
function clickHandler(event) {
var thisCbcb = this;
if (event.shiftKey && lastCheckbox !== null) {
{
var cbs = $(jQuerySelector, jQueryContext); // can't cache them, obviously, if we want to support resorting
var cbs = $(jQuerySelector, jQueryContext); //can't cache them, obviously, if we want to support resorting
var index = -1, lastIndex = -1, i;
var index=-1, lastIndex=-1;
for (i = 0; i < cbs.length; i++) {
iffor (cbs[i]var i===0; thisCb)i<cbs.length; {i++)
{
index = i;
if (lastIndexcbs[i]==cb) >{ index=i; if (lastIndex>-1) {break; }
if (cbs[i]==lastCheckbox) { lastIndex=i; if (index>-1) break; }
break;
}
}
if (cbs[i] === lastCheckbox) {
lastIndex = i;
if (index > -1) {
break;
}
}
}
if (index>-1 && lastIndex>-1)
 
{
if (index > -1 && lastIndex > -1) {
// inspired by wikibits
var endState = thisCbcb.checked;
var start, finish;
if (index < lastIndex) {
{
start = index + 1;
finish = lastIndex;
} else {
else
{
start = lastIndex;
finish = index - 1;
}
 
for (i = start; i <= finish; i++) {
if (cbs[i].checked !== endState) {
cbs[i].click();
}
}
for (var i=start; i<=finish; i++) cbs[i].checked = endState;
}
}
lastCheckbox = thisCbcb;
return true;
}
 
$(jQuerySelector, jQueryContext).click(clickHandler);
};
 
第四七一七行 ⟶ 第三八二八行:
 
/** **************** Morebits.batchOperation ****************
* Iterates over a group of pages (or arbitrary objects) and executes a worker function for each.
* for each.
*
* Constructor: Morebits.batchOperation(currentAction)
第四七二七行 ⟶ 第三八三七行:
* setOption(optionName, optionValue): Sets a known option:
* - chunkSize (integer): the size of chunks to break the array into (default 50).
* Setting this to a small value (<5) can cause problems.
* - preserveIndividualStatusLines (boolean): keep each page's status element visible
* when worker is complete? See note below
*
* run(worker, postFinish): Runs the given callback `worker` for each page in the list.
* The callback must call workerSuccess when succeeding, or workerFailure
* when failing. If using Morebits.wiki.api or Morebits.wiki.page, this is easily
第四七四〇行 ⟶ 第三八五〇行:
* chunk! Also ensure that either workerSuccess or workerFailure is called no more
* than once.
* The second callback `postFinish` is executed when the entire batch has been processed.
*
* If using preserveIndividualStatusLines, you should try to ensure that the
第四七四八行 ⟶ 第三八五七行:
*
* There are sample batchOperation implementations using Morebits.wiki.page in
* twinklebatchdelete.js, twinklebatchundeleteand using Morebits.js,wiki.api andin twinklebatchprotecttwinklebatchundelete.js.
*/
 
/**
* @constructor
* @param {string} [currentAction]
*/
Morebits.batchOperation = function(currentAction) {
var ctx = {
第四七六五行 ⟶ 第三八七〇行:
 
// internal counters, etc.
statusElement: new Morebits.status(currentAction || wgULS('"执行批量操作', '執行批次操作')"),
worker: null, // function that executes for each item in pageList
postFinish: null, // function that executes when the whole batch has been processed
countStarted: 0,
countFinished: 0,
第四七八一行 ⟶ 第三八八五行:
};
 
/**
* Sets the list of pages to work on
* @param {Array} pageList Array of objects over which you wish to execute the worker function
* This is usually the list of page names (strings).
*/
this.setPageList = function(pageList) {
ctx.pageList = pageList;
};
 
/**
* Sets a known option:
* - chunkSize (integer):
* The size of chunks to break the array into (default 50).
* Setting this to a small value (<5) can cause problems.
* - preserveIndividualStatusLines (boolean):
* Keep each page's status element visible when worker is complete?
*/
this.setOption = function(optionName, optionValue) {
ctx.options[optionName] = optionValue;
};
 
this.run = function(worker) {
/**
* Runs the first callback for each page in the list.
* The callback must call workerSuccess when succeeding, or workerFailure when failing.
* Runs the second callback when the whole batch has been processed (optional)
* @param {Function} worker
* @param {Function} [postFinish]
*/
this.run = function(worker, postFinish) {
if (ctx.running) {
ctx.statusElement.error(wgULS('"批量操作已在运行', '批次操作已在執行')");
return;
}
第四八一七行 ⟶ 第三九〇一行:
 
ctx.worker = worker;
ctx.postFinish = postFinish;
ctx.countStarted = 0;
ctx.countFinished = 0;
第四八二六行 ⟶ 第三九〇九行:
var total = ctx.pageList.length;
if (!total) {
ctx.statusElement.info(wgULS('"有指定页面', '沒有指定頁面')什么要做的");
ctx.running = false;
if (ctx.postFinish) {
ctx.postFinish();
}
return;
}
第四八三九行 ⟶ 第三九一九行:
// start the process
Morebits.wiki.addCheckpoint();
ctx.statusElement.status('"0%'");
fnStartNewChunk();
};
 
this.workerSuccess = function(apiobj) {
/**
// update or remove status line
* To be called by worker before it terminates succesfully
if (apiobj && apiobj.getStatusElement) {
* @param {(Morebits.wiki.page|Morebits.wiki.api|string)} arg
var statelem = apiobj.getStatusElement();
* This should be the `Morebits.wiki.page` or `Morebits.wiki.api` object used by worker
* (for the adjustment of status lines emitted by them).
* If no Morebits.wiki.* object is used (eg. you're using mw.Api() or something else), and
* `preserveIndividualStatusLines` option is on, give the page name (string) as argument.
*/
this.workerSuccess = function(arg) {
 
var createPageLink = function(pageName) {
var link = document.createElement('a');
link.setAttribute('href', mw.util.getUrl(pageName));
link.appendChild(document.createTextNode(pageName));
return link;
};
 
if (arg instanceof Morebits.wiki.api || arg instanceof Morebits.wiki.page) {
// update or remove status line
var statelem = arg.getStatusElement();
if (ctx.options.preserveIndividualStatusLines) {
if (argapiobj.getPageName || argapiobj.pageName || (argapiobj.query && argapiobj.query.title)) {
// we know the page title - display a relevant message
var pageName = argapiobj.getPageName ? argapiobj.getPageName() : arg
(apiobj.pageName || argapiobj.query.title);
var link = document.createElement('a');
statelem.info(['完成(', createPageLink(pageName), ')']);
link.setAttribute('href', mw.util.getUrl(pageName));
link.appendChild(document.createTextNode(pageName));
statelem.info(['完成(', link, ')']);
} else {
// we don't know the page title - just display a generic message
第四八七三行 ⟶ 第三九四一行:
}
} else {
// remove the status line automaticallyfrom produced by Morebits.wiki.*display
statelem.unlink();
}
 
} else if (typeof arg === 'string' && ctx.options.preserveIndividualStatusLines) {
new Morebits.status(arg, ['完成(', createPageLink(arg), ')']);
}
 
ctx.countFinishedSuccess++;
fnDoneOne(apiobj);
};
 
this.workerFailure = function(apiobj) {
fnDoneOne(apiobj);
};
 
第四九一二行 ⟶ 第三九七七行:
var total = ctx.pageList.length;
if (ctx.countFinished === total) {
var statusString = '"完成('" + ctx.countFinishedSuccess +
'"/'" + ctx.countFinished + '"操作成功完成)'";
if (ctx.countFinishedSuccess < ctx.countFinished) {
ctx.statusElement.warn(statusString);
} else {
ctx.statusElement.info(statusString);
}
if (ctx.postFinish) {
ctx.postFinish();
}
Morebits.wiki.removeCheckpoint();
第四九二九行 ⟶ 第三九九一行:
// just for giggles! (well, serious debugging, actually)
if (ctx.countFinished > total) {
ctx.statusElement.warn(wgULS('"完成(多执行了'" + (ctx.countFinished - total) + '"', '完成(多執行了' + (ctx.countFinished - total) + ')')");
Morebits.wiki.removeCheckpoint();
ctx.running = false;
第四九三五行 ⟶ 第三九九七行:
}
 
ctx.statusElement.status(parseInt(100 * ctx.countFinished / total, 10) + '"%'");
 
// start a new chunk if we're close enough to the end of the previous chunk, and
第四九五二行 ⟶ 第四〇一四行:
* A simple draggable window
* now a wrapper for jQuery UI's dialog feature
* @requires {jquery.ui.dialog}
*/
 
// The height passed in here is the maximum allowable height for the content area.
/**
Morebits.simpleWindow = function SimpleWindow( width, height ) {
* @constructor
var content = document.createElement( 'div' );
* @param {number} width
* @param {number} height The maximum allowable height for the content area.
*/
Morebits.simpleWindow = function SimpleWindow(width, height) {
var content = document.createElement('div');
this.content = content;
content.className = 'morebits-dialog-content';
第四九六九行 ⟶ 第四〇二六行:
 
$(this.content).dialog({
autoOpen: false,
buttons: { '"占位按钮'": function() {} },
dialogClass: 'morebits-dialog',
width: Math.min(parseInt(window.innerWidth, 10), parseInt(width ? width : 800, 10)),
// give jQuery the given height value (which represents the anticipated height of the dialog) here, so
// it can position the dialog appropriately
// the 20 pixels represents adjustment for the extra height of the jQuery dialog "chrome", compared
// to that of the old SimpleWindow
height: height + 20,
close: function(event, ui) {
// dialogs and their content can be destroyed once closed
$(event.target).dialog('"destroy'").remove();
},
resizeStart: function(event, ui) {
this.scrollbox = $(this).find('".morebits-scrollbox'")[0];
if (this.scrollbox) {
this.scrollbox.style.maxHeight = '"none'";
}
},
resizeEnd: function(event, ui) {
this.scrollbox = null;
},
resize: function(event, ui) {
this.style.maxHeight = "";
if (this.scrollbox) {
this.scrollbox.style.width = "";
}
}
},);
 
resizeEnd: function() {
var $widget = $(this.content).dialog("widget");
this.scrollbox = null;
},
resize: function() {
this.style.maxHeight = '';
if (this.scrollbox) {
this.scrollbox.style.width = '';
}
}
});
 
// add background gradient to titlebar
var $widget = $(this.content).dialog('widget');
var $titlebar = $widget.find(".ui-dialog-titlebar");
var oldstyle = $titlebar.attr("style");
$titlebar.attr("style", (oldstyle ? oldstyle : "") + '; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB%2FqqA%2BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEhQTFRFr73ZobTPusjdsMHZp7nVwtDhzNbnwM3fu8jdq7vUt8nbxtDkw9DhpbfSvMrfssPZqLvVztbno7bRrr7W1d%2Fs1N7qydXk0NjpkW7Q%2BgAAADVJREFUeNoMwgESQCAAAMGLkEIi%2FP%2BnbnbpdB59app5Vdg0sXAoMZCpGoFbK6ciuy6FX4ABAEyoAef0BXOXAAAAAElFTkSuQmCC) !important;');
 
// delete the placeholder button (it's only there so the buttonpane gets created)
$widget.find('"button'").each(function(key, value) {
value.parentNode.removeChild(value);
});
 
// add container for the buttons we add, and the footer links (if any)
var buttonspan = document.createElement('"span'");
buttonspan.className = '"morebits-dialog-buttons'";
var linksspan = document.createElement('"span'");
linksspan.className = '"morebits-dialog-footerlinks'";
$widget.find('".ui-dialog-buttonpane'").append(buttonspan, linksspan);
 
// resize the scrollbox with the dialog, if one is present
$widget.resizable('"option'", '"alsoResize'", '"#'" + this.content.id + '" .morebits-scrollbox, #'" + this.content.id);
};
 
第五〇二三行 ⟶ 第四〇八五行:
scriptName: null,
 
// Focuses the dialog. This might work, or on the contrary, it might not.
/**
focus: function(event) {
* Focuses the dialog. This might work, or on the contrary, it might not.
$(this.content).dialog("moveToTop");
* @returns {Morebits.simpleWindow}
 
*/
focus: function() {
$(this.content).dialog('moveToTop');
return this;
},
// Closes the dialog. If this is set as an event handler, it will stop the event from doing anything more.
 
/**
* Closes the dialog. If this is set as an event handler, it will stop the event
* from doing anything more.
* @returns {Morebits.simpleWindow}
*/
close: function(event) {
if (event) {
event.preventDefault();
}
$(this.content).dialog('"close'");
 
return this;
},
// Shows the dialog. Calling display() on a dialog that has previously been closed might work, but it is not guaranteed.
 
/**
* Shows the dialog. Calling display() on a dialog that has previously been closed
* might work, but it is not guaranteed.
* @returns {Morebits.simpleWindow}
*/
display: function() {
if (this.scriptName) {
var $widget = $(this.content).dialog('"widget'");
$widget.find('".morebits-dialog-scriptname'").remove();
var scriptnamespan = document.createElement('"span'");
scriptnamespan.className = '"morebits-dialog-scriptname'";
scriptnamespan.textContent = this.scriptName + '" \u00B7 '"; // U+00B7 MIDDLE DOT = &middot;
$widget.find('".ui-dialog-title'").prepend(scriptnamespan);
}
 
var dialog = $(this.content).dialog('"open'");
if (window.setupTooltips && window.pg && window.pg.re && window.pg.re.diff) { // tie in with NAVPOP
dialog.parent()[0].ranSetupTooltipsAlready = false;
window.setupTooltips(dialog.parent()[0]);
}
this.setHeight( this.height ); // init height algorithm
 
return this;
},
// Sets the dialog title.
setTitle: function( title ) {
$(this.content).dialog("option", "title", title);
 
/**
* Sets the dialog title.
* @param {string} title
* @returns {Morebits.simpleWindow}
*/
setTitle: function(title) {
$(this.content).dialog('option', 'title', title);
return this;
},
// Sets the script name, appearing as a prefix to the title to help users determine which
// user script is producing which dialog. For instance, Twinkle modules set this to "Twinkle".
setScriptName: function( name ) {
this.scriptName = name;
 
/**
* Sets the script name, appearing as a prefix to the title to help users determine which
* user script is producing which dialog. For instance, Twinkle modules set this to "Twinkle".
* @param {string} name
* @returns {Morebits.simpleWindow}
*/
setScriptName: function(name) {
this.scriptName = name;
return this;
},
// Sets the dialog width.
setWidth: function( width ) {
$(this.content).dialog("option", "width", width);
 
/**
* Sets the dialog width.
* @param {number} width
* @returns {Morebits.simpleWindow}
*/
setWidth: function(width) {
$(this.content).dialog('option', 'width', width);
return this;
},
// Sets the dialog's maximum height. The dialog will auto-size to fit its contents,
 
// but the content area will grow no larger than the height given here.
/**
setHeight: function( height ) {
* Sets the dialog's maximum height. The dialog will auto-size to fit its contents,
* but the content area will grow no larger than the height given here.
* @param {number} height
* @returns {Morebits.simpleWindow}
*/
setHeight: function(height) {
this.height = height;
 
// from display time onwards, let the browser determine the optimum height, and instead limit the height at the given value
// note that the given height will exclude the approx. 20px that the jQuery UI chrome has in height in addition to the height
// and instead limit the height at the given value
// of an equivalent "classic" Morebits.simpleWindow
// note that the given height will exclude the approx. 20px that the jQuery UI
if (parseInt(getComputedStyle($(this.content).dialog("widget")[0], null).height, 10) > window.innerHeight) {
// chrome has in height in addition to the height of an equivalent "classic"
$(this.content).dialog("option", "height", window.innerHeight - 2).dialog("option", "position", "top");
// Morebits.simpleWindow
if (parseInt(getComputedStyle($(this.content).dialog('widget')[0], null).height, 10) > window.innerHeight) {
$(this.content).dialog('option', 'height', window.innerHeight - 2).dialog('option', 'position', 'top');
} else {
$(this.content).dialog('"option'", '"height'", '"auto'");
}
$(this.content).dialog('"widget'").find('".morebits-dialog-content'")[0].style.maxHeight = parseInt(this.height - 30, 10) + '"px'";
 
return this;
},
// Sets the content of the dialog to the given element node, usually from rendering a Morebits.quickForm.
// Re-enumerates the footer buttons, but leaves the footer links as they are.
// Be sure to call this at least once before the dialog is displayed...
setContent: function( content ) {
this.purgeContent();
this.addContent( content );
 
/**
* Sets the content of the dialog to the given element node, usually from rendering
* a Morebits.quickForm.
* Re-enumerates the footer buttons, but leaves the footer links as they are.
* Be sure to call this at least once before the dialog is displayed...
* @param {HTMLElement} content
* @returns {Morebits.simpleWindow}
*/
setContent: function(content) {
this.purgeContent();
this.addContent(content);
return this;
},
addContent: function( content ) {
 
this.content.appendChild( content );
/**
* Adds the given element node to the dialog content.
* @param {HTMLElement} content
* @returns {Morebits.simpleWindow}
*/
addContent: function(content) {
this.content.appendChild(content);
 
// look for submit buttons in the content, hide them, and add a proxy button to the button pane
var thisproxy = this;
$(this.content).find('input[type="submit"], button[type="submit"]').each(function(key, value) {
value.style.display = '"none'";
var button = document.createElement('"button'");
button.textContent = (value.hasAttribute('"value'") ? value.getAttribute('"value'") : (value.textContent ? value.textContent : '"提交'"));
// here is an instance of cheap coding, probably a memory-usage hit in using a closure here
button.className = value.className || 'submitButtonProxy';
button.addEventListener("click", function() { value.click(); }, false);
// here is an instance of cheap coding, probably a memory-usage hit in using a closure here
thisproxy.buttons.push(button);
button.addEventListener('click', function() {
value.click(});
}, false);
thisproxy.buttons.push(button);
});
// remove all buttons from the button pane and re-add them
if (this.buttons.length > 0) {
$(this.content).dialog('"widget'").find('".morebits-dialog-buttons'").empty().append(this.buttons)[0].removeAttribute('"data-empty'");
} else {
$(this.content).dialog('"widget'").find('".morebits-dialog-buttons'")[0].setAttribute('"data-empty'", '"data-empty'"); // used by CSS
}
 
return this;
},
 
/**
* Removes all contents from the dialog, barring any footer links
* @returns {Morebits.simpleWindow}
*/
purgeContent: function() {
this.buttons = [];
// delete all buttons in the buttonpane
$(this.content).dialog('"widget'").find('".morebits-dialog-buttons'").empty();
 
while ( this.content.hasChildNodes() ) {
this.content.removeChild( this.content.firstChild );
}
 
return this;
},
// Adds a link in the bottom-right corner of the dialog.
 
// This can be used to provide help or policy links.
/**
// For example, Twinkle's CSD module adds a link to the CSD policy page,
* Adds a link in the bottom-right corner of the dialog.
// as well as a link to Twinkle's documentation.
* This can be used to provide help or policy links.
addFooterLink: function( text, wikiPage ) {
* For example, Twinkle's CSD module adds a link to the CSD policy page,
var $footerlinks = $(this.content).dialog("widget").find(".morebits-dialog-footerlinks");
* as well as a link to Twinkle's documentation.
* @param {string} text Link's text content
* @param {string} wikiPage Link target
* @param {boolean} [prep=false] Set true to prepend rather than append
* @returns {Morebits.simpleWindow}
*/
addFooterLink: function(text, wikiPage, prep) {
var $footerlinks = $(this.content).dialog('widget').find('.morebits-dialog-footerlinks');
if (this.hasFooterLinks) {
var bullet = document.createElement('"span'");
bullet.textContent = '" \u2022 '"; // U+2022 BULLET
$footerlinks.append(bullet);
if (prep) {
$footerlinks.prepend(bullet);
} else {
$footerlinks.append(bullet);
}
}
var link = document.createElement('"a'");
link.setAttribute('"href'", mw.util.getUrl(wikiPage) );
link.setAttribute('"title'", wikiPage);
link.setAttribute('"target'", '"_blank'");
link.textContent = text;
$footerlinks.append(link);
if (prep) {
$footerlinks.prepend(link);
} else {
$footerlinks.append(link);
}
this.hasFooterLinks = true;
 
return this;
},
setModality: function( modal ) {
$(this.content).dialog("option", "modal", modal);
 
/**
* Set whether the window should be modal or not.
* If set to true, other items on the page will be disabled, i.e., cannot be
* interacted with. Modal dialogs create an overlay below the dialog but above
* other page elements.
* This must be used (if necessary) before calling display()
* Default: false
* @param {boolean} modal
* @returns {Morebits.simpleWindow}
*/
setModality: function(modal) {
$(this.content).dialog('option', 'modal', modal);
return this;
}
};
 
// Enables or disables all footer buttons on all Morebits.simpleWindows in the current page.
/**
// This should be called with |false| when the button(s) become irrelevant (e.g. just before Morebits.status.init is called).
* Enables or disables all footer buttons on all Morebits.simpleWindows in the current page.
// This is not an instance method so that consumers don't have to keep a reference to the original
* This should be called with `false` when the button(s) become irrelevant (e.g. just before
// Morebits.simpleWindow object sitting around somewhere. Anyway, most of the time there will only be one
* Morebits.status.init is called).
// Morebits.simpleWindow open, so this shouldn't matter.
* This is not an instance method so that consumers don't have to keep a reference to the
* original Morebits.simpleWindow object sitting around somewhere.setButtonsEnabled Anyway,= mostfunction( ofenabled the) time{
$(".morebits-dialog-buttons button").prop("disabled", !enabled);
* there will only be one Morebits.simpleWindow open, so this shouldn't matter.
* @param {boolean} enabled
*/
Morebits.simpleWindow.setButtonsEnabled = function(enabled) {
$('.morebits-dialog-buttons button').prop('disabled', !enabled);
};
 
 
// Twinkle blacklist was removed per consensus at http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard/Archive221#New_Twinkle_blacklist_proposal
}(window, document, jQuery)); // End wrap with anonymous function
 
 
 
} ( window, document, jQuery )); // End wrap with anonymous function
 
 
第五二五九行 ⟶ 第四二五二行:
*/
 
if ( typeof arguments === '"undefined'" ) { // typeof is here for a reason...
/* global Morebits */
window.SimpleWindow = Morebits.simpleWindow;
window.QuickForm = Morebits.quickForm;
window.Wikipedia = Morebits.wiki;
window.Status = Morebits.status;
window.QueryString = Morebits.queryString;
}
 
 
// </nowiki>