-rw-r--r-- | cgit.c | 16 | ||||
-rw-r--r-- | cgit.h | 2 | ||||
-rw-r--r-- | cmd.c | 9 | ||||
-rw-r--r-- | ui-repolist.c | 15 | ||||
-rw-r--r-- | ui-repolist.h | 1 | ||||
-rw-r--r-- | ui-shared.c | 58 | ||||
-rw-r--r-- | ui-summary.c | 14 | ||||
-rw-r--r-- | ui-summary.h | 1 |
8 files changed, 100 insertions, 16 deletions
@@ -21,2 +21,6 @@ void config_cb(const char *name, const char *value) | |||
21 | ctx.cfg.root_title = xstrdup(value); | 21 | ctx.cfg.root_title = xstrdup(value); |
22 | else if (!strcmp(name, "root-desc")) | ||
23 | ctx.cfg.root_desc = xstrdup(value); | ||
24 | else if (!strcmp(name, "root-readme")) | ||
25 | ctx.cfg.root_readme = xstrdup(value); | ||
22 | else if (!strcmp(name, "css")) | 26 | else if (!strcmp(name, "css")) |
@@ -161,2 +165,3 @@ static void prepare_context(struct cgit_context *ctx) | |||
161 | ctx->cfg.root_title = "Git repository browser"; | 165 | ctx->cfg.root_title = "Git repository browser"; |
166 | ctx->cfg.root_desc = "a fast webinterface for the git dscm"; | ||
162 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; | 167 | ctx->cfg.script_name = CGIT_SCRIPT_NAME; |
@@ -306,3 +311,12 @@ static void process_request(struct cgit_context *ctx) | |||
306 | 311 | ||
307 | if (cmd->want_repo && prepare_repo_cmd(ctx)) | 312 | if (cmd->want_repo && !ctx->repo) { |
313 | cgit_print_http_headers(ctx); | ||
314 | cgit_print_docstart(ctx); | ||
315 | cgit_print_pageheader(ctx); | ||
316 | cgit_print_error(fmt("No repository selected")); | ||
317 | cgit_print_docend(); | ||
318 | return; | ||
319 | } | ||
320 | |||
321 | if (ctx->repo && prepare_repo_cmd(ctx)) | ||
308 | return; | 322 | return; |
@@ -134,2 +134,4 @@ struct cgit_config { | |||
134 | char *root_title; | 134 | char *root_title; |
135 | char *root_desc; | ||
136 | char *root_readme; | ||
135 | char *script_name; | 137 | char *script_name; |
@@ -22,2 +22,10 @@ | |||
22 | 22 | ||
23 | static void about_fn(struct cgit_context *ctx) | ||
24 | { | ||
25 | if (ctx->repo) | ||
26 | cgit_print_repo_readme(); | ||
27 | else | ||
28 | cgit_print_site_readme(); | ||
29 | } | ||
30 | |||
23 | static void blob_fn(struct cgit_context *ctx) | 31 | static void blob_fn(struct cgit_context *ctx) |
@@ -86,2 +94,3 @@ struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx) | |||
86 | static struct cgit_cmd cmds[] = { | 94 | static struct cgit_cmd cmds[] = { |
95 | def_cmd(about, 0, 1), | ||
87 | def_cmd(blob, 1, 0), | 96 | def_cmd(blob, 1, 0), |
diff --git a/ui-repolist.c b/ui-repolist.c index 98009c0..3f78e28 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -63,8 +63,2 @@ void print_header(int columns) | |||
63 | { | 63 | { |
64 | if (ctx.cfg.index_header) { | ||
65 | htmlf("<tr class='nohover'><td colspan='%d' class='include-block'>", | ||
66 | columns); | ||
67 | html_include(ctx.cfg.index_header); | ||
68 | html("</td></tr>"); | ||
69 | } | ||
70 | html("<tr class='nohover'>" | 64 | html("<tr class='nohover'>" |
@@ -92,2 +86,5 @@ void cgit_print_repolist() | |||
92 | 86 | ||
87 | if (ctx.cfg.index_header) | ||
88 | html_include(ctx.cfg.index_header); | ||
89 | |||
93 | html("<table summary='repository list' class='list nowrap'>"); | 90 | html("<table summary='repository list' class='list nowrap'>"); |
@@ -141 +138,7 @@ void cgit_print_repolist() | |||
141 | } | 138 | } |
139 | |||
140 | void cgit_print_site_readme() | ||
141 | { | ||
142 | if (ctx.cfg.root_readme) | ||
143 | html_include(ctx.cfg.root_readme); | ||
144 | } | ||
diff --git a/ui-repolist.h b/ui-repolist.h index c23e5d2..5b1e542 100644 --- a/ui-repolist.h +++ b/ui-repolist.h | |||
@@ -4,2 +4,3 @@ | |||
4 | extern void cgit_print_repolist(); | 4 | extern void cgit_print_repolist(); |
5 | extern void cgit_print_site_readme(); | ||
5 | 6 | ||
diff --git a/ui-shared.c b/ui-shared.c index 8a804c2..d08ede9 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -116,2 +116,45 @@ char *cgit_currurl() | |||
116 | 116 | ||
117 | static 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 | |||
139 | static 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 | |||
117 | static char *repolink(char *title, char *class, char *page, char *head, | 160 | static char *repolink(char *title, char *class, char *page, char *head, |
@@ -512,3 +555,6 @@ void cgit_print_pageheader(struct cgit_context *ctx) | |||
512 | html(">"); | 555 | html(">"); |
513 | html_txt("a fast webinterface for the git dscm"); | 556 | if (ctx->cfg.root_desc) |
557 | html_txt(ctx->cfg.root_desc); | ||
558 | else if (ctx->cfg.index_info) | ||
559 | html_include(ctx->cfg.index_info); | ||
514 | } | 560 | } |
@@ -530,2 +576,6 @@ void cgit_print_pageheader(struct cgit_context *ctx) | |||
530 | 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); | ||
531 | html("</td><td class='form'>"); | 581 | html("</td><td class='form'>"); |
@@ -548,5 +598,5 @@ void cgit_print_pageheader(struct cgit_context *ctx) | |||
548 | } else { | 598 | } else { |
549 | html("<a class='active' href='"); | 599 | site_link(NULL, "index", NULL, hc(cmd, "repolist"), NULL); |
550 | html_attr(cgit_rooturl()); | 600 | if (ctx->cfg.root_readme) |
551 | html("'>index</a>\n"); | 601 | site_link("about", "about", NULL, hc(cmd, "about"), NULL); |
552 | html("</td><td class='form'>"); | 602 | html("</td><td class='form'>"); |
diff --git a/ui-summary.c b/ui-summary.c index 318148a..ad0b4a7 100644 --- a/ui-summary.c +++ b/ui-summary.c | |||
@@ -15,7 +15,2 @@ void cgit_print_summary() | |||
15 | { | 15 | { |
16 | if (ctx.repo->readme) { | ||
17 | html("<div id='summary'>"); | ||
18 | html_include(ctx.repo->readme); | ||
19 | html("</div>"); | ||
20 | } | ||
21 | html("<table summary='repository info' class='list nowrap'>"); | 16 | html("<table summary='repository info' class='list nowrap'>"); |
@@ -31 +26,10 @@ void cgit_print_summary() | |||
31 | } | 26 | } |
27 | |||
28 | void cgit_print_repo_readme() | ||
29 | { | ||
30 | if (ctx.repo->readme) { | ||
31 | html("<div id='summary'>"); | ||
32 | html_include(ctx.repo->readme); | ||
33 | html("</div>"); | ||
34 | } | ||
35 | } | ||
diff --git a/ui-summary.h b/ui-summary.h index 37aedd2..3e13039 100644 --- a/ui-summary.h +++ b/ui-summary.h | |||
@@ -4,2 +4,3 @@ | |||
4 | extern void cgit_print_summary(); | 4 | extern void cgit_print_summary(); |
5 | extern void cgit_print_repo_readme(); | ||
5 | 6 | ||