[Zope] Referencing authenticated user

2007-01-30 Thread Sinang, Danny
Hello, I need to modify a Zope product to record the authenticated user executing a method. How do I refer to the authenticated user ? Regards, Danny ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross

Re: [Zope] Referencing authenticated user

2007-01-30 Thread Maciej Wisniowski
I need to modify a Zope product to record the authenticated user executing a method. How do I refer to the authenticated user ? You may try: self.REQUEST.AUTHENTICATED_USER -- Maciej Wisniowski ___ Zope maillist - Zope@zope.org

Re: [Zope] Referencing authenticated user

2007-01-30 Thread Andreas Jung
--On 30. Januar 2007 21:52:52 +0100 Maciej Wisniowski [EMAIL PROTECTED] wrote: I need to modify a Zope product to record the authenticated user executing a method. How do I refer to the authenticated user ? You may try: self.REQUEST.AUTHENTICATED_USER nah...don't do that. Use from