Revision as of 13:06, 21 September 2007 view sourceSuva (talk | contribs)1,238 editsm Removed some links from my watchlist← Previous edit |
Latest revision as of 05:36, 19 April 2013 view source Suva (talk | contribs)1,238 edits ←Blanked the page |
Line 1: |
Line 1: |
|
importScript('User:Lupin/popups.js'); |
|
|
importScript('User:Digwuren/tagwpe.js'); |
|
|
importScript('User:AzaToth/twinkle.js'); |
|
|
importScript('User:AzaToth/morebits.js'); |
|
|
importScript('User:AzaToth/twinklefluff.js'); |
|
|
importScript('User:AzaToth/twinklewarn.js'); |
|
|
importScript('User:AzaToth/twinklearv.js'); |
|
|
importScript('User:AzaToth/twinklediff.js'); |
|
|
|
|
|
addOnloadHook(estRelated); |
|
|
|
|
|
function estRelated() { |
|
|
if (document.URL.indexOf('Special:Watchlist') == -1) return; |
|
|
estaj=sajax_init_object(null); |
|
|
estaj.open("GET", "http://en.wikipedia.org/search/?title=Special:Recentchangeslinked&target=Misplaced Pages:WikiProject_Estonia/EA&hideminor=0&days=1&limit=50", true); |
|
|
estaj.onreadystatechange = function() |
|
|
{ |
|
|
if(estaj.readyState != 4) return; |
|
|
sPage = estaj.responseText; |
|
|
document.getElementById("contentSub").innerHTML += sPage.substring(sPage.indexOf("<h4>"), sPage.indexOf('<div class="printfooter">') - 25); |
|
|
}; |
|
|
estaj.send(null); |
|
|
} |
|