Update of /cvsroot/phpwebapp/documentation/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3280/config
Modified Files:
const.Debug.php
Log Message:
Index: const.Debug.php
===================================================================
RCS file: /cvsroot/phpwebapp/documentation/config/const.Debug.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** const.Debug.php 25 Aug 2003 13:29:19 -0000 1.2
--- const.Debug.php 18 Apr 2005 10:08:43 -0000 1.3
***************
*** 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);
|