Commit 4f7e4b2d authored by Jim Fulton's avatar Jim Fulton

Updated format per Paul's request and fixed batch processing.

parent 7297a46f
...@@ -5,16 +5,19 @@ ...@@ -5,16 +5,19 @@
<BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555" ALINK="#77003B"> <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555" ALINK="#77003B">
<!--#var manage_tabs--> <!--#var manage_tabs-->
<P> <P>
<FORM ACTION="manage_undo_transactions" METHOD="POST">
This application's transactional feature allows you to easily undo changes <!--#if undoable_transactions-->
made to the application's settings or data. You can revert the application
to a &quot;snapshot&quot; of it's state at a previous point in time. <FORM ACTION="manage_undo_transactions" METHOD="POST">
<P> This application's transactional feature allows you to easily undo changes
Select one or more transactions below and then click on the &quot;Undo&quot; made to the application's settings or data. You can revert the application
button to undo the transactions. Note that even though a transaction to a &quot;snapshot&quot; of it's state at a previous point in time.
is shown below, you will not be able to undo it if later transactions <P>
modified objects that were modified by the transaction. Select one or more transactions below and then click on the &quot;Undo&quot;
<table> button to undo the transactions. Note that even though a transaction
is shown below, you will not be able to undo it if later transactions
modified objects that were modified by the transaction.
<table>
<tr><td colspan=2 align=center><INPUT TYPE="SUBMIT" VALUE=" Undo "></td></tr> <tr><td colspan=2 align=center><INPUT TYPE="SUBMIT" VALUE=" Undo "></td></tr>
<tr><td></td></tr> <tr><td></td></tr>
<!--#if first_transaction--> <!--#if first_transaction-->
...@@ -30,26 +33,35 @@ modified objects that were modified by the transaction. ...@@ -30,26 +33,35 @@ modified objects that were modified by the transaction.
<td valign=top><input type=checkbox name="transaction_info:list" <td valign=top><input type=checkbox name="transaction_info:list"
value="<!--#var id--> <!--#var pos-->"></td> value="<!--#var id--> <!--#var pos-->"></td>
<td valign=top> <td valign=top>
<strong><!--#var desc--></strong> by <strong><!--#var user--></strong> <strong><!--#var desc--></strong> by <strong>
(<!--#var path-->) on <!--#if user-->
<!--#var time fmt=Mon--> <!--#var time fmt=day--> at <strong><!--#if path--><!--#var path-->/<!--#/if--><!--#var user-->
<!--#else-->
<em>Principia</em>
<!--#/if-->
</strong> on <!--#var time fmt=Mon--> <!--#var time fmt=day--> at
<!--#var time fmt=Time--> <!--#var time fmt=Time-->
</td> </td>
</tr> </tr>
<!--#/in--> <!--#/in-->
<tr><td colspan=2 align=center> <tr><td colspan=2 align=center>
<!--#if last_transaction--> <!--#if expr="_.len(undoable_transactions) == batch_size"-->
<a href="manage_UndoForm?first_transaction:int=<!--#var <a href="manage_UndoForm?first_transaction:int=<!--#var
last_transaction-->&last_transaction:int=<!--#var last_transaction-->&last_transaction:int=<!--#var
expr="last_transaction*2-first_transaction"-->"> expr="last_transaction+batch_size"-->">
<!--#else--> Earlier Transactions</a>
<a href="manage_UndoForm?first_transaction:int=20&last_transaction:int=40">
<!--#/if--> <!--#/if-->
Earlier Transactions</h>
</td></tr> </td></tr>
<tr><td></td></tr> <tr><td></td></tr>
<tr><td colspan=2 align=center><INPUT TYPE="SUBMIT" VALUE=" Undo "></td></tr> <tr><td colspan=2 align=center><INPUT TYPE="SUBMIT" VALUE=" Undo "></td></tr>
</table> </table>
</FORM> </FORM>
<!--#else-->
There are no transactions that can be undone.
<!--#/if-->
</BODY> </BODY>
</HTML> </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