IRC Log for #openid on 2007-01-03
Timestamps are in UTC.
- [00:27:37] * chowells79 (n=chowells@67.137.230.66) Quit (Remote closed the connection)
- [01:10:20] * PatF (n=Patrick@c-67-177-32-91.hsd1.ut.comcast.net) Quit (Read error: 110 (Connection timed out))
- [01:17:10] * chowells79 (n=chowells@ns1.janrain.com) has joined #openid
- [01:17:10] <jibot>
chowells79 is yet another Janrain idler.
- [01:18:39] <sanedragon>
?forget chowells79 is yet another Janrain idler.
- [01:18:40] <jibot>
I no longer know anything about chowells79
- [01:18:48] <sanedragon>
even though he is... ;)
- [01:37:20] * Skwid_ (n=Skwid___@ip216-239-75-74.vif.net) Quit ("Quitte")
- [01:38:28] * hober (n=ted@unaffiliated/hober) Quit (Read error: 113 (No route to host))
- [01:56:40] * Skwid_ (n=Skwid___@ip216-239-75-74.vif.net) has joined #openid
- [02:14:17] * SamRose (n=chatzill@brick.voyager.net) Quit ("Chatzilla 0.9.77 [Firefox 1.5.0.9/0000000000]")
- [04:34:15] * Skwid_ (n=Skwid___@ip216-239-75-74.vif.net) Quit ("Quitte")
- [05:47:08] * ruchith (n=ruchith@222.165.178.82) has joined #openid
- [08:00:43] * ruchith (n=ruchith@222.165.178.82) Quit (Remote closed the connection)
- [08:54:55] * Almad (n=almad@nerv.include.cz) has joined #openid
- [08:57:14] <Almad>
Hello, I'd like to ask if tehre is any documentation, howtos/tips/tricks/whatever on running openid server. As far as I browsed through openid and openidenabled, there are only docs for consumers. I can read it from libraries, but even so I'd appreciate if there is some doc describing possible issues of running own server...?
- [11:52:18] * nicolast (n=nicolast@111.202-244-81.adsl-dyn.isp.belgacom.be) has joined #openid
- [11:54:04] <nicolast>
for anyone interested: I just made my Python/Django-based OpenID server/provider implementation public: http://svn.nicolast.be/djangoid/
- [11:54:21] <nicolast>
patches/comments/... appreciated in my mailbox, I'll setup a trac instance later
- [12:25:50] * peace-keeper (n=peace-ke@APuteaux-153-1-65-228.w82-124.abo.wanadoo.fr) has joined #openid
- [12:27:22] <peace-keeper>
hi is openid designed to work for identification in applications? e.g. instant messengers
- [12:43:25] <peace-keeper>
the internet is for porn!
- [12:43:52] * peace-keeper (n=peace-ke@APuteaux-153-1-65-228.w82-124.abo.wanadoo.fr) Quit ()
- [16:00:03] * hikari_esblogger (n=hikari_e@host86-128-249-5.range86-128.btcentralplus.com) has joined #openid
- [16:23:11] * SamRose (n=chatzill@brick.voyager.net) has joined #openid
- [16:49:16] * peace-keeper (n=peace-ke@APuteaux-153-1-65-164.w82-124.abo.wanadoo.fr) has joined #openid
- [17:07:27] * peace-keeper (n=peace-ke@APuteaux-153-1-65-164.w82-124.abo.wanadoo.fr) Quit ()
- [17:13:33] * hikari_esblogger (n=hikari_e@host86-128-249-5.range86-128.btcentralplus.com) Quit (Read error: 101 (Network is unreachable))
- [17:58:43] * PatF (i=Patrick@nat/novell/x-bec791305bedd90a) has joined #openid
- [18:11:18] * hober (n=ted@unaffiliated/hober) has joined #openid
- [19:07:23] * Almad|AFK (n=almad@nerv.include.cz) has joined #openid
- [19:11:06] * newtMcKerr (n=newtMcKe@osuosl/staff/newtMcKerr) has joined #openid
- [19:11:40] * Almad|AFK (n=almad@nerv.include.cz) Quit (Remote closed the connection)
- [19:13:27] * brianellin (n=brianell@c-71-236-228-127.hsd1.or.comcast.net) has joined #openid
- [19:15:46] <cygnus>
nicolast: this may be a little late, but I recommend subclassing SQLStore rather than rewriting it, chiefly because there's a lot of logic there. Subclassing it isn't obvious because of the way it's written, but you can override all of the SQL functionality and call Django's ORM instead.
- [19:20:49] <cygnus>
nicolast: another option (my preferred one) is to use this technique: http://svn.zyons.python-hosting.com/trunk/zilbo/common/openid/utils.py
- [19:21:16] <cygnus>
nicolast: then you can remove those models and your store code and completely forget about the store implementation
- [19:24:35] <cygnus>
nicolast: (which will be good once you upgrade to the next release of the python library, since its store implementation be different)
- [19:26:05] <nicolast>
cygnus: I saw the zyons thing, but dislike using the django DB connection directly
- [19:27:53] * Almad (n=almad@nerv.include.cz) Quit (Read error: 110 (Connection timed out))
- [19:38:51] <cygnus>
nicolast: IMHO it's much cleaner than creating another store implementation since it's more maintainable. But, the compromise is still to subclass SQLStore. (The store works by calling getattr() on special attribute names, which you can define as methods rather than as SQL attributes.)
- [19:40:16] <nicolast>
yeah, I saw the implementation... I might want to use it more indeed
- [19:42:47] <nicolast>
obviously patches are welcome too :p I just got a trac (with openid auth) setup, http://trac.nicolast.be/djangoid
- [19:45:50] <cygnus>
nicolast: great!
- [19:45:59] <cygnus>
nicolast: are you using the OpenID plugin from trac-hacks.org?
- [19:46:04] <nicolast>
yeah
- [19:46:07] <cygnus>
cool :)
- [19:46:10] * cygnus now maintains that
- [19:46:14] <nicolast>
saw that ;)
- [19:46:27] * cygnus (n=cygnus@c-71-236-228-127.hsd1.or.comcast.net) Quit (Remote closed the connection)
- [19:46:43] * cygnus (n=cygnus@c-71-236-228-127.hsd1.or.comcast.net) has joined #openid
- [19:47:04] <cygnus>
whee
- [19:47:10] <cygnus>
emacs ... crashed.
- [19:47:13] <cygnus>
when does that happen?
- [19:47:15] <cygnus>
never.
- [19:47:18] <nicolast>
I wonder: I removed wiki edit access from anonymous users. will logged in users be able to edit it? (cant test myself, as im trac_admin)
- [19:47:34] <nicolast>
you irc inside emacs? geeky...
- [19:47:40] <sanedragon>
cygnus, when you're running the emacs irc client?
- [19:47:41] <cygnus>
nicolast: no
- [19:47:58] <cygnus>
nicolast: unless anon has a permission or a user explicitly has it, I don't think it will be permitted...
- [19:48:06] <cygnus>
nicolast: but, I can log in and check :)
- [19:48:13] <cygnus>
sanedragon: yeah
- [19:48:29] <nicolast>
yes please :) otherwise I got to figure out how to set perms for authenticated unknown users
- [19:48:33] <cygnus>
sanedragon: emacs *never* crashes. But I moused over a few nicks for no reason, and emacs went away.
- [19:48:37] <cygnus>
nicolast: URL?
- [19:48:57] <nicolast>
ah, you crashed :p http://trac.nicolast.be/djangoid
- [19:49:29] <cygnus>
nicolast: ok, I'm in. no edit perms.
- [19:52:50] <nicolast>
could you refresh?
- [19:53:03] <nicolast>
looks like there's an "authenticated" group
- [19:55:19] <cygnus>
ok, now I can create tickets and also edit wiki pages.
- [19:55:27] <nicolast>
cool :)
- [20:00:19] * nicolast_ (n=nicolast@67.207-244-81.adsl-dyn.isp.belgacom.be) has joined #openid
- [20:00:54] * _keturn sends a suggestion to use OpenID to the guy behind Combat Cards.
- [20:02:31] <cygnus>
nicolast: have you told Simon Willison about your project yet?
- [20:02:40] <cygnus>
nicolast: if not, I imagine he'd be pretty interested in it
- [20:02:44] <nicolast_>
commentrd on his blog
- [20:02:47] <cygnus>
ok, cool
- [20:08:51] * nicolast (n=nicolast@111.202-244-81.adsl-dyn.isp.belgacom.be) Quit (Read error: 60 (Operation timed out))
- [20:08:59] * nicolast_ is now known as nicolast
- [21:18:11] * PatF (i=Patrick@nat/novell/x-bec791305bedd90a) Quit (Read error: 110 (Connection timed out))
- [21:47:33] * SamRose (n=chatzill@brick.voyager.net) Quit ("Chatzilla 0.9.77 [Firefox 1.5.0.9/0000000000]")
- [21:48:16] <don-o>
is it possible to use the URL that was redirected from a successful auth on an identity server
- [21:48:30] <don-o>
as a mock object in a test for an openid client?
- [21:49:40] <don-o>
hmm. maybe not since the client will want to validate the nonce/etc that came from the browser.
- [21:49:54] * cygnus nods, the RP will want to verify the server's nonce
- [21:50:42] <don-o>
well im screwed then. :)
- [21:50:52] * don-o tries to refactor instead
- [21:51:52] * hikari_esblogger (n=hikari_e@host86-128-240-59.range86-128.btcentralplus.com) has joined #openid
- [22:24:33] * newtMcKerr (n=newtMcKe@osuosl/staff/newtMcKerr) Quit (Read error: 60 (Operation timed out))
- [22:34:13] * PatF (i=Patrick@nat/novell/x-7ab9d2a2aad7ec13) has joined #openid
- [22:42:33] * hikari_esblogger (n=hikari_e@host86-128-240-59.range86-128.btcentralplus.com) Quit (Remote closed the connection)
- [22:43:09] * Skwid_ (n=Skwid___@bas1-montreal42-1242353202.dsl.bell.ca) has joined #openid
- [23:02:00] * nicolast (n=nicolast@67.207-244-81.adsl-dyn.isp.belgacom.be) Quit ("leaving")
- [23:52:01] * Skwid__ (n=Skwid___@bas1-montreal42-1242353202.dsl.bell.ca) has joined #openid
These logs were automatically created by OpenIDlogbot on
chat.freenode.net
using a modified version of the Java IRC LogBot.