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 | e4b39f4255aff6f974eb1a1e4e78fe01587814aa (patch) | |
tree | f59de39a0fb4325e2b8623d734cf23ab7a6ada56 /app/filedetails-html.lsp | |
parent | 4bf00bc98b36c0233e1ea833571acffefe2ec73b (diff) | |
download | acf-core-e4b39f4255aff6f974eb1a1e4e78fe01587814aa.tar.bz2 acf-core-e4b39f4255aff6f974eb1a1e4e78fe01587814aa.tar.xz |
use <% %> instead of <? ?>
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1323 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'app/filedetails-html.lsp')
-rw-r--r-- | app/filedetails-html.lsp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/app/filedetails-html.lsp b/app/filedetails-html.lsp index dac4444..8b5f75e 100644 --- a/app/filedetails-html.lsp +++ b/app/filedetails-html.lsp @@ -1,32 +1,32 @@ -<? local form, viewlibrary, page_info = ... ?> -<? require("viewfunctions") ?> +<% local form, viewlibrary, page_info = ... %> +<% require("viewfunctions") %> -<? if form.type == "form" then ?> +<% if form.type == "form" then %> <H1>Configuration</H1> <H2>Expert Configuration</H2> -<? else ?> +<% else %> <H1>View File</H1> -<? end ?> +<% end %> <H3>File Details</H3> <DL> -<? +<% displayitem(form.value.filename) displayitem(form.value.filesize) displayitem(form.value.mtime) -?> +%> </DL> <H3>File Content</H3> -<? if form.descr then ?><P CLASS='descr'><?= string.gsub(form.descr, "\n", "<BR>") ?></P><? end ?> -<? if form.errtxt then ?><P CLASS='error'><?= string.gsub(form.errtxt, "\n", "<BR>") ?></P><? end ?> -<form action="<?= page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action ?>" method="POST"> -<input type="hidden" name="filename" value="<?= form.value.filename.value ?>"> +<% if form.descr then %><P CLASS='descr'><%= string.gsub(form.descr, "\n", "<BR>") %></P><% end %> +<% if form.errtxt then %><P CLASS='error'><%= string.gsub(form.errtxt, "\n", "<BR>") %></P><% end %> +<form action="<%= page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>" method="POST"> +<input type="hidden" name="filename" value="<%= form.value.filename.value %>"> <textarea name="filecontent"> -<?= form.value.filecontent.value ?> +<%= form.value.filecontent.value %> </textarea> -<? if form.value.filecontent.errtxt then ?><P CLASS='error'><?= string.gsub(form.value.filecontent.errtxt, "\n", "<BR>") ?></P><? end ?> +<% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(form.value.filecontent.errtxt, "\n", "<BR>") %></P><% end %> -<? if form.type == "form" then ?> -<DL><DT></DT><DD><input class="submit" type="submit" name="<?= form.option ?>" value="<?= form.option ?>"></DD></DL> -<? end ?> +<% if form.type == "form" then %> +<DL><DT></DT><DD><input class="submit" type="submit" name="<%= form.option %>" value="<%= form.option %>"></DD></DL> +<% end %> </form> |