Commit 837227e0 authored by Jim Fulton's avatar Jim Fulton

Added option for extreme-detail report.

parent f5f27b68
......@@ -43,10 +43,28 @@
<!--#if show_cache_detail-->
<h4>Cache Details</h4><P>
<table><tr><th>Object Class</th><th>Count</th></tr>
<table border><tr><th>Object Class</th><th>Count</th></tr>
<!--#in cache_detail-->
<tr><td><!--#var sequence-key--></td><td><!--#var __str__--></td></tr>
<!--#/in cache_detail-->
<tr><td><!--#var sequence-key--></td><td><!--#var sequence-item--></td></tr>
<!--#/in-->
</table>
<!--#/if-->
<!--#if show_cache_extreme_detail-->
<h4>Objects in the cache</h4><P>
<table border><tr><th>Object ID</th>
<th>Object Class</th>
<th>Reference Count</th>
<th>References</th>
</tr>
<!--#in cache_extreme_detail mapping-->
<tr><td><!--#var oid--></td>
<td><!--#var klass--></td>
<td><!--#var rc--></td>
<td><!--#var references--></td>
</tr>
<!--#/in-->
</table>
<!--#/if-->
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment