mirror of
https://git.zx2c4.com/cgit
synced 2025-07-02 14:24:33 +02:00
Add display of tree content w/ui-tree.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
58d04f6523
commit
06fe0c2f47
9 changed files with 113 additions and 8 deletions
7
ui-log.c
7
ui-log.c
|
@ -82,6 +82,11 @@ static void cgit_print_commit_shortlog(struct commit *commit)
|
|||
html_link_close();
|
||||
html("</td><td>");
|
||||
html_txt(author);
|
||||
html("</td><td><a href='");
|
||||
html_attr(cgit_pageurl(cgit_query_repo, "tree",
|
||||
fmt("id=%s",
|
||||
sha1_to_hex(commit->tree->object.sha1))));
|
||||
html("'>tree</a>");
|
||||
html("</td></tr>\n");
|
||||
}
|
||||
|
||||
|
@ -102,7 +107,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt)
|
|||
|
||||
html("<h2>Log</h2>");
|
||||
html("<table class='list'>");
|
||||
html("<tr><th>Date</th><th>Message</th><th>Author</th></tr>\n");
|
||||
html("<tr><th>Date</th><th>Message</th><th>Author</th><th>Link</th></tr>\n");
|
||||
while ((commit = get_revision(&rev)) != NULL && n++ < 100) {
|
||||
cgit_print_commit_shortlog(commit);
|
||||
free(commit->buffer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue