On Jan 14, 2008, at 6:31 PM, rssh wrote:
also note, that com.xpn.xwiki.api.Context has no get() method.
I see one;
public java.lang.Object get(String key)
{
if (hasProgrammingRights()) {
return getXWikiContext().get(key);
} else {
return null;
}
}
-Vincent