mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
ui-blame: Break out emit_blame_entry into component methods
Signed-off-by: Jeff Smith <whydoubt@gmail.com> Reviewed-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
parent
6b5b655f6d
commit
2b95c9d49c
48
ui-blame.c
48
ui-blame.c
@ -41,36 +41,52 @@ static char *emit_suspect_detail(struct blame_origin *suspect)
|
|||||||
return strbuf_detach(&detail, NULL);
|
return strbuf_detach(&detail, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void emit_blame_entry(struct blame_scoreboard *sb,
|
static void emit_blame_entry_hash(struct blame_entry *ent)
|
||||||
struct blame_entry *ent)
|
|
||||||
{
|
{
|
||||||
struct blame_origin *suspect = ent->suspect;
|
struct blame_origin *suspect = ent->suspect;
|
||||||
struct object_id *oid = &suspect->commit->object.oid;
|
struct object_id *oid = &suspect->commit->object.oid;
|
||||||
const char *numberfmt = "<a id='n%1$d' href='#n%1$d'>%1$d</a>\n";
|
|
||||||
const char *cp, *cpend;
|
|
||||||
|
|
||||||
char *detail = emit_suspect_detail(suspect);
|
char *detail = emit_suspect_detail(suspect);
|
||||||
|
|
||||||
html("<tr><td class='sha1 hashes'>");
|
|
||||||
cgit_commit_link(find_unique_abbrev(oid->hash, DEFAULT_ABBREV), detail,
|
cgit_commit_link(find_unique_abbrev(oid->hash, DEFAULT_ABBREV), detail,
|
||||||
NULL, ctx.qry.head, oid_to_hex(oid), suspect->path);
|
NULL, ctx.qry.head, oid_to_hex(oid), suspect->path);
|
||||||
html("</td>\n");
|
|
||||||
|
|
||||||
free(detail);
|
free(detail);
|
||||||
|
}
|
||||||
|
|
||||||
if (ctx.cfg.enable_tree_linenumbers) {
|
static void emit_blame_entry_linenumber(struct blame_entry *ent)
|
||||||
unsigned long lineno = ent->lno;
|
{
|
||||||
html("<td class='linenumbers'><pre>");
|
const char *numberfmt = "<a id='n%1$d' href='#n%1$d'>%1$d</a>\n";
|
||||||
while (lineno < ent->lno + ent->num_lines)
|
|
||||||
htmlf(numberfmt, ++lineno);
|
unsigned long lineno = ent->lno;
|
||||||
html("</pre></td>\n");
|
while (lineno < ent->lno + ent->num_lines)
|
||||||
}
|
htmlf(numberfmt, ++lineno);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void emit_blame_entry_line(struct blame_scoreboard *sb,
|
||||||
|
struct blame_entry *ent)
|
||||||
|
{
|
||||||
|
const char *cp, *cpend;
|
||||||
|
|
||||||
cp = blame_nth_line(sb, ent->lno);
|
cp = blame_nth_line(sb, ent->lno);
|
||||||
cpend = blame_nth_line(sb, ent->lno + ent->num_lines);
|
cpend = blame_nth_line(sb, ent->lno + ent->num_lines);
|
||||||
|
|
||||||
html("<td class='lines'><pre><code>");
|
|
||||||
html_ntxt(cp, cpend - cp);
|
html_ntxt(cp, cpend - cp);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void emit_blame_entry(struct blame_scoreboard *sb,
|
||||||
|
struct blame_entry *ent)
|
||||||
|
{
|
||||||
|
html("<tr><td class='sha1 hashes'>");
|
||||||
|
emit_blame_entry_hash(ent);
|
||||||
|
html("</td>\n");
|
||||||
|
|
||||||
|
if (ctx.cfg.enable_tree_linenumbers) {
|
||||||
|
html("<td class='linenumbers'><pre>");
|
||||||
|
emit_blame_entry_linenumber(ent);
|
||||||
|
html("</pre></td>\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
html("<td class='lines'><pre><code>");
|
||||||
|
emit_blame_entry_line(sb, ent);
|
||||||
html("</code></pre></td></tr>\n");
|
html("</code></pre></td></tr>\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user