Re: advice on implementing a controller manager

2003-07-01 Thread Chris Winters
Xavier Noria wrote: I am writing an application following MVC with Perl Apache modules and the Template Toolkit. Apache is 1.x. I would like to have just one entry point to the application, which would play the role of someone who sets everything necessary up and forwards the actual request to

RE: advice on implementing a controller manager

2003-07-01 Thread Jesse Erlbaum
Hi Chris -- A word of advice: if you'd like to use it under different web environments, create your own system for registering/calling handlers instead of using the Apache API. That is, have a map of URL-to-class and have your controller find the class to execute based on the URL and