Well, I started a new project and extended the identity classes,
TG_User , TG_Group, and TG_Permission. After doing that, i changed the
app.cfg to use my new classes. Big was surprise seeing this error. When
i set the identity provider to default, the error vanquishes.
Here are my extended classes:
class Usr(TG_User):
matricula=UnicodeCol(length=20,notNone=True,alternateID=True)
#emailAdress
#userId
#password
#groups
#permissions
#displayName
class Grp(TG_Group):
criado=DateCol(default=datetime.now())
class Prm(TG_Permission):
criado=DateCol(default=datetime.now())
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---