[phpwebapp-commits] CVS: app1/config const.Debug.php,1.3,1.4
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2005-04-18 10:02:04
|
Update of /cvsroot/phpwebapp/app1/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv490/config Modified Files: const.Debug.php Log Message: Index: const.Debug.php =================================================================== RCS file: /cvsroot/phpwebapp/app1/config/const.Debug.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** const.Debug.php 29 Jul 2004 14:41:54 -0000 1.3 --- const.Debug.php 18 Apr 2005 10:01:52 -0000 1.4 *************** *** 27,31 **** /** * if this constant is true, the framework displays an alert ! * each time that the function GoTo() is called (for debug) */ define("DEBUG_GOTO", false); --- 27,31 ---- /** * if this constant is true, the framework displays an alert ! * each time that the function GoTo() is called */ define("DEBUG_GOTO", false); *************** *** 33,37 **** /** * if this constant is true, the framework outputs the state ! * variables of each webox in HTML format (for debug) */ define("DEBUG_STATEVARS", false); --- 33,37 ---- /** * if this constant is true, the framework outputs the state ! * variables of each webox in HTML format */ define("DEBUG_STATEVARS", false); *************** *** 39,49 **** /** * if this constant is true, the framework outputs the tree ! * structure of the templates of the page (for debug) */ define("DEBUG_TEMPLATES", false); /** * if this constant is true, the framework outputs all the ! * recordsets of the page and their contents (for debug) */ define("DEBUG_RECORDSETS", false); --- 39,61 ---- /** * if this constant is true, the framework outputs the tree ! * structure of the templates of the page */ define("DEBUG_TEMPLATES", false); /** + * if this constant is true, the framework outputs a box + * around each file that is included in the page + */ + define("DEBUG_INCLUDES", true); + + /** + * if this constant is true, the framework outputs a box + * around each webobject that is used in the page + */ + define("DEBUG_WEBOBJECTS", false); + + /** * if this constant is true, the framework outputs all the ! * recordsets of the page and their contents */ define("DEBUG_RECORDSETS", false); *************** *** 51,55 **** /** * if this constant is true, the framework outputs information ! * about the execution time of several processes (for debug) */ define("EXECUTION_TIME_INFO", false); --- 63,67 ---- /** * if this constant is true, the framework outputs information ! * about the execution time of several processes */ define("EXECUTION_TIME_INFO", false); |