mirror of
https://git.zx2c4.com/cgit
synced 2025-07-16 05:04:35 +02:00
Add commitdiff between commit and each of it's parent
A link is added next to each parent of a commit, leading to the new diff-functionality in ui-diff.c. Also added support for a path-parameter to filelevel diffs accessed via the diffstat. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
8a3685bcf2
commit
6a8749d3bd
5 changed files with 63 additions and 10 deletions
2
cgit.c
2
cgit.c
|
@ -116,7 +116,7 @@ static void cgit_print_repo_page(struct cacheitem *item)
|
|||
} else if (!strcmp(cgit_query_page, "view")) {
|
||||
cgit_print_view(cgit_query_sha1, cgit_query_path);
|
||||
} else if (!strcmp(cgit_query_page, "diff")) {
|
||||
cgit_print_diff(cgit_query_sha1, cgit_query_sha2);
|
||||
cgit_print_diff(cgit_query_sha1, cgit_query_sha2, cgit_query_path);
|
||||
} else {
|
||||
cgit_print_error("Invalid request");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue