summaryrefslogtreecommitdiffstats
path: root/app/filedetails-html.lsp
blob: 34c8803cb9df151fe2d6507e107c8712343d5240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<? local form, viewlibrary, page_info = ... ?>
<? require("viewfunctions") ?>

<H1>Configuration</H1>
<H2>Expert Configuration</H2>
<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">
<textarea name="filecontent">
<?= form.value.filecontent.value ?>
</textarea>
<? if form.value.filecontent.errtxt then ?><P CLASS='error'><?= string.gsub(form.value.filecontent.errtxt, "\n", "<BR>") ?></P><? end ?>

<DL><DT></DT><DD><input class="submit" type="submit" name="<?= form.option ?>" value="<?= form.option ?>"></DD></DL>
</form>