MediaWiki:Gadget-MoveUtil.js

From Elwiki
Revision as of 20:17, 6 May 2015 by Boxsnake (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
if(wgNamespaceNumber == -1 && /MovePage(\/.+)?/.test(wgTitle)){
    $('#wpMovetalk').attr('checked', 'checked');
    $('#wpLeaveRedirect').removeAttr('checked');
    $('#wpMovesubpages').attr('checked', 'checked');

    $('#movepage').submit(function(){
        var wiki, edittoken, old_title, new_title, new_line;
        $.get('/wiki/api.php?action=query&titles=User:Boxsnake/MoveList&prop=revisions&rvprop=content&format=json', function(data){
            if(data.query.pages['-1']){
                wiki = '';
            }
            else{
                data = data.query.pages;
                wiki = data[Object.keys(data)[0]].revisions[0]['*'];
            }
        }, 'json');
        edittoken = $('input[name=wpEditToken]').first().val();
        old_title = $('#mw-movepage-table strong').first().text();
        new_title = ($('#wpNewTitleNs').val() == 0 ? '' : $('#wpNewTitleNs').val() + ':') + $('#wpNewTitleMain').val();
        new_line = old_title + ' -> ' + new_title;
        $.post('/wiki/api.php?action=edit&title=User:Boxsnake/MoveList&summary=Bot Adding From Page Move. --[[Special:Gadgets|Move Util]]&minor&recreate&bot', {
            'token': edittoken,
            'text': wiki + '\n' + new_line
        }, function(){
            $('#movepage').submit();
        });
    });
}