about summary refs log tree commit diff stats
path: root/ui-log.c
diff options
context:
space:
mode:
authorLars Hjemli2007-06-17 14:58:45 +0200
committerLars Hjemli2007-06-17 14:58:45 +0200
commitcd79c16844b4006d4fd6f4b82d2f6e7e19b20c8e (patch)
treec303d75883492c89ed3243eadb31bdf2f3b9e660 /ui-log.c
parentAdd cgit_commit_link() + support for id=sha1 to commit view (diff)
downloadcgit-cd79c16844b4006d4fd6f4b82d2f6e7e19b20c8e.tar.gz
cgit-cd79c16844b4006d4fd6f4b82d2f6e7e19b20c8e.zip
ui-log: honor id=sha1 on querystring
This teaches ui-log to prefer id=sha1 and fallback to h=rev if no id-
parameter is specified. With this change, summary, log, commit and tree
views now passes current branch using h parameter and current revision
using id parameter.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-log.c')
-rw-r--r--ui-log.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui-log.c b/ui-log.c index 8d774b0..95cb453 100644 --- a/ui-log.c +++ b/ui-log.c
@@ -59,6 +59,9 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, i
59 int argc = 2; 59 int argc = 2;
60 int i; 60 int i;
61 61
62 if (!tip)
63 argv[1] = cgit_query_head;
64
62 if (grep) 65 if (grep)
63 argv[argc++] = fmt("--grep=%s", grep); 66 argv[argc++] = fmt("--grep=%s", grep);
64 if (path) { 67 if (path) {