0
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local Io = require "luan:Io.luan"
|
|
4 local Http = require "luan:http/Http.luan"
|
|
5 local Shared = require "site:/lib/Shared.luan"
|
|
6 local head = Shared.head or error()
|
|
7 local header = Shared.private_header or error()
|
|
8
|
|
9
|
|
10 return function()
|
|
11 Io.stdout = Http.response.text_writer()
|
|
12 %>
|
|
13 <!doctype html>
|
|
14 <html>
|
|
15 <head>
|
|
16 <% head() %>
|
|
17 </head>
|
|
18 <body>
|
|
19 <% header() %>
|
|
20 <div content>
|
|
21 <h1>Private Tools</h1>
|
88
|
22 <p><a href="users.html">users</a></p>
|
1
|
23 <p><a href="config.html">configure</a></p>
|
6
|
24 <p>
|
|
25 public tools:
|
|
26 <a href="/tools/dimensions.html">dimensions</a>
|
|
27 - <a href="/tools/cookies.html">cookies</a>
|
|
28 - <a href="/tools/request.txt">HTTP request</a>
|
|
29 </p>
|
88
|
30 <p><a href="../local/logs/">logs</a></p>
|
2
|
31 <p><a href="lucene.html">lucene</a></p>
|
4
|
32 <p><a href="shell.html">luan shell</a></p>
|
|
33 <p><a href="run">luan batch</a></p>
|
0
|
34 </div>
|
|
35 </body>
|
|
36 </html>
|
|
37 <%
|
|
38 end
|