On 25 juil, 11:38, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:
>
> That doesn't matter. I did do visit-tracking (essentiall *not*, or only
> in-process-based) and authentication without any DB, just with backend
> systems available.
>
> All you need to do is to write your own identity-provider. It doesn't
> matter where it takes it's information from - send pigeons if you like.
I am trying to do that, but I can't find anywhere a list of what
method is used from the outside, and when (I'm basing mine from
saprovider) in order to know what I need to keep as is, and what to
adapt...
On a side note, I found what caused the error in my first message:
HTTPRedirect!!!
------
class Root(controllers.RootController):
omc = omc()
@expose(template="genshi:laurent.templates.index")
# @omcidentity.require(omcidentity.not_anonymous())
def index(self):
#raise HTTPRedirect("/login")
import time
return dict(now=time.ctime())
------
If I uncomment the raise, index gives me the error, while it works
perfectly otherwise...
I find this a bit frightening...
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---