You will have to add the scriptPath manually:
class ContentController extends Zend_Controller_Action {
public function init()
{
$this->view->addScriptPath(APPLICATION_PATH . '/views/scripts/content');
}
}
and
class NewsController extends ContentController {
public function init ()
{
// Ensure that ContentController inits.
parent::init();
$this->view->addScriptPath(APPLICATION_PATH . '/views/scripts/news');
}
}
This will use the stack functionality of the view script inflector. It will first look in the path last specified, which is APPLICATION_PATH . '/views/scripts/news', if the script isn't found there, it will look in the second directory on the stack, which is APPLICATION_PATH . '/views/scripts/content'.