Hi,
On 4 January 2011 12:29, Davorin Rusevljan <davorin.rusevljan(a)gmail.com>wrote;wrote:
On Tue, Jan 4, 2011 at 12:44 PM, Nick Ager
<nick.ager(a)gmail.com> wrote:
Hi Davorin,
For my site I've derived from both PRPierFrame and PRContentsWidget. Both
would be suitable locations if you want your openId identity to appear
throughout the site; derive your own version and override #updateRoot:
If you only want your openId to appear on say the home screen. You could
embed a component on that screen that overrides #updateRoot: and adds
your
openId info.
In both cases your #updateRoot: would be something like (not tested):
updateRoot: aHtmlRoot
super updateRoot: aHtmlRoot.
aHtmlRoot link
relationship: 'openid.server';
url: 'http://www.myopenid.com/server'.
aHtmlRoot link
relationship: 'openid.delegate';
url: 'http://codinghorror.myopenid.com/'.
Hope this helps
Nick
I was hoping I could get away without programming pier, but many thanks :)