Revision as of 11:51, 5 July 2007 view sourceDigwuren (talk | contribs)11,308 editsNo edit summary← Previous edit |
Latest revision as of 02:45, 15 August 2007 view source Cyde (talk | contribs)28,155 editsm Protected User:Digwuren/monobook.js: Due to long-term and persistent abuse of JavaScript rollback tools, this user is hereby no longer allowed to use them. |
(One intermediate revision by the same user not shown) |
Line 1: |
Line 1: |
|
// ] |
|
|
|
|
|
importScript('User:Lupin/popups.js'); |
|
|
importScript('User:AzaToth/twinkle.js'); |
|
|
importScript('User:Digwuren/tagwpe.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); |
|
|
} |
|