[phpwebapp-commits] CVS: web_app/append wbDebug.php,1.2,1.3 wbDebug.html,1.2,1.3 append.html,1.2,1.3
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-08-15 08:41:23
|
Update of /cvsroot/phpwebapp/web_app/append In directory sc8-pr-cvs1:/tmp/cvs-serv19635/append Modified Files: wbDebug.php wbDebug.html append.html Log Message: - improved styles - removed some extra spaces Index: wbDebug.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/append/wbDebug.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** wbDebug.php 11 Aug 2003 16:17:53 -0000 1.2 --- wbDebug.php 15 Aug 2003 07:05:06 -0000 1.3 *************** *** 9,23 **** global $webPage; ! $debug_goto = (DEBUG_GOTO ? " <script language='javascript'> debug_GoTo = true; </script>" : ""); ! WebApp::addVar("DEBUG_GOTO", $debug_goto); $webPage->print_dbg_messages(); $debug_recordsets = (DEBUG_RECORDSETS ? $webPage->recordsets_to_html() : ""); ! WebApp::addVar("DEBUG_RECORDSETS", $debug_recordsets); $webPage->timer->Stop("WebApp"); $timer_results = (EXECUTION_TIME_INFO ? $webPage->timer->toHtmlTable() : ""); ! WebApp::addVar("TIMER_RESULTS", $timer_results); } } --- 9,23 ---- global $webPage; ! $debug_goto = "<script language='javascript'> debug_GoTo = true; </script>"; ! WebApp::addVar("debug_goto", $debug_goto); $webPage->print_dbg_messages(); $debug_recordsets = (DEBUG_RECORDSETS ? $webPage->recordsets_to_html() : ""); ! WebApp::addVar("debug_recordsets", $debug_recordsets); $webPage->timer->Stop("WebApp"); $timer_results = (EXECUTION_TIME_INFO ? $webPage->timer->toHtmlTable() : ""); ! WebApp::addVar("timer_results", $timer_results); } } Index: wbDebug.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/append/wbDebug.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** wbDebug.html 16 Jul 2003 09:28:00 -0000 1.2 --- wbDebug.html 15 Aug 2003 07:05:07 -0000 1.3 *************** *** 15,35 **** <br> </If> - <WebBox ID="wbDbgStatevars"> <!--# debug state vars #--> </WebBox> - <WebBox ID="wbDbgTemplates"> <!--# debug template structure #--> </WebBox> - <WebBox ID="wbDebug"> <!--# debug GoTo() transitions #--> ! {{DEBUG_GOTO}} ! <!--# debug recordsets #--> ! {{DEBUG_RECORDSETS}} ! <!--# show timer results #--> ! {{TIMER_RESULTS}} </WebBox> --- 15,36 ---- <br> </If> <WebBox ID="wbDbgStatevars"> <!--# debug state vars #--> </WebBox> <WebBox ID="wbDbgTemplates"> <!--# debug template structure #--> </WebBox> <WebBox ID="wbDebug"> <!--# debug GoTo() transitions #--> ! <If condition="'{{DEBUG_GOTO}}'!=''"> ! {{debug_goto}} ! </If> <!--# debug recordsets #--> ! <If condition="'{{DEBUG_RECORDSETS}}'!=''"> ! {{debug_recordsets}} ! </If> <!--# show timer results #--> ! <If condition="'{{EXECUTION_TIME_INFO}}'!=''"> ! {{timer_results}} ! </If> </WebBox> Index: append.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/append/append.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** append.html 16 Jul 2003 09:28:00 -0000 1.2 --- append.html 15 Aug 2003 07:05:07 -0000 1.3 *************** *** 1,24 **** ! <!--# This file is appended automatically by the framework after each template in order to include session variables, debug info, etc. ! #--> ! ! <!--# insert phpWebApp logo #--> ! <p> ! <small> ! [Powered by ! <a href="http://phpwebapp.sourceforge.net/" target="_blank">phpWebApp</a>] ! </small> ! </p> ! <!--# 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,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" /> |