author | Lars Hjemli <hjemli@gmail.com> | 2007-11-03 10:33:28 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-11-03 10:33:28 (UTC) |
commit | 1e4ff4dc501ca82490ac70fb3b623c3857991af3 (patch) (side-by-side diff) | |
tree | ea96bf0ec93653797c42965b308d913a8b6cd2d9 | |
parent | cda7194e300277fbad73595c70ecece02d772190 (diff) | |
download | cgit-1e4ff4dc501ca82490ac70fb3b623c3857991af3.zip cgit-1e4ff4dc501ca82490ac70fb3b623c3857991af3.tar.gz cgit-1e4ff4dc501ca82490ac70fb3b623c3857991af3.tar.bz2 |
Don't include current SHA1 in 'log' menu-item
This ensures that the menu-item always prints the log for the active branch.
Predictability is good.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | ui-shared.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-shared.c b/ui-shared.c index f9f02bc..ca8dd3d 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -460,34 +460,34 @@ void cgit_print_pageheader(char *title, int show_search) html_attr(cgit_rooturl()); htmlf("'><div id='logo'><img src='%s' alt='cgit'/></div></a>\n", cgit_logo); html("<div class='infobox'>"); if (cgit_query_repo) { html("<h1>"); html_txt(strrpart(cgit_repo->name, 20)); html("</h1>\n"); html_txt(cgit_repo->desc); if (cgit_repo->owner) { html("<p>\n<h1>owner</h1>\n"); html_txt(cgit_repo->owner); } html("<p>\n<h1>navigate</h1>\n"); reporevlink(NULL, "summary", NULL, "menu", cgit_query_head, NULL, NULL); - cgit_log_link("log", NULL, "menu", cgit_query_head, - cgit_query_sha1, NULL, 0, NULL, NULL); + cgit_log_link("log", NULL, "menu", cgit_query_head, NULL, NULL, + 0, NULL, NULL); cgit_tree_link("tree", NULL, "menu", cgit_query_head, cgit_query_sha1, NULL); cgit_commit_link("commit", NULL, "menu", cgit_query_head, cgit_query_sha1); cgit_diff_link("diff", NULL, "menu", cgit_query_head, cgit_query_sha1, cgit_query_sha2, NULL); for_each_ref(print_archive_ref, &header); html("<p>\n<h1>branch</h1>\n"); html("<form method='get' action=''>\n"); add_hidden_formfields(0, 1, cgit_query_page); html("<select name='h' onchange='this.form.submit();'>\n"); for_each_branch_ref(print_branch_option, cgit_query_head); html("</select>\n"); html("</form>\n"); |