diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-05-14 11:10:59 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-14 11:13:18 +0200 |
commit | 9fb53af215639fcd3bfb876fa9c8bac221244bdf (patch) | |
tree | 3ebbebebed59b53066e16720a32e1b34c54dc609 /cgit.c | |
parent | cgit v0.4 (diff) | |
download | cgit-pink-9fb53af215639fcd3bfb876fa9c8bac221244bdf.tar.gz cgit-pink-9fb53af215639fcd3bfb876fa9c8bac221244bdf.zip |
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 <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | cgit.c | 5 | ||||
-rw-r--r-- | cgit.css | 5 |
2 files changed, 8 insertions, 2 deletions
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")) { diff --git a/cgit.css b/cgit.css index fe0ba50..6231e28 100644 --- a/cgit.css +++ b/cgit.css @@ -189,6 +189,11 @@ td.filesize { font-family: monospace; } +td.links { + font-size: 80%; + padding-left: 2em; +} + td.filemode { font-family: monospace; } |