[otrs-cvs] Fred/Kernel/Output/HTML/Standard DevelFredDProf.dtl, 1.2, 1.3 DevelFredSQLLog.dtl, 1.2, 1.3 DevelFredSmallProf.dtl, 1.3, 1.4

cvs-log at otrs.org cvs-log at otrs.org
Sat Feb 2 12:44:21 GMT 2008


Comments:
Update of /home/cvs/Fred/Kernel/Output/HTML/Standard
In directory lancelot:/tmp/cvs-serv26875/Kernel/Output/HTML/Standard

Modified Files:
	DevelFredDProf.dtl DevelFredSQLLog.dtl DevelFredSmallProf.dtl 
Log Message:
Insert a function to find multi used sql statements. Implement a new sort option for DProf. Make sum rows for some module columns.

Author: tr

Index: DevelFredDProf.dtl
===================================================================
RCS file: /home/cvs/Fred/Kernel/Output/HTML/Standard/DevelFredDProf.dtl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** DevelFredDProf.dtl	26 Sep 2007 06:49:51 -0000	1.2
--- DevelFredDProf.dtl	2 Feb 2008 12:44:16 -0000	1.3
***************
*** 1,5 ****
  # --
  # DevelFredDProf.dtl - a frontend to show the DProf result table
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
--- 1,5 ----
  # --
  # DevelFredDProf.dtl - a frontend to show the DProf result table
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
  # --
  # $Id$
***************
*** 7,11 ****
  # This software comes with ABSOLUTELY NO WARRANTY. For details, see
  # the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
  # --
  <table bgcolor="#000000" cellspacing="3" cellpadding="0" width="100%">
--- 7,11 ----
  # This software comes with ABSOLUTELY NO WARRANTY. For details, see
  # the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
  # --
  <table bgcolor="#000000" cellspacing="3" cellpadding="0" width="100%">
***************
*** 30,36 ****
  $Data{"HTMLLines"}
          <tr>
!           <td align="right">Total Time:</td>
            <td align="right">$Data{"TotalTime"}</td>
!           <td  colspan="5">Seconds</td>
          </tr>
  <!-- dtl:block:TimeTable -->
--- 30,38 ----
  $Data{"HTMLLines"}
          <tr>
!           <td align="right">Total:</td>
            <td align="right">$Data{"TotalTime"}</td>
!           <td>Seconds</td>
!           <td align="right">$Data{"TotalCall"}</td>
!           <td colspan="3"> Calls</td>
          </tr>
  <!-- dtl:block:TimeTable -->

Author: tr

Index: DevelFredSQLLog.dtl
===================================================================
RCS file: /home/cvs/Fred/Kernel/Output/HTML/Standard/DevelFredSQLLog.dtl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** DevelFredSQLLog.dtl	26 Sep 2007 10:02:58 -0000	1.2
--- DevelFredSQLLog.dtl	2 Feb 2008 12:44:16 -0000	1.3
***************
*** 1,5 ****
  # --
  # DevelFredSQLLog.dtl - a frontend to show the sql log
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
--- 1,5 ----
  # --
  # DevelFredSQLLog.dtl - a frontend to show the sql log
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
  # --
  # $Id$
***************
*** 7,11 ****
  # This software comes with ABSOLUTELY NO WARRANTY. For details, see
  # the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
  # --
  <table bgcolor="#000000" cellspacing="3" cellpadding="0" width="100%">
--- 7,11 ----
  # This software comes with ABSOLUTELY NO WARRANTY. For details, see
  # the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
  # --
  <table bgcolor="#000000" cellspacing="3" cellpadding="0" width="100%">
***************
*** 14,27 ****
        <table bgcolor="#ffffff" cellspacing="0" cellpadding="2" width="100%">
          <tr>
!           <td colspan="3" bgcolor="ba0f0f">
              <b><font color="#ffffff">Fred-SQL-Log</font></b>
            </td>
          </tr>
!         <tr>
!           <th>Kind</th>
!           <th>Statement</th>
!           <th>Package</th>
          </tr>
  $Data{"HTMLLines"}
        </table>
      </td>
--- 14,31 ----
        <table bgcolor="#ffffff" cellspacing="0" cellpadding="2" width="100%">
          <tr>
!           <td colspan="4" bgcolor="ba0f0f">
              <b><font color="#ffffff">Fred-SQL-Log</font></b>
            </td>
          </tr>
!         <tr class="contentkey">
!           <td>Kind</td>
!           <td>Statement</td>
!           <td>Package</td>
!           <td>Equal Statements</td>
          </tr>
  $Data{"HTMLLines"}
+         <tr class="contentkey">
+           <td colspan="3">$Data{"AllStatements"} AllStatments = $Data{"SelectStatements"} SELECTS + $Data{"DoStatements"} DOs</td>
+         </tr>
        </table>
      </td>

Author: tr

Index: DevelFredSmallProf.dtl
===================================================================
RCS file: /home/cvs/Fred/Kernel/Output/HTML/Standard/DevelFredSmallProf.dtl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** DevelFredSmallProf.dtl	26 Sep 2007 06:49:51 -0000	1.3
--- DevelFredSmallProf.dtl	2 Feb 2008 12:44:16 -0000	1.4
***************
*** 1,5 ****
  # --
  # DevelFredSmallProf.dtl - a frontend to show the SmallProf result table
! # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/
  # --
  # $Id$
--- 1,5 ----
  # --
  # DevelFredSmallProf.dtl - a frontend to show the SmallProf result table
! # Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
  # --
  # $Id$
***************
*** 7,11 ****
  # This software comes with ABSOLUTELY NO WARRANTY. For details, see
  # the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
  # --
  <table bgcolor="#000000" cellspacing="3" cellpadding="0" width="100%">
--- 7,11 ----
  # This software comes with ABSOLUTELY NO WARRANTY. For details, see
  # the enclosed file COPYING for license information (GPL). If you
! # did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
  # --
  <table bgcolor="#000000" cellspacing="3" cellpadding="0" width="100%">
***************
*** 45,48 ****
--- 45,52 ----
  $Data{"HTMLLines"}
          <tr>
+           <td align="right">$Data{"TotalCall"}</td>
+           <td colspan="5"> Calls</td>
+         </tr>
+         <tr>
            <td colspan="6">
              $Text{"For more information, especially 'time execution' and 'time expended' read perldoc SmallProf!"}


More information about the cvs-log mailing list