Hi,
First, I want to thank you for the outstanding work you have done with the Phalcon project.
I'm trying to switch from a custom Zend Framework webapp working only by namespaced conventions to your framework and I have the following problem:
All my files views are namespaced classes (as all my php files), for example the view file for the controller Index and the action Foo is in the directory MY_APP_PATH/View/Index/Foo.php.
I wrote a Phalcon view engine to handle my view file as classes but the Phalcon/Mvc/View does not found the file MY_APP_PATH/View/Index/Foo.php, it only finds MY_APP_PATH/View/index/foo.php
I don't understand why you force the code $view->render('A', 'b') to render the file a/b.ext instead of A/B.ext…
How can I hack this feature, it seems to be the only problem switching my webapp to Phalcon.
Thank.