Differences From Artifact [95dc7dcbc1]:
- File render/compose.t — part of check-in [7c8769bf96] at 2021-01-10 08:19:56 on branch trunk — begin replacing inefficient memory management with a pool-based solution; fix memory leaks (user: lexi, size: 821) [annotate] [blame] [check-ins using]
To Artifact [4959831ced]:
- File render/compose.t — part of check-in [8398fcda5a] at 2021-01-10 16:44:33 on branch trunk — add avatar panel (user: lexi, size: 795) [annotate] [blame] [check-ins using]
15 15 form.acl = edit.acl 16 16 end 17 17 if acc ~= nil then form:append(acc) return end 18 18 19 19 var cotxt = form:poolstr(&co.srv.pool) -- defer cotxt:free() 20 20 21 21 var doc = [lib.srv.convo.page] { 22 - title = lib.str.plit 'compose'; 22 + title = 'compose'; 23 23 body = cotxt; 24 - class = lib.str.plit 'compose'; 24 + class = 'compose'; 25 25 cache = true; 26 26 } 27 27 28 28 co:stdpage(doc) 29 29 end 30 30 31 31 return render_compose