Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
65b77519
Commit
65b77519
authored
Aug 12, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
got rid of obsolete files
parent
3a1cf20e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
201 deletions
+0
-201
lib/python/App/appMain.dtml
lib/python/App/appMain.dtml
+0
-94
lib/python/App/cache.dtml
lib/python/App/cache.dtml
+0
-107
No files found.
lib/python/App/appMain.dtml
deleted
100644 → 0
View file @
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 "undoing" 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 "Pack" 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 "Shutdown" 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>
lib/python/App/cache.dtml
deleted
100644 → 0
View file @
3a1cf20e
<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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment