[fw-general] Re: [fw-mvc] Re: [fw-general] MVC components now in core

2006-12-01 Thread Matthew Weier O'Phinney
-- Dinh <[EMAIL PROTECTED]> wrote
(on Friday, 01 December 2006, 11:53 PM +0700):
> Great work, Matthew
> 
> I also see that the documentation for Zend Controller has been updated
> in Trunk too. Do they reflect the lastest updates?

Yes. I've been trying to keep documentation in sync with the code. :-)

-- 
Matthew Weier O'Phinney
PHP Developer| [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/


[fw-general] Re: [fw-mvc] Re: [fw-general] MVC components now in core

2006-12-01 Thread Dinh

Great work, Matthew

I also see that the documentation for Zend Controller has been updated
in Trunk too. Do they reflect the lastest updates?

Thanks


[fw-general] Re: [fw-mvc] Re: [fw-general] MVC components now in core

2006-11-30 Thread Matthew Weier O'Phinney
-- Drew Bertola <[EMAIL PROTECTED]> wrote
(on Thursday, 30 November 2006, 03:11 PM -0800):
> Matthew Weier O'Phinney wrote:
> >So, go update your SVN tree and start coding!
> 
> Does this break any of the APIs with 0.2 (or older svn versions)?
> 
> What do I need to look out for if I update svn?

A bit of behind-the-scenes work went in the past couple weeks to make
the API basically compatible with previous versions -- which means it
differs a bit from the incubator version in 0.2.0. The key visible
difference will be that the singleton was reintroduced:

// instead of this:
$controller = new Zend_Controller_Front();

// we're back to this:
$controller = Zend_Controller_Front::getInstance();

Another difference between the incubator version and what's current is
that the postDispatchLoop() plugins are called even if an exception is
caught in the dispatch loop. This will allow for graceful teardown in
the event of an exception in the action controller, dispatcher, or
router.

I plan on getting some migration docs into the repository sometime
tomorrow, and will send an announcement when they're done.

-- 
Matthew Weier O'Phinney
PHP Developer| [EMAIL PROTECTED]
Zend - The PHP Company   | http://www.zend.com/