summaryrefslogtreecommitdiffstats
path: root/weblog-status-html.lsp
blob: fae98c01daf43b6455b504a6127732f313b5510e (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
<% local data, viewlibrary, page_info, session = ... 
require("viewfunctions")
%>

<% displaycommandresults({"createdatabase"}, session, true) %>

<H1>Weblog Database Status</H1>
<DL>
<% local status
if viewlibrary and viewlibrary.dispatch_component then
	if session.permissions.postgresql and session.permissions.postgresql.status then
		status = viewlibrary.dispatch_component("postgresql/postgresql/status", nil, true)
	end
end %>

<DT>Database status</DT><DD>
<% if status then %>
<%= status.value.status.value %>
<% else %>
unknown
<% end %>
</DD>

<DT>Weblog Database</DT><DD>
<% if data.value then %>
present
<% else %>
missing
<% if viewlibrary and viewlibrary.dispatch_component then
	viewlibrary.dispatch_component("createdatabase")
end %>
<% end %>
</DD>
</DL>