Re: LDAP/AD Persistent authentication

2010-03-02 Thread valhalla
Yeah Defiantly cant store the users password. I was thinking it might be possible with kerberos but had no idea where to start...any pointers? On Mar 3, 10:38 am, Eric Chamberlain wrote: > On Mar 1, 2010, at 8:05 PM, valhalla wrote: > > > Hi All, > > > I am looking for a

LDAP/AD Persistent authentication

2010-03-01 Thread valhalla
Hi All, I am looking for a relatively secure way to allow a logged in user (currently auth via ldap to AD) to use their AD credentials to search AD. I have plenty of code for how to search AD but no way that I can see of running that code as the user. Any ideas? -- You received this message be

Re: Best way to use django for sql with raw LIKE statement

2009-11-24 Thread valhalla
my brain around the requirement for such a lookup > yet, because I've never yet come across the need for any raw SQL to go > into my queries.  Apologies if this doesn't really address the type of > solution you need. > > Tim > > On Nov 24, 8:50 pm, valhalla wrote: >

Re: Best way to use django for sql with raw LIKE statement

2009-11-24 Thread valhalla
kup > yet, because I've never yet come across the need for any raw SQL to go > into my queries.  Apologies if this doesn't really address the type of > solution you need. > > Tim > > On Nov 24, 8:50 pm, valhalla wrote: > > > Hi, > > > I'm basicall

Best way to use django for sql with raw LIKE statement

2009-11-24 Thread valhalla
Hi, I'm basically looking for the best way to implement something that produces SQL similar to: select col1, col2 from table1 where col1 like '%this%is%some%search %string?with?wildcards' I have worked around this with using the extra() method of the query but this can get real messy real fast.

Re: FormWizard Passing Data between forms

2009-10-13 Thread valhalla
param with self.extra_param > > I don't know if is this what you are looking for... > > H.http://nomadblue.com/ > > On Oct 13, 5:53 am, valhalla wrote: > > > I am trying to figure out a pythonic way of passing data between the > > forms of a formwizard. > &g

FormWizard Passing Data between forms

2009-10-12 Thread valhalla
I am trying to figure out a pythonic way of passing data between the forms of a formwizard. I can do it with inital data but I need to access the data in the clean method of the form. The only ways I can get working are really messy and wont scale easily. Any suggestions out there? --~--~---