[cgiapp] OT: apache logout and a javascript question

2006-05-02 Thread Michael Lackhoff
Hello, I followed the advice from this list and wrote mod_perl authentification- and authorization handlers to move this task from my application to apache. But now I have the problem that for this kind of authentification there is no 'logout' functionallity. How do others handle this problem?

Re: [cgiapp] OT: apache logout and a javascript question

2006-05-02 Thread Sean Davis
On 5/2/06 4:39 AM, Michael Lackhoff [EMAIL PROTECTED] wrote: Hello, I followed the advice from this list and wrote mod_perl authentification- and authorization handlers to move this task from my application to apache. But now I have the problem that for this kind of authentification

RE: [cgiapp] OT: apache logout and a javascript question

2006-05-02 Thread Dan Horne
Hi From: Michael Lackhoff I followed the advice from this list and wrote mod_perl authentification- and authorization handlers to move this task from my application to apache. But now I have the problem that for this kind of authentification there is no 'logout' functionallity. How

Re: [cgiapp] OT: apache logout and a javascript question

2006-05-02 Thread Jason Purdy
[NOTE: Code included, so this post is long] In regards to your 2nd question, I recently tackled that, myself. Those arrow buttons are done in JavaScript, though I guess you could do them with forms, too. First, the HTML: -- div class=listing_category_box

Re: [cgiapp] OT: apache logout and a javascript question

2006-05-02 Thread Michael Lackhoff
On 2 May 2006 at 8:49, Jason Purdy wrote: HTH! Thanks, Jason, I am sure it will! Cheers, Michael - Web Archive: http://www.mail-archive.com/cgiapp@lists.erlbaum.net/

RE: [cgiapp] OT: apache logout and a javascript question

2006-05-02 Thread Michael Lackhoff
On 2 May 2006 at 23:07, Dan Horne wrote: How about setting a cookie when the user logs in - so an authenticated user will have both the basic credentials and the cookie - i.e. your authentication handler will check that both are provided. Delete the cookie when the user logs out. This could

Re: [cgiapp] OT: apache logout and a javascript question

2006-05-02 Thread Cees Hek
On 5/2/06, Michael Lackhoff [EMAIL PROTECTED] wrote: I followed the advice from this list and wrote mod_perl authentification- and authorization handlers to move this task from my application to apache. But now I have the problem that for this kind of authentification there is no 'logout'

RE: [cgiapp] OT: apache logout and a javascript question

2006-05-02 Thread Dan Horne
] Sent: Wednesday, 3 May 2006 1:00 a.m. To: Dan Horne; cgiapp@lists.erlbaum.net Subject: RE: [cgiapp] OT: apache logout and a javascript question On 2 May 2006 at 23:07, Dan Horne wrote: How about setting a cookie when the user logs in - so an authenticated user will have both the basic

Re: [cgiapp] OT: apache logout and a javascript question

2006-05-02 Thread Ron Savage
On Tue, 02 May 2006 10:39:15 +0200, Michael Lackhoff wrote: Hi Michael My second question is really off topic but perhaps someone can give me a short hint. I need a pair of multiple select boxes where one can move entries from one box to the other by clicking on an arrow button. There are