Thread: [phpwebapp-commits] CVS: web_app/append wbDebug.php,1.4,1.5 wbDebug.html,1.4,1.5 wbDbgStatevars.php,
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-07-14 14:45:51
|
Update of /cvsroot/phpwebapp/web_app/append In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13284/append Modified Files: wbDebug.php wbDebug.html wbDbgStatevars.php append.html Log Message: Index: wbDebug.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/append/wbDebug.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** wbDebug.php 25 Aug 2003 13:18:38 -0000 1.4 --- wbDebug.php 14 Jul 2004 14:45:41 -0000 1.5 *************** *** 11,15 **** global $webPage; ! $debug_goto = "<script language='javascript'> debug_GoTo = true; </script>"; WebApp::addVar("debug_goto", $debug_goto); --- 11,15 ---- global $webPage; ! $debug_goto = '<script type="text/javascript" language="javascript"> debug_GoTo = true; </script>'; WebApp::addVar("debug_goto", $debug_goto); Index: wbDebug.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/append/wbDebug.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** wbDebug.html 13 Jul 2004 13:18:08 -0000 1.4 --- wbDebug.html 14 Jul 2004 14:45:41 -0000 1.5 *************** *** 15,24 **** --- 15,27 ---- <br/> </If> + <WebBox ID="wbDbgStatevars"> <!--# debug state vars #--> </WebBox> + <WebBox ID="wbDbgTemplates"> <!--# debug template structure #--> </WebBox> + <WebBox ID="wbDebug"> <!--# debug GoTo() transitions #--> *************** *** 26,33 **** --- 29,38 ---- {{debug_goto}} </If> + <!--# debug recordsets #--> <If condition="'{{DEBUG_RECORDSETS}}'!=''"> {{debug_recordsets}} </If> + <!--# show timer results #--> <If condition="'{{EXECUTION_TIME_INFO}}'!=''"> Index: wbDbgStatevars.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/append/wbDbgStatevars.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** wbDbgStatevars.php 13 Jul 2004 13:18:08 -0000 1.6 --- wbDbgStatevars.php 14 Jul 2004 14:45:41 -0000 1.7 *************** *** 36,40 **** function webobjects_to_tree() { ! $tree = "<hr>\n"; $tree .= "<a name='tree'> </a>"; $tree .= "<strong>WebObjects and their state variables:</strong>\n"; --- 36,40 ---- function webobjects_to_tree() { ! $tree = "<hr />\n"; $tree .= "<a name='tree'> </a>"; $tree .= "<strong>WebObjects and their state variables:</strong>\n"; *************** *** 105,112 **** { //don't display the webobjects of append ! if (ereg("append\.html", $tplId)) { return $html; ! $html .= "<hr>\n"; } --- 105,112 ---- { //don't display the webobjects of append ! if (ereg('web_app/append/append.html$', $tplId)) { return $html; ! $html .= "<hr />\n"; } *************** *** 116,120 **** } } ! $html .= "<hr>\n"; return $html; } --- 116,120 ---- } } ! $html .= "<hr />\n"; return $html; } Index: append.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/append/append.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** append.html 15 Aug 2003 07:05:07 -0000 1.3 --- append.html 14 Jul 2004 14:45:41 -0000 1.4 *************** *** 1,22 **** ! <!--# ! This file is appended automatically by the framework ! after each template in order to include session variables, ! debug info, etc. ! #--> ! <!--# insert phpWebApp logo #--> ! <div class="webapp_logo"> ! <a href="http://phpwebapp.sourceforge.net/" target="_blank"> ! Powered by phpWebApp ! </a> ! </div> ! <!--# include session variables #--> ! <Include SRC="{{SESSION_PATH}}wbSession.html" /> ! <!--# display any messages from server-side code #--> ! <WebBox ID="wbMessages"> ! {{MESSAGES}} ! </WebBox> ! <!--# include debug info #--> ! <Include SRC="{{./}}wbDebug.html" /> --- 1,23 ---- ! <!--# ! This file is appended automatically by the framework ! after each template in order to include session variables, ! debug info, etc. ! #--> ! <!--# insert phpWebApp logo #--> ! <div class="webapp_logo"> ! <a href="http://phpwebapp.sourceforge.net/" target="_blank"> ! Powered by phpWebApp ! </a> ! </div> ! <!--# include session variables #--> ! <Include SRC="{{SESSION_PATH}}wbSession.html" /> ! <!--# display any messages from server-side code #--> ! <WebBox ID="wbMessages"> ! {{MESSAGES}} ! </WebBox> ! ! <!--# include debug info #--> ! <Include SRC="{{./}}wbDebug.html" /> |