3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
render_userpage(co: &lib.srv.convo, actor: &lib.store.actor)
var ti: lib.str.acc defer ti:free()
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(actor) defer pftxt:free()
var doc = data.view.docskel {
instance = co.srv.cfg.instance.ptr;
title = ti.buf;
body = pftxt.ptr;
class = 'profile';
}
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]})
end
return render_userpage
|
|
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
render_userpage(co: &lib.srv.convo, actor: &lib.store.actor)
var ti: lib.str.acc defer ti:free()
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.ptr;
title = ti.buf;
body = pftxt.ptr;
class = 'profile';
navlinks = co.navbar.ptr;
}
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]})
end
return render_userpage
|