User:Nicolapps/vector.js

From Team Fortress Wiki
< User:Nicolapps
Revision as of 23:15, 19 December 2014 by Nicolapps (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
// addLink() // Source : http://en.wikipedia.org/wiki/User:B/vector.js
function addLink(where, url, name, id, title, key, after){
    //* where is the id of the toolbar where the button should be added;
    //   i.e. one of "p-cactions", "p-personal", "p-navigation", or "p-tb".
    //
    //* url is the URL which will be called when the button is clicked.
    //   javascript: urls can be used to do more complex things.
    //
    //* name is what will appear as the name of the button.
    //
    //* id is the id of the button; it's best to define one.  
    //   Use a prefix to make sure its unique. Optional.
    //
    //* title is the tooltip title that gives a longer description 
    //   of the button; if you define a accesskey, mention it here. Optional.
    //
    //* key is the char you want for the accesskey. Optional.
    //
    //* after is the id of the button you want to follow this one. Optional.
    //
    var na = document.createElement('a');
    na.href = url;
    na.appendChild(document.createTextNode(name));
    var li = document.createElement('li');
    if(id) li.id = id;
    li.appendChild(na);
    var tabs = document.getElementById(where).getElementsByTagName('div')[0].getElementsByTagName('ul')[0];
 
    if(after) 
{
        tabs.insertBefore(li,document.getElementById(after));
    } else {
        tabs.appendChild(li);
    }
    return li;
}

// Missings translations (FR)
addLink('p-Navigation', 'https://wiki.teamfortress.com/wiki/Team_Fortress_Wiki:Reports/Missing_translations/fr', 'Missing translations', 'tfwikimsfr');

// [[User:Nicolapps/fr]]
addLink('p-Navigation', 'https://wiki.teamfortress.com/wiki/User:Nicolapps/fr', 'Nicolapps/fr', 'tfwikinsfr');


// Operation Cleanup (FR)
addLink('p-Navigation', 'https://wiki.teamfortress.com/wiki/User:TidB/Operation Cleanup/fr', 'Operation Cleanup', 'tfwikiocfr');

// Open IRC
addLink('p-Navigation', 'irc://irc.freenode.net/tfwiki', 'IRC', 'tfwikigirc');

// FR translation project
addLink('p-Navigation', 'https://wiki.teamfortress.com/wiki/Team_Fortress_Wiki:Translation_progress/fr', 'Projet', 'tfwikiprfr');

// FR broken links
addLink('p-Navigation', 'https://wiki.teamfortress.com/wiki/User:FreemBOT/Pages/fr', 'Liens externes', 'tfwikiblfr');

// FR recents changes
addLink('p-Navigation', 'https://wiki.teamfortress.com/wiki/Special:RecentChangesLinked/Project:Reports/All_articles/fr', 'Modifications récentes', 'tfwikircfr');

// Change editor text size
$('#wpTextbox1').css({"font-size":"200%"});