[phpwebapp-commits] CVS: web_app/doc changes.txt,1.15,1.16
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2005-06-09 13:21:47
|
Update of /cvsroot/phpwebapp/web_app/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30970/doc Modified Files: changes.txt Log Message: Index: changes.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/changes.txt,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** changes.txt 12 Oct 2004 10:01:46 -0000 1.15 --- changes.txt 9 Jun 2005 13:21:34 -0000 1.16 *************** *** 49,52 **** --- 49,77 ---- page that is going to be constructed. ------------------------------------------------------------------- + * Added debug options DEBUG_INCLUDES and DEBUG_WEBOBJECTS. They + should be included in 'config/const.Debug.php' like this: + + /** + * if this constant is true, the framework outputs a box + * around each file that is included in the page + */ + define("DEBUG_INCLUDES", false); + + /** + * if this constant is true, the framework outputs a box + * around each webobject that is used in the page + */ + define("DEBUG_WEBOBJECTS", false); + + ------------------------------------------------------------------- + * Added the (framework) tag <unindented>. By default the framework indents + all the templates that are processed or included. However sometimes may + be usefull not to indent a part of a template. This can be done by + including it inside the <unindeted> tag, like this: + <unindented> + {{file_revision}} + </unindented> + ------------------------------------------------------------------- + ------------------------------------------------------------------- ------------------------------------------------------------------- ------------------------------------------------------------------- |