summaryrefslogtreecommitdiffstats
path: root/lbu-config-html.lsp
blob: 24ef5a169b3473e7292aa103f9e91f1f10ea7e5f (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<? local view = ... ?>

<h1>SYSTEM INFO</h1>

<dl>
<dt>Program status</dt>
<dd><?= view.status.status or "" ?></dd>
</dl>

<dl>
<dt>Program version</dt>
<dd><?= view.status.version ?></dd>
</dl>

<H1>CONFIG</H1>
<H2>Advanced config</H2>
<H3>Storage media</H3>
<dl>
<dt>Default media for commit</dt>
<dd><select name="LBU_MEDIA" size="1">
<option value="">No default</option>
<option value="floppy">floppy</option>
<option value="usb">usb</option>
</select></dd>
</dl>

<H3>Security/Encryption</H3>

<dl>
<dt>Password protected commits</dt>
<dd><input type="checkbox" name="settings_startup"></dd>
</dl>

<dl>
<dt>Cipher to use at encryption</dt>
<dd><select name="hosts_list" size="1">
<option value="">aes-256-cbc</option>
</select>
(For possible ciphers, try: openssl -v)</dd>
</dl>

<dl>
<dt>Password when encrypting</dt>
<dd><input type="text" class="text" name="settings_startup"></dd>
</dl>

<H2>Save and apply above settings</H2>
<DL>
<DT>Apply settings</DT>
<DD><input class="submit" type="submit" value="Apply" disabled/></DD>
</DL>

<H1>MANAGEMENT</H1>

<dl>
<dt>Commit and save changes</dt>
<dd><form name="cmd" action="" method="POST">
<input type=submit class="submit" name="cmd" value="commit" disabled>
</form></dd>
</dl>

<? if (view.startstop) and (view.startstop.cmdresult) then ?>
<dl>
<dt>Previous action result</dt>
<dd><pre><?= view.startstop.cmdresult?></pre></dd>
</dl>
<? end ?>


<?
--[[ DEBUG INFORMATION
require("debugs")
io.write(debugs.variables(view))
--]]
?>

<? -- vim: set filetype=lua : ?>