Redone the notifications to work with the new Request model.
Note that it might be necessary to introduce a templatetag that translates a internal role_name to a real verbose name. However this will do fine for now.
/** @constructor */
function Foo() {
var bar = 1;
bar = 2; // redefining a private
this.baz = 1;
baz = 2; // global
/** a private */
var blap = {
/** in here */
tada: 1
}
}