diff options
author | Natanael Copa <natanael.copa@gmail.com> | 2008-07-28 06:48:16 +0000 |
---|---|---|
committer | Natanael Copa <natanael.copa@gmail.com> | 2008-07-28 06:48:16 +0000 |
commit | ee7b3354f03abc865abe51a5ccea07b376d932ce (patch) | |
tree | 763f1dbbc436dd37e2bdcce8f9696a0204aa64e0 /shorewall-confirmation-html.lsp | |
parent | 273d7e350c05aaa70f2481969a63d8230d6dab61 (diff) | |
download | acf-shorewall-ee7b3354f03abc865abe51a5ccea07b376d932ce.tar.bz2 acf-shorewall-ee7b3354f03abc865abe51a5ccea07b376d932ce.tar.xz |
use <% %> instead of <? ?>
git-svn-id: svn://svn.alpinelinux.org/acf/shorewall/trunk@1323 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'shorewall-confirmation-html.lsp')
-rw-r--r-- | shorewall-confirmation-html.lsp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/shorewall-confirmation-html.lsp b/shorewall-confirmation-html.lsp index c0e6268..8cef35e 100644 --- a/shorewall-confirmation-html.lsp +++ b/shorewall-confirmation-html.lsp @@ -1,4 +1,4 @@ -<? local view = ... ?> +<% local view = ... %> <h1>SECURITY CONFIRMATION</h1> @@ -9,29 +9,29 @@ <DL> <DT>Undo and go back</dt> -<DD><form name="undo" action="<?= view.url ?>" method="POST"> +<DD><form name="undo" action="<%= view.url %>" method="POST"> <input type=submit class="submit" name="confirm" value="Back"> </form></DD> </DL> <dl> <dt>Preform check of configs</dt> -<dd><form name="check" action="<?= view.url .. "/check" ?>" method="POST"><input type=submit name="check" value="check" class="submit"></form></dd> +<dd><form name="check" action="<%= view.url .. "/check" %>" method="POST"><input type=submit name="check" value="check" class="submit"></form></dd> </dl> -<? if (view.previousaction) then ?> +<% if (view.previousaction) then %> <DL> <dt>Confirm action</dt> <DD> <form name="confirm" action="" method="POST"> - <input type=submit class="submit" name="confirm" value="<?= view.previousaction ?>"> + <input type=submit class="submit" name="confirm" value="<%= view.previousaction %>"> </form> </DD> </DL> -<? elseif (view.startstop) and (view.startstop.cmdresult) then ?> +<% elseif (view.startstop) and (view.startstop.cmdresult) then %> <DL> <DT>Result of previous action</DT> - <DD><pre><?= view.startstop.cmdresult ?></pre></DD> + <DD><pre><%= view.startstop.cmdresult %></pre></DD> </DL> -<? end ?> +<% end %> |