Misplaced Pages

User:Animum/headers.js: Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
< User:Animum Browse history interactively← Previous editNext edit →Content deleted Content added
Revision as of 00:04, 22 February 2008 view sourceAnimum (talk | contribs)30,489 editsm Undid revision 193156016 by Animum (talk)← Previous edit Revision as of 02:31, 28 June 2008 view source Animum (talk | contribs)30,489 editsm compatibilityNext edit →
Line 2: Line 2:
addPortletLink('p-personal', 'http://tools.wikimedia.de/~interiot/cgi-bin/Tool1/wannabe_kate', addPortletLink('p-personal', 'http://tools.wikimedia.de/~interiot/cgi-bin/Tool1/wannabe_kate',
'wannabe kate', 'pt-wannabe kate', 'wannabe kate', null, document.getElementById('pt-preferences')); 'wannabe kate', 'pt-wannabe kate', 'wannabe kate', null, document.getElementById('pt-preferences'));
addPortletLink('p-personal', 'http://en.wikipedia.org/search/?title=Special:Log&user=Animum', addPortletLink('p-personal', 'http://en.wikipedia.org/search/?title=Special:Log&user=' + encodeURIComponent(wgUserName),
'logs', 'pt-mylogs', 'logs', null, document.getElementById('pt-watchlist')); 'logs', 'pt-mylogs', 'logs', null, document.getElementById('pt-watchlist'));
addPortletLink('p-personal', wgArticlePath.replace(/\$1/, 'Misplaced Pages:Administrator intervention against vandalism'), addPortletLink('p-personal', wgArticlePath.replace(/\$1/, 'Misplaced Pages:Administrator intervention against vandalism'),
'AIV', 'pt-AIV', 'AIV', null, document.getElementById('pt-preferences')); 'AIV', 'pt-AIV', 'AIV', null, document.getElementById('pt-preferences'));
addPortletLink('p-personal', wgArticlePath.replace(/\$1/, 'User:Animum/monobook.js'), addPortletLink('p-personal', wgArticlePath.replace(/\$1/, 'User:' + encodeURIComponent(wgUserName) + '/monobook.js'),
'monobook', 'pt-monobook', 'monobook', null, document.getElementById('pt-preferences')); 'monobook', 'pt-monobook', 'monobook', null, document.getElementById('pt-preferences'));
}); });

Revision as of 02:31, 28 June 2008

addOnloadHook(function () {
    addPortletLink('p-personal', 'http://tools.wikimedia.de/~interiot/cgi-bin/Tool1/wannabe_kate',
        'wannabe kate', 'pt-wannabe kate', 'wannabe kate', null, document.getElementById('pt-preferences'));
    addPortletLink('p-personal', 'http://en.wikipedia.org/search/?title=Special:Log&user=' + encodeURIComponent(wgUserName),
        'logs', 'pt-mylogs', 'logs', null, document.getElementById('pt-watchlist'));
    addPortletLink('p-personal', wgArticlePath.replace(/\$1/, 'Misplaced Pages:Administrator intervention against vandalism'),
        'AIV', 'pt-AIV', 'AIV', null, document.getElementById('pt-preferences'));
    addPortletLink('p-personal', wgArticlePath.replace(/\$1/, 'User:' + encodeURIComponent(wgUserName) + '/monobook.js'),
        'monobook', 'pt-monobook', 'monobook', null, document.getElementById('pt-preferences'));
});