Commit 65b77519 authored by Jim Fulton's avatar Jim Fulton

got rid of obsolete files

parent 3a1cf20e
<HTML>
<HEAD>
<TITLE><!--#var title--></TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
<!--#var manage_tabs-->
<P>
The Control Panel allows you to view application status information.
It also allows you to perform maintenance tasks such as process control,
database packing, and &quot;undoing&quot; previous changes to your site.
<P>
<TABLE CELLPADDING="4" BORDER="1">
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<STRONG>Process Id</STRONG>
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<!--#var process_id-->
</TD>
</TR>
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<STRONG>Process Uptime</STRONG>
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<!--#var process_time-->
</TD>
</TR>
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<STRONG>Database Size</STRONG>
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<!--#var db_size-->
</TD>
</TR>
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<STRONG>Database Location</STRONG>
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<font size="-1"><!--#var db_name--></font>
</TD>
</TR>
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<STRONG>Version Info</STRONG>
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<font size="-1">
<!--#if version_list-->
<!--#in version_list-->
<!--#var sequence-item-->
<BR>
<!--#/in-->
<!--#/if-->
</font>
</TD>
</TR>
</TABLE>
<TABLE CELLPADDING="4">
<TR>
<FORM ACTION="manage_pack" METHOD="POST" TARGET="manage_main">
<TD ALIGN="LEFT" VALIGN="TOP">
<BR>Click &quot;Pack&quot; to pack the Principia database, removing
previous revisions of objects that are older than
<INPUT TYPE="TEXT" VALUE="0" NAME="days:float" SIZE="3"> days.
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<BR><INPUT TYPE="SUBMIT" VALUE=" Pack ">
</TD>
</FORM>
</TR>
<TR>
<TD ALIGN="LEFT" VALIGN="TOP">
<BR>
Click &quot;Shutdown&quot; to shutdown the Principia process.
<BR>
It will be restarted on the next web request.
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<FORM ACTION="manage_shutdown" METHOD="POST" TARGET="_top">
<BR><INPUT TYPE="SUBMIT" VALUE="Shutdown">
</FORM>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
<HTML>
<HEAD>
<TITLE>Cache</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
<!--#var manage_tabs-->
<h3>Cache Statistics</h3>
<table>
<tr><th align=right>Total number of objects in the database:</th>
<td><!--#var database_size--></td></tr>
<tr><th align=right>Number of objects in the cache:</th>
<td><!--#var cache_length--></td></tr>
<tr><th valign=top align=right>Target size:</th><td>
<form action="<!--#var URL1-->/manage_cache_size" method=GET>
<input type="text" name="value:int" value="<!--#var cache_size-->" size=6>
<input type="submit" value="Change">
</form></td></tr>
<tr><th align=right>Mean time since last access:</th>
<td><!--#var cache_mean_age--></td></tr>
<tr><th valign=top align=right>Target maximum time between accesses:</th><td>
<form action="<!--#var URL1-->/manage_cache_age" method=GET>
<input type="text" name="value:int" value="<!--#var cache_age-->" size=6>
<input type="submit" value="Change">
</form></td></tr>
<tr><th align=right>Deactivation rate (objects/second):</th>
<td><!--#var cache_mean_deac--></td></tr>
<tr><th align=right>Deallocation rate (objects/second):</th>
<td><!--#var cache_mean_deal--></td></tr>
<tr><th align=right>Time of last cache garbage collection:</th>
<td><!--#var cache_last_gc_time--></td></tr>
</table>
<!--#if show_cache_detail-->
<h4>Cache Details</h4><P>
<table border><tr><th>Object Class</th><th>Count</th></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-->
<hr>
<h3>Manual Cache Garbage Collection</h3><P>
<table>
<tr><td>
<strong>Full Sweep</strong><br>
Make a single pass through the cache, removing any objects that are no
longer referenced, and deactivating objects that have not been
accessed in the number of seconds given in the input box to the right
of this text.
</td><td>
<form action="<!--#var URL1-->/manage_full_sweep" method=GET>
<input type="text" name="value:int" value="<!--#var cache_age-->" size=6><br>
<input type="submit" value="Full Sweep">
</form></td></tr>
<tr><td>
<strong>Minimize</strong><br>
Make multiple passes through the cache, removing any objects that are no
longer referenced, and deactivating objects that have not been
accessed in the number of seconds given in the input box to the right
of this text.
</td><td>
<form action="<!--#var URL1-->/manage_minimize" method=GET>
<input type="text" name="value:int" value="<!--#var cache_age-->" size=6><br>
<input type="submit" value="Minimize">
</form></td></tr>
</table
</BODY></HTML>
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