User:Aua/itag.js
Appearance
< User:Aua
(Redirected from User:Auawise/itag.js)Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Aua/itag. |
// <nowiki>
AwaConfig = {};
AwaConfig.summaryAd = " using [[User:Auawise|Auawise]] script";
AwaConfig.watchTaggedPages = false;
AwaConfig.markTaggedPagesAsMinor = true;
function Awatag() {
if( mw.config.get('wgNamespaceNumber') == 1 ) {
addPortletLink( 'p-cactions', "javascript:Awatag.callback()", "Iraq", "Awa-tag", "Tag article", "");
}
}
addOnloadHook(Awatag);
Awatag.callback = function AwatagCallback( uid ) {
var Window = new SimpleWindow( 600, 400 );
Window.setTitle( "Choose only one tag" );
var form = new QuickForm( Awatag.callback.evaluate );
form.append( { type:'header', label:'Choose one type to add to WP:Iraq' } );
form.append( { type:'radio', name: 'common', list: Awatag.commonList } );
form.append( { type:'submit' } );
var result = form.render();
Window.setContent( result );
Window.display();
}
Awatag.commonList = [
{
label: '{{Iraq|importance=low|class=stub}}: low importance, and stub',
value: 'Iraq|importance=mid|class=stub' },
{
label: '{{Iraq|importance=low|class=start}}: low importance, and start',
value: 'Iraq|importance=mid|class=start' },
{
label: '{{Iraq|importance=low|class=B}}: low importance, and B-class',
value: 'Iraq|importance=low|class=B' },
{
label: '{{Iraq|importance=mid|class=stub}}: mid importance,and stub',
value: 'Iraq|importance=mid|class=stub' },
{
label: '{{Iraq|importance=mid|class=start}}: mid importance, and start',
value: 'Iraq|importance=mid|start' },
{
label: '{{Iraq|importance=mid|class=B}}: mid importance, and B-class',
value: 'Iraq|importance=mid|class=B' },
{
label: '{{Iraq|importance=high|class=stub}}: high importance, and stub',
value: 'Iraq|importance=high|class=stub' },
{
label: '{{Iraq|importance=high|class=start}}: high importance, and start',
value: 'Iraq|importance=high|class=start' },
{
label: '{{Iraq|importance=high|class=B}}: high importance, and B-class',
value: 'Iraq|importance=high|class=B' },
{
label: '{{Iraq|attention=yes}}: article needs attention',
value: 'Iraq|attention=yes' }
];
Awatag.callbacks = {
main: function( self ) {
var form = self.responseXML.getElementById( 'editform' );
var summaryText = 'Added';
var addStub = false;
var addUncategorized = false;
var text = '';
for( var i = 0; i < self.params.tags.length; i++ ) {
if( self.params.tags[i] == 'stub' ) {
addStub = true;
} else if( self.params.tags[i] == 'uncategorized' ) {
addUncategorized = true;
} else {
text += '\{\{' + self.params.tags[i] +
'|date=\{\{subst:CURRENTMONTHNAME\}\} \{\{subst:CURRENTYEAR\}\}\}\}\n';
}
if( self.params.tags.length > 2 && i < (self.params.tags.length - 1) && i != 0 ) {
summaryText += ',';
}
if( self.params.tags.length > 1 && i == (self.params.tags.length - 1) ) {
summaryText += ' and';
}
summaryText += ' \{\{' + self.params.tags[i] + '\}\}';
}
text += form.wpTextbox1.value;
if( addStub ) {
text += '\n\{\{stub|date=\{\{subst:CURRENTMONTHNAME\}\} \{\{subst:CURRENTYEAR\}\}\}\}';
}
if( addUncategorized ) {
text += '\n\{\{uncategorized|date=\{\{subst:CURRENTMONTHNAME\}\} \{\{subst:CURRENTYEAR\}\}\}\}';
}
summaryText += ' tag' + ( self.params.tags.length > 1 ? 's' : '' ) + ' to article.' + AwaConfig.summaryAd
var postData = {
'wpMinoredit': AwaConfig.markTaggedPagesAsMinor ? 1 : undefined,
'wpWatchthis': AwaConfig.watchTaggedPages ? 1 : undefined,
'wpStarttime': form.wpStarttime.value,
'wpEdittime': form.wpEdittime.value,
'wpAutoSummary': form.wpAutoSummary.value,
'wpEditToken': form.wpEditToken.value,
'wpSummary': summaryText,
'wpTextbox1': text
};
self.post( postData );
}
}
Awatag.callback.evaluate = function AwatagCallbackEvaluate(e) {
var form = e.target;
var tags = getChecked( form.common );
if( tags.length == 0 ) {
alert( 'You must select at least one tag' );
return;
}
var params = {
tags: tags
}
Status.init( form );
var query = {
'title': mw.config.get('wgPageName'),
'action': 'submit'
};
Wikipedia.actionCompleted.redirect = mw.config.get('wgPageName');
Wikipedia.actionCompleted.notice = "Tagging complete, reloading article in some seconds";
var wikipedia_wiki = new Wikipedia.wiki( 'Article modification', query, Awatag.callbacks.main );
wikipedia_wiki.params = params;
wikipedia_wiki.get();
}
// </nowiki>