/**
  * Setup Haml and support configure
  *
  * @param unknown_type $oParent
  * @param unknown_type $aDebug
  * @param unknown_type $bInside
  */
 function __construct($view, $oParent = null, $aDebug = null, $bInside = false)
 {
     $this->cakeView = $view;
     $config = Configure::read('HAML');
     $this->isDebug($config['debug']);
     $this->indentBy = $config['contentIndent'];
     $this->showCacheTime = $config['showCacheTime'];
     $this->compress = $config['compressHTML'];
     $this->noCache = $config['noCache'];
     parent::__construct(VIEWS, TMP . 'haml', $oParent, $aDebug, $bInside);
 }