4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
var ti: lib.str.acc
if co.aid ~= 0 and co.who.id == actor.id then
ti:compose('my profile')
else
ti:compose('profile :: ', actor.handle)
end
var pftxt = lib.render.profile(co,actor) defer pftxt:free()
var doc = data.view.docskel {
instance = co.srv.cfg.instance;
title = ti:finalize();
body = pftxt;
class = lib.str.plit 'profile';
navlinks = co.navbar;
}
var hdrs = array(
lib.http.header { 'Content-Type', 'text/html; charset=UTF-8' }
)
doc:send(co.con,200,[lib.mem.ptr(lib.http.header)] {ct = 1, ptr = &hdrs[0]})
doc.title:free()
end
return render_userpage
|
<
<
<
|
>
|
<
|
<
<
<
<
|
|
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
var ti: lib.str.acc
if co.aid ~= 0 and co.who.id == actor.id then
ti:compose('my profile')
else
ti:compose('profile :: ', actor.handle)
end
var pftxt = lib.render.profile(co,actor) defer pftxt:free()
var tiptr = ti:finalize()
co:stdpage([lib.srv.convo.page] {
title = tiptr; body = pftxt;
class = lib.str.plit 'profile';
})
tiptr:free()
end
return render_userpage
|