summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
authorLars Hjemli <hjemli@gmail.com>2007-11-03 10:23:47 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-11-03 10:23:47 (UTC)
commitcda7194e300277fbad73595c70ecece02d772190 (patch) (side-by-side diff)
tree00ad3148122d869a178b536989f17afacc422b47 /ui-shared.c
parent68cf9b4f853177544a5d1c7b4a9eea4d2f5749d5 (diff)
downloadcgit-cda7194e300277fbad73595c70ecece02d772190.zip
cgit-cda7194e300277fbad73595c70ecece02d772190.tar.gz
cgit-cda7194e300277fbad73595c70ecece02d772190.tar.bz2
Don't include current path in menu links
The menu-links are a lot more predictable this way. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 88dd6b8..f9f02bc 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -453,56 +453,55 @@ void add_hidden_formfields(int incl_head, int incl_search, char *page)
void cgit_print_pageheader(char *title, int show_search)
{
static const char *default_info = "This is cgit, a fast webinterface for git repositories";
int header = 0;
html("<div id='sidebar'>\n");
html("<a href='");
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, cgit_query_path, 0, NULL, NULL);
+ cgit_query_sha1, 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,
- cgit_query_path);
+ 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");
html("<p>\n<h1>search</h1>\n");
html("<form method='get' action='");
if (cgit_virtual_root)
html_attr(cgit_fileurl(cgit_query_repo, "log",
cgit_query_path, NULL));
html("'>\n");
add_hidden_formfields(1, 0, "log");
html("<select name='qt'>\n");
html_option("grep", "log msg", cgit_query_grep);
html_option("author", "author", cgit_query_grep);
html_option("committer", "committer", cgit_query_grep);
html("</select>\n");
html("<input class='txt' type='text' name='q' value='");