summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c53
1 files changed, 50 insertions, 3 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 83758f7..d08ede9 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -116,2 +116,45 @@ char *cgit_currurl()
116 116
117static void site_url(char *page, char *search)
118{
119 char *delim = "?";
120
121 if (ctx.cfg.virtual_root) {
122 html_attr(ctx.cfg.virtual_root);
123 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/')
124 html("/");
125 } else
126 html(ctx.cfg.script_name);
127
128 if (page) {
129 htmlf("?p=%s", page);
130 delim = "&";
131 }
132 if (search) {
133 html(delim);
134 html("q=");
135 html_attr(search);
136 }
137}
138
139static void site_link(char *page, char *name, char *title, char *class,
140 char *search)
141{
142 html("<a");
143 if (title) {
144 html(" title='");
145 html_attr(title);
146 html("'");
147 }
148 if (class) {
149 html(" class='");
150 html_attr(class);
151 html("'");
152 }
153 html(" href='");
154 site_url(page, search);
155 html("'>");
156 html_txt(name);
157 html("</a>");
158}
159
117static char *repolink(char *title, char *class, char *page, char *head, 160static char *repolink(char *title, char *class, char *page, char *head,
@@ -533,2 +576,6 @@ void cgit_print_pageheader(struct cgit_context *ctx)
533 ctx->qry.sha1, ctx->qry.sha2, NULL); 576 ctx->qry.sha1, ctx->qry.sha2, NULL);
577 if (ctx->repo->readme)
578 reporevlink("about", "about", NULL,
579 hc(cmd, "about"), ctx->qry.head, NULL,
580 NULL);
534 html("</td><td class='form'>"); 581 html("</td><td class='form'>");
@@ -551,5 +598,5 @@ void cgit_print_pageheader(struct cgit_context *ctx)
551 } else { 598 } else {
552 html("<a class='active' href='"); 599 site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL);
553 html_attr(cgit_rooturl()); 600 if (ctx->cfg.root_readme)
554 html("'>index</a>\n"); 601 site_link("about", "about", NULL, hc(cmd, "about"), NULL);
555 html("</td><td class='form'>"); 602 html("</td><td class='form'>");