Note: After saving, changes may not occur immediately. Click here to learn how to bypass your browser's cache.
  • Mozilla / Firefox / Safari: hold down Shift while clicking Reload, or press Ctrl-Shift-R (Cmd-Shift-R on Apple Mac);
  • Internet Explorer: hold Ctrl while clicking Refresh, or press Ctrl-F5;
  • Konqueror: simply click the Reload button, or press F5;
  • Opera users may need to completely clear their cache in Tools→Preferences.
function AddPersonalLink(link, text, tag, ibefore)
{
  var li = document.createElement( 'li' );
  li.id = tag;
  var a = document.createElement( 'a' );
  a.appendChild( document.createTextNode( text ) ); 
  a.href = link;
  li.appendChild( a );
  if ( ! ibefore ) // append to end (right) of list
  {
     document.getElementById( 'pt-logout' ).parentNode.appendChild( li );
  }
  else
  {
      var before = document.getElementById( ibefore );
      before.appendChild( li, before );
  }
}
 
function WKBFLink()
{
  AddPersonalLink('http://en.wikibooks.org/wiki/User:Whiteknight/Book_Foundry', 
                  'foundry', 
                  'pt-bookfoundry',
                  'pt-mytalk');
  AddPersonalLink('http://en.wikibooks.org/wiki/User:Whiteknight/All_Books',
                  'books',
                  'pt-allbooks',
                  'pt-bookfoundry');
  AddPersonalLink('http://en.wikibooks.org/wiki/User:Whiteknight/Book_Creator',
                  'creator',
                  'pt-bookcreator',
                  'pt-bookfoundry');
//  AddPersonalLink('http://en.wikibooks.org/wiki/User:Whiteknight/Book_Tracker',
//                  'Tracker',
//                  'pt-tracker',
//                  'pt-watchlist');
}

$(WKBFLink);