--
You received this message because you are subscribed to the Google Groups "framework-one" group.
To post to this group, send email to framew...@googlegroups.com.
To unsubscribe from this group, send email to framework-on...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/framework-one?hl=en.
I plan to provide a better way to do controller calls inside Application.cfc as well at which point the wiki and examples will be updated and doController() will be officially deprecated ("frowned upon very strongly")...
--
controller( 'navigation.getNavigation' );
which will queue up the controller call to happen at the start of the
controller sequence in the main request processing part of the system,
as a mirror to how service( 'foo.bar' ) works.
Not wedded to that, just my current preference.
Once I'm out from under my current deadlines, I'll draw up an official
roadmap for 1.1 and solicit feedback on how things should change. That
will include pretty much everything hinted at in the reference manual
with the 'd' word as well as a review of any / all open tickets.
Sean
--
You received this message because you are subscribed to the Google Groups "framework-one" group.
To post to this group, send email to framew...@googlegroups.com.
To unsubscribe from this group, send email to framework-on...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/framework-one?hl=en.
doController() is a direct call to the method on the controller at that point.
controller() would queue up the call - like service() is a deferred call.
It would be more in keeping with the principles of the framework.
Calls to controller() would queue up controller methods to be called
just before the 'before()' lifecycle point (and thus you could only
use it in setupApplication(), setupSession() and setupRequest() -
after those points, it would be 'too late', just like you can't call
service() in itemEnd() methods or later.
--
Sean A Corfield -- (904) 302-SEAN
Railo Technologies US -- http://getrailo.com/
An Architect's View -- http://corfield.org/
"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood