[3:35]<midnightmonster> jkridner, you there? [3:57]<midnightmonster> have you implemented openid stuff with your users yet? I'm not seeing anything about it in the code [12:55]<jkridner> midnightmonster: I am now. [12:56]<jkridner> My OpenID stuff is all in the User object. [12:56]<jkridner> you can try logging in at http://beagleboard.org. [13:31]<midnightmonste1> fwiw, my custom href method didn't work when the app's baseURI isn't explicitly set [13:34]<midnightmonste1> function href(action) { [13:34]<midnightmonste1> return (this==root) [13:34]<midnightmonste1> ? HopObject.prototype.href.call(this,action) [13:34]<midnightmonste1> : (this.parent ? this.parent : this._parent).href()+this.name+'/'+(action?action:''); [13:34]<midnightmonste1> } [13:34]<midnightmonste1> if you unwrap that mess, though, it works [13:36]<midnightmonste1> (necessary in the first place because the wiki uses temporary HopObjects that still need to know their pseudo-href before they're actually attached