blob: 890909c5aeb280759f6a0844c0202a2b9c81561d (
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
26
27
28
29
30
31
|
<? local form, viewlibrary, page_info, session = ... ?>
<? require("viewfunctions") ?>
<? --[[ DEBUG INFORMATION
io.write(html.cfe_unpack(form))
--]] ?>
<H1>Configuration</H1>
<H2>File Details</H2>
<DL>
<?
displayitem(form.value.filename)
displayitem(form.value.filesize)
displayitem(form.value.mtime)
?>
</DL>
<H2>File Content</H1>
<? 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="" method="POST">
<textarea name="filecontent">
<?= form.value.filecontent.value ?>
</textarea>
<DL><DT><input class="submit" type="submit" name="<?= form.option ?>" value="<?= form.option ?>"></DT></DL>
</form>
<? if viewlibrary and viewlibrary.dispatch_component and session.permissions.openssl.checkenvironment then
viewlibrary.dispatch_component("checkenvironment")
end ?>
|