1
2
3
4
5
6
7
8
9
10
11
12
13
14
..
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
-- vim: ft=terra
local pstr = lib.mem.ptr(int8)
local pref = lib.mem.ref(int8)
local mappings = {
{url = 'profile', title = 'account profile', render = 'profile'};
{url = 'avi', title = 'avatar', render = 'avatar'};
{url = 'ui', title = 'user interface', render = 'ui'};
{url = 'sec', title = 'security', render = 'sec_overlay'};
{url = 'rel', title = 'relationships', render = 'rel'};
{url = 'qnt', title = 'quarantine', render = 'quarantine'};
{url = 'acl', title = 'access control shortcuts', render = 'acl'};
{url = 'rooms', title = 'chatrooms', render = 'rooms'};
{url = 'circles', title = 'circles', render = 'circles'};
................................................................................
pg:append(&fnpg)
pgt = fnpg:finalize()
else pgt = pg:poolstr(&co.srv.pool) end
--defer pgt:free()
co:stdpage([lib.srv.convo.page] {
title = 'configure'; body = pgt;
class = lib.str.plit 'conf';
cache = false;
})
--if panel.ct ~= 0 then panel:free() end
end
return render_conf
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
..
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
-- vim: ft=terra
local pstr = lib.mem.ptr(int8)
local pref = lib.mem.ref(int8)
local mappings = {
{url = 'profile', title = 'account profile', render = 'profile'};
{url = 'avi', title = 'avatar', render = 'avi'};
{url = 'ui', title = 'user interface', render = 'ui'};
{url = 'sec', title = 'security', render = 'sec_overlay'};
{url = 'rel', title = 'relationships', render = 'rel'};
{url = 'qnt', title = 'quarantine', render = 'quarantine'};
{url = 'acl', title = 'access control shortcuts', render = 'acl'};
{url = 'rooms', title = 'chatrooms', render = 'rooms'};
{url = 'circles', title = 'circles', render = 'circles'};
................................................................................
pg:append(&fnpg)
pgt = fnpg:finalize()
else pgt = pg:poolstr(&co.srv.pool) end
--defer pgt:free()
co:stdpage([lib.srv.convo.page] {
title = 'configure'; body = pgt;
class = 'conf';
cache = false;
})
--if panel.ct ~= 0 then panel:free() end
end
return render_conf
|