Re: [Zope] Getting a specific user role

2000-06-09 Thread Jason Spisak

Mabe, Brad writes:

> That did the trick.  Someday I'm going to get the hang of this stuff.
> 

I have the hang of some stuff but get hung by the rest ;)

> Thanks, Jason.
> 
>-=Brad=-
> 
> -Original Message-
> From: Jason Spisak
> To: Mabe, Brad
> Cc: '[EMAIL PROTECTED]'
> Sent: 6/8/00 7:48 PM
> Subject: Re: [Zope] Getting a specific user role
> 
> Mabe, Brad writes:
> 
> > Forgive me if this has been covered before.
> 
> There's no real great documentation on using the security API, and it's
> changing a bit anyway.
> 
> > 
> > I am implementing a login/security scheme through the use of GUF and
> SQL
> > methods.  My user and role information is kept in a SQL database and a
> user
> > can have more than one role assigned to him/her.
> > 
> > What I would like to do is check if a specific role has been assigned
> to the
> > current user, and then display some additional menu items if that role
> has
> > been assigned.  I haven't been able to figure out how to get and check
> the
> > roles that have been assigned to the current user.
> > 
> > As usual, any help will be greatly appreciated.
> > 
> >  -=Brad=-
> 
> try:
> 
> 
> My stuff
> 
> 
> Jason Spisak
> CIO
> HireTechs.com
> 6151 West Century Boulevard
> Suite 900
> Los Angeles, CA 90045
> P. 310.665.3444
> F. 310.665.3544
> 
> Under US Code Title 47, Sec.227(b)(1)(C), Sec.227(a)(2)(B) This email
> address may not be added to any commercial mail list with out my
> permission.  Violation of my privacy with advertising or SPAM will
> result in a suit for a MINIMUM of $500 damages/incident, $1500 for
> repeats.
> 
> ___
> Zope maillist  -  [EMAIL PROTECTED]
> http://lists.zope.org/mailman/listinfo/zope
> **   No cross posts or HTML encoding!  **
> (Related lists - 
>  http://lists.zope.org/mailman/listinfo/zope-announce
>  http://lists.zope.org/mailman/listinfo/zope-dev )
> 
> 


Jason Spisak
CIO
HireTechs.com
6151 West Century Boulevard
Suite 900
Los Angeles, CA 90045
P. 310.665.3444
F. 310.665.3544

Under US Code Title 47, Sec.227(b)(1)(C), Sec.227(a)(2)(B) This email
address may not be added to any commercial mail list with out my
permission.  Violation of my privacy with advertising or SPAM will
result in a suit for a MINIMUM of $500 damages/incident, $1500 for
repeats.

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




RE: [Zope] Getting a specific user role

2000-06-09 Thread Mabe, Brad

That did the trick.  Someday I'm going to get the hang of this stuff.

Thanks, Jason.

   -=Brad=-

-Original Message-
From: Jason Spisak
To: Mabe, Brad
Cc: '[EMAIL PROTECTED]'
Sent: 6/8/00 7:48 PM
Subject: Re: [Zope] Getting a specific user role

Mabe, Brad writes:

> Forgive me if this has been covered before.

There's no real great documentation on using the security API, and it's
changing a bit anyway.

> 
> I am implementing a login/security scheme through the use of GUF and
SQL
> methods.  My user and role information is kept in a SQL database and a
user
> can have more than one role assigned to him/her.
> 
> What I would like to do is check if a specific role has been assigned
to the
> current user, and then display some additional menu items if that role
has
> been assigned.  I haven't been able to figure out how to get and check
the
> roles that have been assigned to the current user.
> 
> As usual, any help will be greatly appreciated.
> 
>  -=Brad=-

try:


My stuff


Jason Spisak
CIO
HireTechs.com
6151 West Century Boulevard
Suite 900
Los Angeles, CA 90045
P. 310.665.3444
F. 310.665.3544

Under US Code Title 47, Sec.227(b)(1)(C), Sec.227(a)(2)(B) This email
address may not be added to any commercial mail list with out my
permission.  Violation of my privacy with advertising or SPAM will
result in a suit for a MINIMUM of $500 damages/incident, $1500 for
repeats.

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Getting a specific user role

2000-06-08 Thread Stuart 'Zen' Bishop

On Thu, 8 Jun 2000, Mabe, Brad wrote:

> Forgive me if this has been covered before.
> 
> I am implementing a login/security scheme through the use of GUF and SQL
> methods.  My user and role information is kept in a SQL database and a user
> can have more than one role assigned to him/her.
> 
> What I would like to do is check if a specific role has been assigned to the
> current user, and then display some additional menu items if that role has
> been assigned.  I haven't been able to figure out how to get and check the
> roles that have been assigned to the current user.
> 
> As usual, any help will be greatly appreciated.

(untested)


User has the myrole role


getRoles is also there if you don't want to check for local roles.

-- 
Stuart Bishop  Work: [EMAIL PROTECTED]
Senior Systems Alchemist   Play: [EMAIL PROTECTED]
Computer Science, RMIT University


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Getting a specific user role

2000-06-08 Thread Jason Spisak

Mabe, Brad writes:

> Forgive me if this has been covered before.

There's no real great documentation on using the security API, and it's
changing a bit anyway.

> 
> I am implementing a login/security scheme through the use of GUF and SQL
> methods.  My user and role information is kept in a SQL database and a user
> can have more than one role assigned to him/her.
> 
> What I would like to do is check if a specific role has been assigned to the
> current user, and then display some additional menu items if that role has
> been assigned.  I haven't been able to figure out how to get and check the
> roles that have been assigned to the current user.
> 
> As usual, any help will be greatly appreciated.
> 
>  -=Brad=-

try:


My stuff


Jason Spisak
CIO
HireTechs.com
6151 West Century Boulevard
Suite 900
Los Angeles, CA 90045
P. 310.665.3444
F. 310.665.3544

Under US Code Title 47, Sec.227(b)(1)(C), Sec.227(a)(2)(B) This email
address may not be added to any commercial mail list with out my
permission.  Violation of my privacy with advertising or SPAM will
result in a suit for a MINIMUM of $500 damages/incident, $1500 for
repeats.

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Getting a specific user role

2000-06-08 Thread Mabe, Brad

Forgive me if this has been covered before.

I am implementing a login/security scheme through the use of GUF and SQL
methods.  My user and role information is kept in a SQL database and a user
can have more than one role assigned to him/her.

What I would like to do is check if a specific role has been assigned to the
current user, and then display some additional menu items if that role has
been assigned.  I haven't been able to figure out how to get and check the
roles that have been assigned to the current user.

As usual, any help will be greatly appreciated.

 -=Brad=-


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )