Authored by hf

modify templateLayout remove debug

@@ -3,9 +3,11 @@ nbproject @@ -3,9 +3,11 @@ nbproject
3 .idea 3 .idea
4 .gitignore 4 .gitignore
5 .gitmodules 5 .gitmodules
6 -compile/  
7 -assets/ 6 +compile
  7 +assets
8 script/nginx/logs 8 script/nginx/logs
9 npm-debug.log 9 npm-debug.log
10 composer.lock 10 composer.lock
11 vendor/ 11 vendor/
  12 +.jscsrc
  13 +.jshintrc
@@ -155,7 +155,7 @@ class TemplateLayout implements View_Interface @@ -155,7 +155,7 @@ class TemplateLayout implements View_Interface
155 $template = file_get_contents($viewName, false, null); 155 $template = file_get_contents($viewName, false, null);
156 $phpStr = LightnCandy::compile($template, array( 156 $phpStr = LightnCandy::compile($template, array(
157 // DEBUG: LightnCandy::FLAG_RENDER_DEBUG | LightnCandy::FLAG_ERROR_EXCEPTION 157 // DEBUG: LightnCandy::FLAG_RENDER_DEBUG | LightnCandy::FLAG_ERROR_EXCEPTION
158 - 'flags' => LightnCandy::FLAG_RENDER_DEBUG | LightnCandy::FLAG_ERROR_EXCEPTION | LightnCandy::FLAG_MUSTACHE | LightnCandy::FLAG_HANDLEBARS, // 使用MUSTACHE和HANDLEBARS的模板格式 158 + 'flags' => LightnCandy::FLAG_ERROR_EXCEPTION | LightnCandy::FLAG_MUSTACHE | LightnCandy::FLAG_HANDLEBARS, // 使用MUSTACHE和HANDLEBARS的模板格式
159 'basedir' => array($config->template->partials), // 模板里使用 {{> partial_name}} 时查找的目录 159 'basedir' => array($config->template->partials), // 模板里使用 {{> partial_name}} 时查找的目录
160 'fileext' => array($tplExt), // 允许查找文件的后缀 160 'fileext' => array($tplExt), // 允许查找文件的后缀
161 'lcrun' => 'Plugin\LCRun3', // 指定编译模板的runtime 161 'lcrun' => 'Plugin\LCRun3', // 指定编译模板的runtime