After finding and reading How do I audit my reputation? I thought it would be a good idea to write some JavaScript that makes the response from http://stackoverflow.com/reputation a little bit more readable and useful.
Here's what I came up with for Opera's UserJS:
// ==UserScript==
// @include http://*stackoverflow.com/reputation
// ==/UserScript==
// add useful info to the reputation output
window.opera.addEventListener("AfterEvent.DOMContentLoaded",
function(e)
{
var html, pre, host;
if (e.event.eventPhase != Event.CAPTURING_PHASE) return;
pre = e.event.target.getElementsByTagName("pre")[0];
html = pre.innerHTML;
host = e.event.target.location.host;
// link the question/post id
html = html.replace(/(\d{5,})/g, "<a href=\"http://" + host + "/questions/$1\">$1</a>");
// explain the various status codes
html = html.replace(/^(\s*1\s+.*$)/gm, "$1 accepted answer (to or from you)");
html = html.replace(/^(\s*2\s+.*$)/gm, "$1 upvote (to you)");
html = html.replace(/^(\s*3\s+.*$)/gm, "$1 downvote (to or from you)");
html = html.replace(/^(\s*4\s+.*$)/gm, "$1 penalty for post flagged as offensive");
html = html.replace(/^(\s*8\s+.*$)/gm, "$1 bounty grant (from you)");
html = html.replace(/^(\s*9\s+.*$)/gm, "$1 bounty award (to you)");
html = html.replace(/^(\s*12\s+.*$)/gm, "$1 penalty for post flagged as spam");
// append further links to reputations
e.event.target.body.innerHTML +=
"<hr>more reputation:<br>" +
"<a href=\"http://stackoverflow.com/reputation\">http://stackoverflow.com/reputation</a><br>" +
"<a href=\"http://cooking.stackexchange.com/reputation\">http://cooking.stackexchange.com/reputation</a><br>" +
"<a href=\"http://serverfault.com/reputation\">http://serverfault.com/reputation</a><br>" +
"<a href=\"http://gaming.stackexchange.com/reputation\">http://gaming.stackexchange.com/reputation</a><br>" +
"<a href=\"http://superuser.com/reputation\">http://superuser.com/reputation</a><br>" +
"<a href=\"http://meta.stackoverflow.com/reputation\">http://meta.stackoverflow.com/reputation</a><br>";
pre.innerHTML = html;
}, false);
Could anyone convert this to other browsers in case they support some client-side JavaScript?
I assume this is more of a wiki-entry than a question, but I can't create a wiki-question.
/(\d{5,})/g, which will match any number in the page that has 5 or more digits. Newer SE sites have post ids starting with 1, and 10k users have reputation more than 5 digits. – Yi Jiang Jan 16 '11 at 2:02