_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Ais523/watchlistei.js

Nowadays, User:Ais523/watchlistei.js is a topic that has aroused great interest in different areas. From politics to health, fashion and technology, User:Ais523/watchlistei.js has become a recurring talking point. Opinions on this matter are varied and polarized, which has generated an enriching and, at times, heated debate. In this article, we will explore different perspectives on User:Ais523/watchlistei.js and how it impacts our current society. In addition, we will analyze its evolution over the years and its projection for the future. Without a doubt, User:Ais523/watchlistei.js is a topic that leaves no one indifferent, and deserves deep and well-argued reflection.
//<pre><nowiki>
// Watchlist export/import (]), by ].

// To use this script, visit ] and follow the new links for 'import' or 'export'
// there. The exported watchlist can be copy/pasted into the edit box for import, and is also legal
// (but somewhat obfuscated) wikitext for use with ]. Doesn't work in
// Internet Explorer, does work in Firefox 1, I haven't checked other browsers.

// To install this script, the easiest way is to type {{subst:js|User:ais523/watchlistei.js}} at the
// bottom of ], and bypass your cache (Ctrl-F5 in Firefox for Windows).

// Each line of an exported watchlist is in the form
// *]

// Note that this feature is now part of the software, making this script redundant.

if(navigator.userAgent.indexOf("MSIE")==-1) // fail gracefully in IE
{
// AJAX
var wleiwpajax;
// From ] mainpage (wpajax renamed to wleiwpajax)
wleiwpajax={
        download:function(bundle) {
                // mandatory: bundle.url
                // optional:  bundle.onSuccess (xmlhttprequest, bundle)
                // optional:  bundle.onFailure (xmlhttprequest, bundle)
                // optional:  bundle.otherStuff OK too, passed to onSuccess and onFailure
                
                var x = window.XMLHttpRequest ? new XMLHttpRequest()
                : window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP")
                : false;
                
                if (x) {
                        x.onreadystatechange=function() {
                                x.readyState==4 && wleiwpajax.downloadComplete(x,bundle);
                        };
                        x.open("HEAD",bundle.url,true);
                        x.send(null); 
                }
                return x;
        },

        downloadComplete:function(x,bundle) {
                x.status==200 && ( bundle.onSuccess && bundle.onSuccess(x,bundle) || true )
                || ( bundle.onFailure && bundle.onFailure(x,bundle) || alert(x.statusText));
        }
};

var wleiRunOnce=1;
// Links to export and import
$(function(){
  if(wgPageName=="Special:Watchlist"&&location.href.indexOf("list/")==-1&&wleiRunOnce)
  {
    wleiRunOnce=0;
    var t=document.getElementById('bodyContent').getElementsByTagName('hr');
    var n=document.createElement("p");
    t.parentNode.replaceChild(n,t);
    n.innerHTML="You can also <a href='http://en.wikipedia.orghttps://wiki386.com/en/Special:Watchlist/edit"+
    "?ais523wlei=export'>export</a> this watchlist or <a href='http://en.wikipedia.orghttps://wiki386.com/en/"+
    "Special:Watchlist/edit?ais523wlei=import'>import</a> pages from an exported watchlist.<hr/>";
  }
});

var wleiExRunOnce=1;
// Exporting: producing the list
$(function(){
  if(location.href.indexOf("Special:Watchlist/edit?ais523wlei=export")!=-1&&wleiExRunOnce)
  {
    wleiExRunOnce=0;
    var a=document.getElementById('bodyContent').getElementsByTagName('input');
    var b=new Array();
    b="<h2>Exported watchlist:</h2>\n<pre>";
    var i=0;
    while(i<a.length-1)
    {
      b="*.value)+"]]";
      i++;
    }
    b="</pre>";
    document.getElementById('bodyContent').innerHTML=b.join('\n');
  }
});

//Importing: textarea to input the watchlist
$(function(){
  if(location.href.indexOf("Special:Watchlist/edit?ais523wlei=import")!=-1)
  {
    document.getElementById('bodyContent').innerHTML=
      "Watchlist to import:<br/><textarea id='watchlistImport' rows=20 cols=80></textarea><br/>\n"+
      "<a href='javascript:wleiImport()'>Import watchlist</a><br/>\n"+
      "Pages not yet processed: <span id='wlein'>0</span>, retrying: <span id='wleif'>0</span> "+
      "(total retries: <span id='wleir'>0</span>, 4 retries max per page allowed), "+
      "succeeded: <span id='wleis'>0</span>, failed: <span id='wleic'>0</span>.<br />\n"+
      "Return to <a href='http://en.wikipedia.orghttps://wiki386.com/en/Special:Watchlist'>watchlist</a>.\n<div id='faillist'></div>";
  }
});

function wleiImport()
{
  var a=document.getElementById('watchlistImport').value.split('\r').join('\n').split('\n');
  var i=a.length;
  while(i--)
  {
    var m=a.match(/^\** *\\] *$/);
    if(m!=undefined&&m!=undefined&&m!="")
    {
      watchPageUsingAJAX(m);
      document.getElementById('wlein').innerHTML=
        1+new Number(document.getElementById('wlein').innerHTML);
    }
  }
}

function wleiSuccess(a,b)
{
  document.getElementById('wleis').innerHTML=
    1+new Number(document.getElementById('wleis').innerHTML);
  if(b.isRetrying)
  {
    document.getElementById('wleif').innerHTML=
      new Number(document.getElementById('wleif').innerHTML)-1;
  }
  else
  {
    document.getElementById('wlein').innerHTML=
      new Number(document.getElementById('wlein').innerHTML)-1;
  }
}
function wleiFailure(a,b)
{
  if(!b.isRetrying)
  {
    document.getElementById('wleif').innerHTML=
      1+new Number(document.getElementById('wleif').innerHTML);
    document.getElementById('wlein').innerHTML=
      new Number(document.getElementById('wlein').innerHTML)-1;
  }
  b.isRetrying++;
  if(b.isRetrying<5)
  {
    document.getElementById('wleir').innerHTML=
      1+new Number(document.getElementById('wleir').innerHTML);
    window.setTimeout(function(){wleiwpajax.download(b);},a.getResponseHeader('Retry-After')*1000);
  }
  else
  {
    document.getElementById('wleif').innerHTML=
      new Number(document.getElementById('wleif').innerHTML)-1;
    document.getElementById('wleic').innerHTML=
      new Number(document.getElementById('wleic').innerHTML)+1;
    if(document.getElementById('faillist').innerHTML=='') document.getElementById('faillist').innerHTML='Failed:';
    document.getElementById('faillist').innerHTML+=
      '<br/>*]';
  }
  return 1;
}

function watchPageUsingAJAX(urlencodedpagename)
{
  wleiwpajax.download({url:'http://en.wikipedia.org/w/index.php?title='+urlencodedpagename+
    '&action=watch&maxlag=5', onSuccess:wleiSuccess, onFailure:wleiFailure, isRetrying:0,
    urlencodedpagename:urlencodedpagename});
}
}
//</nowiki></pre>
//]