diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-05-14 13:10:59 +0400 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-14 13:13:18 +0400 |
commit | 9fb53af215639fcd3bfb876fa9c8bac221244bdf (patch) | |
tree | 3ebbebebed59b53066e16720a32e1b34c54dc609 /cgit.h | |
parent | 4fdf571c888fd38ae362684c429a3bdf24240ef7 (diff) |
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 'cgit.h')
-rw-r--r-- | cgit.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -169,10 +169,10 @@ extern void cgit_print_snapshot_start(const char *mimetype, extern void cgit_print_repolist(struct cacheitem *item); extern void cgit_print_summary(); -extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep); +extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path); extern void cgit_print_view(const char *hex, char *path); extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); -extern void cgit_print_tree(const char *hex, char *path); +extern void cgit_print_tree(const char *rev, const char *hex, char *path); extern void cgit_print_commit(const char *hex); extern void cgit_print_diff(const char *old_hex, const char *new_hex, char *path); extern void cgit_print_snapshot(struct cacheitem *item, const char *hex, |