Add prefix parameter to cgit_diff_tree()

This paramter can be used to restrict a diff to the specified path prefix.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
Lars Hjemli
2007-10-01 11:42:19 +02:00
rodzic 98fcf7227c
commit f527a57c8a
3 zmienionych plików z 11 dodań i 5 usunięć

Wyświetl plik

@ -131,10 +131,9 @@ void cgit_print_diff(const char *new_rev, const char *old_rev)
if (!commit2 || parse_commit(commit2))
cgit_print_error(fmt("Bad commit: %s", sha1_to_hex(sha2)));
}
html("<table class='diff'>");
html("<tr><td>");
cgit_diff_tree(sha2, sha1, filepair_cb);
cgit_diff_tree(sha2, sha1, filepair_cb, NULL);
html("</td></tr>");
html("</table>");
}