all repos — cgit @ cd79c16844b4006d4fd6f4b82d2f6e7e19b20c8e

a hyperfast web frontend for git written in c

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>
Lars Hjemli hjemli@gmail.com
Sun, 17 Jun 2007 14:58:45 +0200
commit

cd79c16844b4006d4fd6f4b82d2f6e7e19b20c8e

parent

42a7eb9c73457319a3fd5441ff26046fc9b31dad

2 files changed, 4 insertions(+), 1 deletions(-)

jump to
M cgit.ccgit.c

@@ -92,7 +92,7 @@ cgit_print_pageheader(cgit_query_page, show_search);

switch(cgit_cmd) { case CMD_LOG: - cgit_print_log(cgit_query_head, cgit_query_ofs, + cgit_print_log(cgit_query_sha1, cgit_query_ofs, cgit_max_commit_count, cgit_query_search, cgit_query_path, 1); break;
M ui-log.cui-log.c

@@ -59,6 +59,9 @@ const char *argv[] = {NULL, tip, NULL, NULL, NULL};

int argc = 2; int i; + if (!tip) + argv[1] = cgit_query_head; + if (grep) argv[argc++] = fmt("--grep=%s", grep); if (path) {