Randall
Any suggestions from the TG community?
--
Jeff Watkins
http://newburyportion.com/
Not really a hook, but should get the job done.
Randall
On 9 Mar, 2006, at 11:22 pm, Jorge Vargas wrote:
> how about a method in identity class that executes at the end, the
> equivalent of a html onclick event + javascript call (in concept of
> course)
--
Jeff Watkins
http://newburyportion.com/
field to identity.SecureResource and went you subclass it(to make your secured pages) you will say something like
class Toxicologia(controller.Controller , identity.SecureResource):
required_permissions= ["write"]
required_groups = ["admin"]
allowed_hosts = ["127.0.0.1"]
identity_required = True
onLogin=self.myMethod
then declare it.
then inside the Identity framework after the validation is done check for onLogin method which of course will be declared as empty.
that makes sence?