RE: [cgiapp] How to split runmodes into different modules

2006-04-03 Thread Michael Lackhoff
On 31 Mar 2006 at 12:18, Jesse Erlbaum wrote: One other note, on which I have been harping for years: If you are about to tell me that you can't have a separate instance script for each application because your login system would have to be duplicated in each application, then you're doing

Re: [cgiapp] How to split runmodes into different modules

2006-04-03 Thread Michael Peters
Michael Lackhoff wrote: On 31 Mar 2006 at 12:18, Jesse Erlbaum wrote: One other note, on which I have been harping for years: If you are about to tell me that you can't have a separate instance script for each application because your login system would have to be duplicated in each

Re: [cgiapp] How to split runmodes into different modules

2006-04-03 Thread Michael Lackhoff
On 3 Apr 2006 at 8:33, Michael Peters wrote: Even the most complicated auth setup can be done in Apache using mod_perl Authz and Authen handlers. Even though it's running at the apache level, it's still a part of your application since it's connecting to your database and has your business

Re: [cgiapp] How to split runmodes into different modules

2006-04-03 Thread Michael Peters
Michael Lackhoff wrote: On 3 Apr 2006 at 8:33, Michael Peters wrote: Even the most complicated auth setup can be done in Apache using mod_perl Authz and Authen handlers. Even though it's running at the apache level, it's still a part of your application since it's connecting to your

Re: [cgiapp] How to split runmodes into different modules

2006-04-03 Thread Sean Davis
On 4/3/06 9:19 AM, Michael Lackhoff [EMAIL PROTECTED] wrote: On 3 Apr 2006 at 8:33, Michael Peters wrote: And if I want to give it a try, where can I read more about these Auth* handlers? This book chapter was written for apache 1.3 and mod_perl 1, so some of it might need some

Re: [cgiapp] How to split runmodes into different modules

2006-04-03 Thread Sean Davis
On 4/3/06 8:33 AM, Michael Peters [EMAIL PROTECTED] wrote: Michael Lackhoff wrote: On 31 Mar 2006 at 12:18, Jesse Erlbaum wrote: One other note, on which I have been harping for years: If you are about to tell me that you can't have a separate instance script for each application

RE: [cgiapp] How to split runmodes into different modules

2006-04-03 Thread Jesse Erlbaum
Hi Michael -- No, this is not the reason, why I want to split my application but still, I am not convinced that authorization belongs in Apache. Say I have an application with a company and branches. Now I want that a user is only allowed to run the runmodes with data of the brach the

Re: [cgiapp] How to split runmodes into different modules

2006-04-03 Thread RA Jones
Michael Peters wrote: Even the most complicated auth setup can be done in Apache using mod_perl Authz and Authen handlers. Even though it's running at the apache level, it's still a part of your application since it's connecting to your database and has your business logic. It's just done

RE: [cgiapp] How to split runmodes into different modules

2006-04-03 Thread Jesse Erlbaum
Hi Richard -- Sounds interesting. Any chance you could post - or point to - an example of how to get started with that sort of thing? I got started by reading the source of Apache::AuthDBI (part of the Apache::DBI package). In Apache::AuthDBI you will see the essential ingredients of a