Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
global login?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  19 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
sergio  
View profile  
 More options Feb 23 2006, 9:25 am
From: sergio <ser...@village-buzz.com>
Date: Thu, 23 Feb 2006 09:25:51 -0500
Local: Thurs, Feb 23 2006 9:25 am
Subject: global login?

the application i am currently writing in turbogears is part of a  
much larger family of sites..

in a perfect world, a user would log in to the main site, and then be  
logged in everywhere (through a session, maybe?)..

the main part of the site is not written in turbogears.. it is a php  
site..

there is also another part of the site that runs a wiki based on a  
product called "confluence.." this runs on java..

anyone have any idea if this perfect world is even nearly attainable?

thanks!

___
peace,
sergio
photographer, journalist, visionary
www.coffee-black.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Timothy Freund  
View profile  
 More options Feb 23 2006, 10:19 pm
From: Timothy Freund <t...@digital-achievement.com>
Date: Thu, 23 Feb 2006 21:19:36 -0600
Local: Thurs, Feb 23 2006 10:19 pm
Subject: Re: [TurboGears] global login?
You might want to look at Yale's CAS (Central Authentication Service).
I have integrated a Java and Ruby on Rails application using it, and
it's only a matter of time until I have to figure out how to get a
TurboGears application running with the same authentication.  It looks
like there are already some python solutions out there:

http://pythonpaste.org/module-paste.auth.cas.html

It looks like we could add CAS support to Identity just by implementing
a method called identity_from_cas in turbogears.identity.visitor

I'm willing to give that a shot, so someone correct me if I'm completely
off base... :-)

Tim

--
Timothy Freund
http://digital-achievement.com
http://edodyssey.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jeff Watkins  
View profile  
 More options Feb 24 2006, 6:27 am
From: Jeff Watkins <j...@newburyportion.com>
Date: Fri, 24 Feb 2006 06:27:21 -0500
Local: Fri, Feb 24 2006 6:27 am
Subject: Re: [TurboGears] Re: global login?

Actually the best way to implement this would be to write a  
CasIdentityProvider class and use that instead of  
SqlObjectIdentityProvider. Ultimately, it is the IdentityProvider  
classes that are responsible for determining who the request is from.

On 23 Feb, 2006, at 10:19 pm, Timothy Freund wrote:

> It looks like we could add CAS support to Identity just by  
> implementing
> a method called identity_from_cas in turbogears.identity.visitor

--
Jeff Watkins
http://newburyportion.com/

Getting an education was a bit like a communicable sexual disease. It  
made you unsuitable for a lot of jobs and then you had the urge to  
pass it on.
-- (Terry Pratchett, Hogfather)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Timothy Freund  
View profile  
 More options Feb 24 2006, 9:02 am
From: Timothy Freund <t...@digital-achievement.com>
Date: Fri, 24 Feb 2006 08:02:23 -0600
Local: Fri, Feb 24 2006 9:02 am
Subject: Re: [TurboGears] Re: global login?
Jeff Watkins wrote:

 > Actually the best way to implement this would be to write a
 > CasIdentityProvider class and use that instead of
 > SqlObjectIdentityProvider. Ultimately, it is the IdentityProvider
 > classes that are responsible for determining who the request is from.

Thanks for pointing me in the right direction -- I will be able to
really dig in and get that working over this weekend.

Tim

--
Timothy Freund
http://digital-achievement.com
http://edodyssey.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
sergio  
View profile  
 More options Feb 24 2006, 10:24 am
From: sergio <ser...@village-buzz.com>
Date: Fri, 24 Feb 2006 10:24:18 -0500
Local: Fri, Feb 24 2006 10:24 am
Subject: Re: [TurboGears] Re: global login?

On Feb 23, 2006, at 10:19 PM, Timothy Freund wrote:

> I'm willing to give that a shot, so someone correct me if I'm  
> completely
> off base... :-)

hi, tim!

thanks for the help..

unfortunately, i have decided that turbogears is not the tool for me  
on this project...

i was just running into too many stumbling blocks that i had to  
research how to solve, rather than just implement them quickly using  
other tools..

i have not given up on turbogears..

i have another personal project in the works right now that i will  
implement in turbogears...

but for a project that everyone wants to see results on every few  
minutes, i was just moving too slow..

___
peace,
sergio
photographer, journalist, visionary
www.coffee-black.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "global login? + LDAP" by Timothy Freund
Timothy Freund  
View profile  
 More options Feb 27 2006, 1:05 am
From: Timothy Freund <t...@digital-achievement.com>
Date: Mon, 27 Feb 2006 00:05:40 -0600
Local: Mon, Feb 27 2006 1:05 am
Subject: Re: [TurboGears] Re: global login? + LDAP
Here is a quick update on my IdentityProvider progress -- since Sergio
no longer immediately needs the CASIdentityProvider I started work on an
LdapIdentityProvider this weekend.  LDAP authentication is a little more
conventional compared to CAS, so I thought it would be a better place to
jump in and learn.  It is starting to take shape, but I have some rough
edges to smooth out before releasing the code into the wild.

I think that the LdapIdentityProvider will be a great resource for
people in corporate environments since most businesses big enough to
write internal applications have all of their users stored in a
directory of some sort (Active Directory, Sun One, OpenLDAP, etc).

The idea is to authenticate users against an LDAP directory and to pull
most of their basic user information (name, email, phone number and
more) from the directory as well.  There is still a tg_user table in the
database but it only contains an id and a username.  The table's primary
purpose is to provide referential integrity against the visit records
and other business objects.

I'd enjoy hearing any comments or criticism about the idea.

Thanks,

Tim

Timothy Freund wrote:
> Jeff Watkins wrote:
>  > Actually the best way to implement this would be to write a
>  > CasIdentityProvider class and use that instead of
>  > SqlObjectIdentityProvider. Ultimately, it is the IdentityProvider
>  > classes that are responsible for determining who the request is from.

> Thanks for pointing me in the right direction -- I will be able to
> really dig in and get that working over this weekend.

> Tim

--
Timothy Freund
http://digital-achievement.com
http://edodyssey.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
calebshay@gmail.com  
View profile  
 More options Feb 27 2006, 12:50 pm
From: "calebs...@gmail.com" <calebs...@gmail.com>
Date: Mon, 27 Feb 2006 09:50:38 -0800
Local: Mon, Feb 27 2006 12:50 pm
Subject: Re: global login? + LDAP
I'm actually in desperate need of this.  I'm currently building an
enterprise application on turbogears and the spec was just changed on
me a few days ago that it needs to be able to pull users and groups
from AD.  I was about to dive into implementing it myself, but if you
are already working on it, I'll put it on hold.  I'd be glad to provide
any help I can, either through code or just testing what you have and
supplying feedback.

Cheers,

Caleb Shay


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
isaac  
View profile  
 More options Feb 27 2006, 2:56 pm
From: isaac <nerk...@gmail.com>
Date: Mon, 27 Feb 2006 13:56:31 -0600
Local: Mon, Feb 27 2006 2:56 pm
Subject: Re: [TurboGears] Re: global login? + LDAP
Yes, this is very needed, and will make TG even more widely used. Go for it.

On 2/27/06, Timothy Freund <t...@digital-achievement.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Diwaker Gupta  
View profile  
 More options Feb 27 2006, 3:07 pm
From: "Diwaker Gupta" <diwaker.li...@gmail.com>
Date: Mon, 27 Feb 2006 12:07:06 -0800
Local: Mon, Feb 27 2006 3:07 pm
Subject: Re: [TurboGears] Re: global login? + LDAP
On 2/26/06, Timothy Freund <t...@digital-achievement.com> wrote:

+1. I think its a great idea, since I'll be needing such a provider
myself in a little while :-)

Diwaker
--
Web/Blog/Gallery: http://floatingsun.net/blog


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
derek@chargedmultimedia.c om  
View profile  
 More options Feb 28 2006, 12:44 am
From: "de...@chargedmultimedia.com" <de...@chargedmultimedia.com>
Date: Mon, 27 Feb 2006 21:44:01 -0800
Local: Tues, Feb 28 2006 12:44 am
Subject: Re: global login? + LDAP

Timothy Freund wrote:
> I think that the LdapIdentityProvider will be a great resource for
> people in corporate environments since most businesses big enough to
> write internal applications have all of their users stored in a
> directory of some sort (Active Directory, Sun One, OpenLDAP, etc).

! Strongly want this functionality. I am working on a TG based
administration tool, which would be much better if built in LDAP auth
was available. I was also (not looking forward to) considering
implementing this identity provider.
Thanks!

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Krys  
View profile  
 More options Feb 28 2006, 6:32 am
From: "Krys" <kryswil...@gmail.com>
Date: Tue, 28 Feb 2006 03:32:12 -0800
Local: Tues, Feb 28 2006 6:32 am
Subject: Re: global login? + LDAP
+1 me too to LDAP auth support.

Krys


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jeff Watkins  
View profile  
 More options Feb 28 2006, 6:33 am
From: Jeff Watkins <j...@newburyportion.com>
Date: Tue, 28 Feb 2006 06:33:09 -0500
Local: Tues, Feb 28 2006 6:33 am
Subject: Re: [TurboGears] Re: global login? + LDAP
Tim, if you need any help with this, don't hesitate to drop me a  
line. I don't have the time to personally write it, but I'll answer  
any questions you might have.

On 27 Feb, 2006, at 1:05 am, Timothy Freund wrote:

--
Jeff Watkins
http://newburyportion.com/

Getting an education was a bit like a communicable sexual disease. It  
made you unsuitable for a lot of jobs and then you had the urge to  
pass it on.
-- (Terry Pratchett, Hogfather)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Francis Lavoie  
View profile  
 More options Feb 28 2006, 6:35 am
From: "Francis Lavoie" <lav.fran...@gmail.com>
Date: Tue, 28 Feb 2006 06:35:22 -0500
Local: Tues, Feb 28 2006 6:35 am
Subject: Re: [TurboGears] Re: global login? + LDAP
2006/2/27, Timothy Freund <t...@digital-achievement.com>:

I have started learning turbogears a weeks ago when I was searching
something more similar to ruby on rails. I have a background in zope
and I must say that turbogears is amazing. I had started an
application in zope, but I think I will switch it to tg. Even if it's
still not in stable branch, the potential is astonishing.

LDAP would be a must to enterprise adoption. Often simple ldap support
make people perception of an application jump from normal to
professionnal.

I would inevitably use this for my own project , +1.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Timothy Freund  
View profile  
 More options Feb 28 2006, 9:30 am
From: Timothy Freund <t...@digital-achievement.com>
Date: Tue, 28 Feb 2006 08:30:14 -0600
Local: Tues, Feb 28 2006 9:30 am
Subject: Re: [TurboGears] Re: global login? + LDAP

I'll be working on this just a little bit today, and then I'll be full
time on it tonight.  I'll send out another update then.  I may end up
with a couple of questions, but so far the code has been easy to
understand -- thanks for making it easy to jump in to Identity, Jeff!

Thanks,

Tim

--
Timothy Freund
http://digital-achievement.com
http://edodyssey.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
smilechaser  
View profile  
 More options Feb 28 2006, 10:47 am
From: "smilechaser" <smilecha...@smilechaser.com>
Date: Tue, 28 Feb 2006 07:47:54 -0800
Local: Tues, Feb 28 2006 10:47 am
Subject: Re: global login? + LDAP
Sign me up for LDAP testing too. :)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lee McFadden  
View profile  
 More options Feb 28 2006, 12:29 pm
From: "Lee McFadden" <splee...@gmail.com>
Date: Tue, 28 Feb 2006 17:29:12 +0000
Local: Tues, Feb 28 2006 12:29 pm
Subject: Re: [TurboGears] Re: global login? + LDAP
And me :)

On 2/28/06, smilechaser <smilecha...@smilechaser.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
qhartman@gmail.com  
View profile  
 More options Feb 28 2006, 11:15 pm
From: "qhart...@gmail.com" <qhart...@gmail.com>
Date: Wed, 01 Mar 2006 04:15:10 -0000
Local: Tues, Feb 28 2006 11:15 pm
Subject: Re: global login? + LDAP
Yet another "me too" of needing this... Go Tim!

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Timothy Freund  
View profile  
 More options Mar 1 2006, 2:32 am
From: Timothy Freund <t...@digital-achievement.com>
Date: Wed, 01 Mar 2006 01:32:19 -0600
Local: Wed, Mar 1 2006 2:32 am
Subject: Re: [TurboGears] Re: global login? + LDAP
It's still rough.... test and patch!  I've only tested against OpenLDAP,
and groups and permissions are still handled in the database.  I want to
get the groups pulled from the directory as well as test against some
other LDAP directory vendors among other things.

http://trac.turbogears.org/turbogears/ticket/634

Let me know what the major pain points are.  I'll be back at it
Wednesday night once I'm done with my pesky day job.

Thanks!

Tim

qhart...@gmail.com wrote:
> Yet another "me too" of needing this... Go Tim!

--
Timothy Freund
http://digital-achievement.com
http://edodyssey.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jorge Vargas  
View profile  
 More options Mar 3 2006, 10:32 am
From: "Jorge Vargas" <jorge.var...@gmail.com>
Date: Fri, 3 Mar 2006 11:32:03 -0400
Local: Fri, Mar 3 2006 10:32 am
Subject: Re: [TurboGears] Re: global login? + LDAP

really nice i'll give it a try

On 3/1/06, Timothy Freund <t...@digital-achievement.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »