From 9fb53af215639fcd3bfb876fa9c8bac221244bdf Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Mon, 14 May 2007 11:10:59 +0200 Subject: Add log filtering by path and link to it from tree view This enables path-filtering in log-view, and adds a link per entry in tree-view to show the log for each file/directory. Signed-off-by: Lars Hjemli --- cgit.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cgit.c') diff --git a/cgit.c b/cgit.c index 3d85a08..9e63d18 100644 --- a/cgit.c +++ b/cgit.c @@ -108,9 +108,10 @@ static void cgit_print_repo_page(struct cacheitem *item) if (!strcmp(cgit_query_page, "log")) { cgit_print_log(cgit_query_head, cgit_query_ofs, - cgit_max_commit_count, cgit_query_search); + cgit_max_commit_count, cgit_query_search, + cgit_query_path); } else if (!strcmp(cgit_query_page, "tree")) { - cgit_print_tree(cgit_query_sha1, cgit_query_path); + cgit_print_tree(cgit_query_head, cgit_query_sha1, cgit_query_path); } else if (!strcmp(cgit_query_page, "commit")) { cgit_print_commit(cgit_query_sha1); } else if (!strcmp(cgit_query_page, "view")) { -- cgit v1.2.3-59-g8ed1b