blob: f1c4958e70a2f2848e60abb9cedcc98ec0675a6a (
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
32
33
|
<? local view = ... ?>
<html>
<body>
<h1>Edit configuration</h1>
<h2>Details</h2>
<dt>File name</dt>
<dd><?= view.filecontent.filedetails.longname ?></dd>
<dt>File size</dt>
<dd><?= view.filecontent.filedetails.size ?></dd>
<dt>Last modified</dt>
<dd><?= view.filecontent.filedetails.mtimelong ?></dd>
<dt>Mode</dt>
<dd><?= view.filecontent.filedetails.mode ?></dd>
<dt>Owner:Group</dt>
<dd><?= view.filecontent.filedetails.gid ?>:<?= view.filecontent.filedetails.group ?></dd>
<h2>Content</h2>
<textarea name="" style="width:100%;height:400px;"><?= view.filecontent.value ?></textarea>
<h2>DEUB INFO</h2>
<?
for a,b in pairs(view.filecontent.filedetails) do
print (a,b .. "<BR>")
end
?>
</body>
</html>
|