html: html_ntxt with no ellipsis

For implementing a ui-blame page, there is need for a function that
outputs a selection from a block of text, transformed for HTML output,
but with no further modifications or additions.

Signed-off-by: Jeff Smith <whydoubt@gmail.com>
Reviewed-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
Jeff Smith
2017-10-01 23:39:05 -05:00
gecommit door John Keeping
bovenliggende 3b485cc542
commit 70787254b2
3 gewijzigde bestanden met toevoegingen van 14 en 23 verwijderingen

Bestand weergeven

@ -329,7 +329,8 @@ void cgit_print_repolist(void)
repourl = cgit_repourl(ctx.repo->url);
html_link_open(repourl, NULL, NULL);
free(repourl);
html_ntxt(ctx.cfg.max_repodesc_len, ctx.repo->desc);
if (html_ntxt(ctx.repo->desc, ctx.cfg.max_repodesc_len) < 0)
html("...");
html_link_close();
html("</td><td>");
if (ctx.cfg.enable_index_owner) {