[Zope-Checkins] CVS: Zope/lib/python/App/dtml - profile.dtml:1.4.106.2
Martijn Pieters
mj@zope.com
Wed, 13 Nov 2002 10:55:57 -0500
Update of /cvs-repository/Zope/lib/python/App/dtml
In directory cvs.zope.org:/tmp/cvs-serv16498/lib/python/App/dtml
Modified Files:
Tag: Zope-2_5-branch
profile.dtml
Log Message:
Issue #670 is a feature, not a bug! It does not belong on a maintenance
branch.
=== Zope/lib/python/App/dtml/profile.dtml 1.4.106.1 => 1.4.106.2 ===
--- Zope/lib/python/App/dtml/profile.dtml:1.4.106.1 Wed Nov 13 05:30:54 2002
+++ Zope/lib/python/App/dtml/profile.dtml Wed Nov 13 10:55:56 2002
@@ -3,9 +3,7 @@
<dtml-let sort="REQUEST.get('sort', 'time')"
limit="REQUEST.get('limit', 100)"
- mode="REQUEST.get('mode', 'stats')"
- stripDirs="REQUEST.get('stripDirs', 1)"
- stats="manage_profile_stats(sort, limit, stripDirs, mode)">
+ stats="manage_profile_stats(sort, limit)">
<dtml-if stats>
<p class="form-help">
Profiling information is generated using the standard Python
@@ -33,19 +31,6 @@
<dtml-in "(100, 200, 300, 400, 500)">
<option value="<dtml-var sequence-item>"<dtml-if
"limit==_['sequence-item']"> selected</dtml-if>><dtml-var
- sequence-item>
- </dtml-in>
- </select>
-</td>
-<td><strong>strip Dirs</strong>:
- <input type=hidden name="stripDirs:int:default" value="0">
- <input type=checkbox name="stripDirs:int" value="1" <dtml-if stripDirs>checked</dtml-if>>
-</td>
-<td><strong>Mode</strong>:
- <select name="mode">
- <dtml-in "('stats', 'callees', 'callers',)">
- <option value="<dtml-var sequence-item>"<dtml-if
- "mode==_['sequence-item']"> selected</dtml-if>><dtml-var
sequence-item>
</dtml-in>
</select>