Changeset 636
- Timestamp:
- 05/08/07 07:11:54 (6 years ago)
- Location:
- coldbox/trunk/src/system/includes
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
coldbox/trunk/src/system/includes/cachepanel.cfm
r627 r636 119 119 <cfloop collection="#cacheMetadata#" item="key"> 120 120 <tr > 121 <td class="fw_debugTablesCells"># key#</td>121 <td class="fw_debugTablesCells">#listLast(key,"_")#</td> 122 122 <td align="center" class="fw_debugTablesCells">#cacheMetadata[key].hits#</td> 123 123 <td align="center" class="fw_debugTablesCells">#cacheMetadata[key].Timeout#</td> -
coldbox/trunk/src/system/includes/debug.cfm
r627 r636 77 77 78 78 <div class="fw_debugTitleCell"> 79 JVM Memory80 </div>81 <div class="fw_debugContentCell">82 #NumberFormat(JVMFreeMemory)# KB / #NumberFormat(JVMTotalMemory)# KB (Free/Total)83 </div>84 85 <div class="fw_debugTitleCell">86 79 TimeStamp: 87 80 </div> … … 91 84 92 85 <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">100 86 Query String: 101 87 </div> 102 88 <div class="fw_debugContentCell"> 103 89 <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#111 90 </div> 112 91 … … 169 148 </tr> 170 149 <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> 172 151 </tr> 173 152 </cfloop> -
coldbox/trunk/src/system/includes/timer.cfm
r627 r636 38 38 //Request Context SnapShot 39 39 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 ); 42 42 } 43 43 else{
