User:WOSlinkerBot/linttask19.js

This is an old revision of this page, as edited by WOSlinkerBot (talk | contribs) at 20:39, 15 January 2022. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
function lint_queryString(p) {
    var re = RegExp('[&?]' + p + '=([^&]*)');
    var matches;
    if (matches = re.exec(document.___location)) {
        try { 
            return decodeURI(matches[1]);
        } catch (e) { }
    }
    return null;
}

//Add a 'lint edit' tab
if(mw.config.get('wgArticleId') != 0 ) { 
    $( function lintEditButton() {
        mw.util.addPortletLink('p-cactions', 
                       mw.util.getUrl(null,{action:'edit',lintedit:true}),
                       'lint',
                       'p-lint',
                       'lint edit');
    }
)}

if(mw.config.get('wgAction') == 'edit' && lint_queryString('lintedit') == 'true') {
    $(function lint() {
        var myContent = document.getElementById('wpTextbox1').value;

          myContent = myContent.replace(/(\<span style\=\"font-family\: Verdana\"\>\[\[User\:Seadog\.M\.S\|\<font color\=\"Mediumblue\"\>\'\'\'Seadog\'\'\')(\]\]\<sup\>\[\[User talk\:Seadog\.M\.S\|Talk\]\]\<\/sup\>) *(\<\/font\>)/g,'$1$3$2');

          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');
          //myContent = myContent.replace(//g,'');


          if(document.getElementById('wpTextbox1').value != myContent) {

              if(document.getElementById('wpTextbox1').value != myContent) {
                  document.getElementById('wpTextbox1').value=myContent;
                  document.getElementById('wpSummary').value='Fix misnested tag [[Special:LintErrors/html5-misnesting|lint errors]]';
                  document.getElementById('wpMinoredit').checked = true;
              }
          }

    }
)}