On Wed, Mar 11, 2009 at 03:47, valerie <[email protected]> wrote:
> On my User page, I have links to all my projects at the top of the
> page - newest, most active first. Not very pretty for anyone wanting
> to know more about me, but it is a huge help to me. My User page is my
> most personal space in WE. I claim this for my personal use.

Don't overlook the fact that WikiEducator (and the underlying
MediaWiki software) is *extremely* customizeable for your personal
preferences.  In particular, WikiEducator is run with user custom
JavaScript enabled.  You can add a /User:YourUserNameHere/monobook.js
page (presuming you are using the default MonoBook style) that will be
available on every page view.

So... If you just want a quick link to your list of projects, you
could add another tab to the top of each page near the watch/unwatch
tab by making your monobook.js look like:

function runOnloadHook() {
  var watchtab = document.getElementById("ca-watch") ||
document.getElementById("ca-unwatch");
  if (watchtab) {
    var projecttab = document.createElement('li');
    projecttab.setAttribute('id', 'jtproject');
    projecttab.innerHTML = '<a
href="/User:'+wgUserName+'/Projects">Projects</a>';
    watchtab.parentNode.insertBefore(projecttab, null);
  }
}

Save that, do a shift-refresh so your browser fetches a fresh copy,
and you will have a quick link to a User:YourUserNameHere/Projects
page in the tab bar of every page you visit while logged in to
WikiEducator.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "WikiEducator" group.
To visit wikieducator: http://www.wikieducator.org
To visit the discussion forum: http://groups.google.com/group/wikieducator
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
-~----------~----~----~----~------~----~------~--~---

Reply via email to