MediaWiki:Gadget-MoveUtil.js: Difference between revisions

From Elwiki
mNo edit summary
mNo edit summary
Line 23: Line 23:
                 'summary': 'Bot Adding From Page Move. --[[Special:Gadgets|Move Util]]',
                 'summary': 'Bot Adding From Page Move. --[[Special:Gadgets|Move Util]]',
                 'contentmodel': 'wikitext',
                 'contentmodel': 'wikitext',
                 'appendtext': '* ' + from + ' -> ' + (ns == '' ? '' : ns + ':') + to
                 'appendtext': '\n* ' + from + ' -> ' + (ns == '' ? '' : ns + ':') + to
             }).done(function(){
             }).done();
                return true;
            });
 
            event.preventDefault();
         });
         });
     }
     }
}
}

Revision as of 16:06, 7 May 2015

if(wgNamespaceNumber == -1 && /MovePage(\/.+)?/.test(wgTitle)){
    if($('#mw-movepage-table').length){
        $('#wpMovetalk').attr('checked', 'checked');
        $('#wpLeaveRedirect').removeAttr('checked');
        $('#wpMovesubpages').attr('checked', 'checked');
        /* Bind to Submit Event */
        $('#movepage').submit(function(event){
            var from, ns, to, api;
            api = new mw.Api();

            from = $('#mw-movepage-table strong').first().text();
            ns = mw.config.get('wgFormatteNamespaces', wgFormattedNamespaces);
            ns = ns[$('#wpNewTitleNs').val()];
            to = $('#wpNewTitleMain').val();

            /* Add Line in MoveList */
            api.postWithToken('edit', {
                'minor': '',
                'recreate': '',
                'bot': '',
                'action': 'edit',
                'title': 'User:Boxsnake/MoveList',
                'summary': 'Bot Adding From Page Move. --[[Special:Gadgets|Move Util]]',
                'contentmodel': 'wikitext',
                'appendtext': '\n* ' + from + ' -> ' + (ns == '' ? '' : ns + ':') + to
            }).done();
        });
    }
}