Differences From Artifact [248ab207d4]:
- File render/conf/profile.t — part of check-in [d228cd7fcb] at 2020-12-28 23:42:22 on branch trunk — vastly improve the setup process (user: lexi, size: 443) [annotate] [blame] [check-ins using]
To Artifact [7f970c2f4a]:
- File render/conf/profile.t — part of check-in [d4ecea913f] at 2020-12-31 00:15:53 on branch trunk — add lots more shit (user: lexi, size: 442) [annotate] [blame] [check-ins using]
4 4 5 5 local terra cs(s: rawstring) 6 6 return pstr { ptr = s, ct = lib.str.sz(s) } 7 7 end 8 8 9 9 local terra 10 10 render_conf_profile(co: &lib.srv.convo, path: lib.mem.ptr(pref)): pstr 11 - 12 11 var c = data.view.conf_profile { 13 12 handle = cs(co.who.handle); 14 13 nym = cs(lib.coalesce(co.who.nym,'')); 15 14 bio = cs(lib.coalesce(co.who.bio,'')); 16 15 } 17 16 return c:tostr() 18 17 end 19 18 20 19 return render_conf_profile