Changeset 636

Show
Ignore:
Timestamp:
05/08/07 07:11:54 (6 years ago)
Author:
lmajano
Message:

More debugging panel additions

Location:
coldbox/trunk/src/system/includes
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • coldbox/trunk/src/system/includes/cachepanel.cfm

    r627 r636  
    119119                  <cfloop collection="#cacheMetadata#" item="key"> 
    120120                  <tr > 
    121                         <td class="fw_debugTablesCells">#key#</td> 
     121                        <td class="fw_debugTablesCells">#listLast(key,"_")#</td> 
    122122                        <td align="center" class="fw_debugTablesCells">#cacheMetadata[key].hits#</td> 
    123123                        <td align="center" class="fw_debugTablesCells">#cacheMetadata[key].Timeout#</td> 
  • coldbox/trunk/src/system/includes/debug.cfm

    r627 r636  
    7777 
    7878                <div class="fw_debugTitleCell"> 
    79                   JVM Memory 
    80                 </div> 
    81                 <div class="fw_debugContentCell"> 
    82                 #NumberFormat(JVMFreeMemory)# KB / #NumberFormat(JVMTotalMemory)#       KB (Free/Total) 
    83                 </div> 
    84  
    85                 <div class="fw_debugTitleCell"> 
    8679                  TimeStamp: 
    8780                </div> 
     
    9184 
    9285                <div class="fw_debugTitleCell"> 
    93                   Browser: 
    94                 </div> 
    95                 <div class="fw_debugContentCell"> 
    96                 #cgi.HTTP_USER_AGENT# 
    97                 </div> 
    98  
    99                 <div class="fw_debugTitleCell"> 
    10086                  Query String: 
    10187                </div> 
    10288                <div class="fw_debugContentCell"> 
    10389                <cfif cgi.QUERY_STRING eq ""><span class="fw_redText">N/A</span></cfif>#cgi.QUERY_STRING# 
    104                 </div> 
    105  
    106                 <div class="fw_debugTitleCell"> 
    107                   Remote IP: 
    108                 </div> 
    109                 <div class="fw_debugContentCell"> 
    110                 #cgi.REMOTE_ADDR# 
    11190                </div> 
    11291 
     
    169148                  </tr> 
    170149                  <tr id="fw_poprc_#id#" style="display:none"> 
    171                         <td colspan="4" style="padding:5px;background-color:##fffff0" >#rc#</td> 
     150                        <td colspan="4" style="padding:5px;background-color:##fffff0" wrap="true"><pre>#replace(rc,",","<br>","all")#</pre></td> 
    172151                  </tr> 
    173152                  </cfloop> 
  • coldbox/trunk/src/system/includes/timer.cfm

    r627 r636  
    3838                //Request Context SnapShot 
    3939                if ( not findnocase("rendering",attributes.timertag) ){ 
    40                         rc =  
    41                         QuerySetCell(request.DebugTimers, "RC", application.cbController.getRequestService().getContext().getCollection().toString() ); 
     40                        rc = application.cbController.getRequestService().getContext().getCollection().toString(); 
     41                        QuerySetCell(request.DebugTimers, "RC", rc ); 
    4242                } 
    4343                else{