-- Panman <[EMAIL PROTECTED]> wrote (on Thursday, 03 July 2008, 12:10 PM -0700): > > Currently we use Adobe Contribute for the users to edit pages, so that's why > MVC doesn't work. Since we just purchased a few more copies of Contribute, > we won't be going to a full blown Web based CMS. So I'm charged with > building a new framework that works with Contribute and integrate it with > some of our other systems. It's looking like I can "glue" some things > together, which is what I'm looking for. At the moment I don't have any more > specific questions but sure will later. Thanks
Does Contribute simply publish individual page files? If so, I'd suggest using the ZF MVC, and setting up ErrorController::errorAction() to check the PATH_INFO ($this->getRequest()->getPathInfo()) to see if the document exists in the system, and, if so, serve it up. This gets you the benefit of being able to use Zend_Layout to inject the content into a full page, as well as the ability to develop separate controllers and routes via ZF. -- Matthew Weier O'Phinney Software Architect | [EMAIL PROTECTED] Zend Framework | http://framework.zend.com/
