summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2008-04-28 23:13:08 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-04-28 23:13:08 (UTC)
commit905dbaef5aa33ea11d385b82de0188fee73dd655 (patch) (unidiff)
tree34712da2eef917be04b2acc5585612b65c1e49cc
parentd188ed4f2905e6d10abd26c45572a0d48eb53969 (diff)
parent71adba1f1678914063fc109cf3805afde2c68f75 (diff)
downloadcgit-905dbaef5aa33ea11d385b82de0188fee73dd655.zip
cgit-905dbaef5aa33ea11d385b82de0188fee73dd655.tar.gz
cgit-905dbaef5aa33ea11d385b82de0188fee73dd655.tar.bz2
Merge branch 'lh/about'
* lh/about: Add 'about site' and 'about repo' pages Prepare for 'about site' page / add 'root-readme' option to cgitrc Make it possible for a single cmd to work both with and without a repo Re-enable 'index-info' and add support for 'root-desc' in cgitrc Move included header-file out of repolist table Prepare for 'about repo' page
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.c16
-rw-r--r--cgit.h2
-rw-r--r--cmd.c9
-rw-r--r--ui-repolist.c15
-rw-r--r--ui-repolist.h1
-rw-r--r--ui-shared.c58
-rw-r--r--ui-summary.c14
-rw-r--r--ui-summary.h1
8 files changed, 100 insertions, 16 deletions
diff --git a/cgit.c b/cgit.c
index 38b0ba5..a402758 100644
--- a/cgit.c
+++ b/cgit.c
@@ -10,24 +10,28 @@
10#include "cache.h" 10#include "cache.h"
11#include "cmd.h" 11#include "cmd.h"
12#include "configfile.h" 12#include "configfile.h"
13#include "html.h" 13#include "html.h"
14#include "ui-shared.h" 14#include "ui-shared.h"
15 15
16const char *cgit_version = CGIT_VERSION; 16const char *cgit_version = CGIT_VERSION;
17 17
18void config_cb(const char *name, const char *value) 18void config_cb(const char *name, const char *value)
19{ 19{
20 if (!strcmp(name, "root-title")) 20 if (!strcmp(name, "root-title"))
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"))
23 ctx.cfg.css = xstrdup(value); 27 ctx.cfg.css = xstrdup(value);
24 else if (!strcmp(name, "logo")) 28 else if (!strcmp(name, "logo"))
25 ctx.cfg.logo = xstrdup(value); 29 ctx.cfg.logo = xstrdup(value);
26 else if (!strcmp(name, "index-header")) 30 else if (!strcmp(name, "index-header"))
27 ctx.cfg.index_header = xstrdup(value); 31 ctx.cfg.index_header = xstrdup(value);
28 else if (!strcmp(name, "index-info")) 32 else if (!strcmp(name, "index-info"))
29 ctx.cfg.index_info = xstrdup(value); 33 ctx.cfg.index_info = xstrdup(value);
30 else if (!strcmp(name, "logo-link")) 34 else if (!strcmp(name, "logo-link"))
31 ctx.cfg.logo_link = xstrdup(value); 35 ctx.cfg.logo_link = xstrdup(value);
32 else if (!strcmp(name, "module-link")) 36 else if (!strcmp(name, "module-link"))
33 ctx.cfg.module_link = xstrdup(value); 37 ctx.cfg.module_link = xstrdup(value);
@@ -150,24 +154,25 @@ static void prepare_context(struct cgit_context *ctx)
150 ctx->cfg.cache_root_ttl = 5; 154 ctx->cfg.cache_root_ttl = 5;
151 ctx->cfg.cache_static_ttl = -1; 155 ctx->cfg.cache_static_ttl = -1;
152 ctx->cfg.css = "/cgit.css"; 156 ctx->cfg.css = "/cgit.css";
153 ctx->cfg.logo = "/git-logo.png"; 157 ctx->cfg.logo = "/git-logo.png";
154 ctx->cfg.max_commit_count = 50; 158 ctx->cfg.max_commit_count = 50;
155 ctx->cfg.max_lock_attempts = 5; 159 ctx->cfg.max_lock_attempts = 5;
156 ctx->cfg.max_msg_len = 60; 160 ctx->cfg.max_msg_len = 60;
157 ctx->cfg.max_repodesc_len = 60; 161 ctx->cfg.max_repodesc_len = 60;
158 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s"; 162 ctx->cfg.module_link = "./?repo=%s&page=commit&id=%s";
159 ctx->cfg.renamelimit = -1; 163 ctx->cfg.renamelimit = -1;
160 ctx->cfg.robots = "index, nofollow"; 164 ctx->cfg.robots = "index, nofollow";
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;
163 ctx->page.mimetype = "text/html"; 168 ctx->page.mimetype = "text/html";
164 ctx->page.charset = PAGE_ENCODING; 169 ctx->page.charset = PAGE_ENCODING;
165 ctx->page.filename = NULL; 170 ctx->page.filename = NULL;
166} 171}
167 172
168static int cgit_prepare_cache(struct cacheitem *item) 173static int cgit_prepare_cache(struct cacheitem *item)
169{ 174{
170 if (!ctx.repo && ctx.qry.repo) { 175 if (!ctx.repo && ctx.qry.repo) {
171 ctx.page.title = fmt("%s - %s", ctx.cfg.root_title, 176 ctx.page.title = fmt("%s - %s", ctx.cfg.root_title,
172 "Bad request"); 177 "Bad request");
173 cgit_print_http_headers(&ctx); 178 cgit_print_http_headers(&ctx);
@@ -295,25 +300,34 @@ static void process_request(struct cgit_context *ctx)
295 cmd = cgit_get_cmd(ctx); 300 cmd = cgit_get_cmd(ctx);
296 if (!cmd) { 301 if (!cmd) {
297 ctx->page.title = "cgit error"; 302 ctx->page.title = "cgit error";
298 ctx->repo = NULL; 303 ctx->repo = NULL;
299 cgit_print_http_headers(ctx); 304 cgit_print_http_headers(ctx);
300 cgit_print_docstart(ctx); 305 cgit_print_docstart(ctx);
301 cgit_print_pageheader(ctx); 306 cgit_print_pageheader(ctx);
302 cgit_print_error("Invalid request"); 307 cgit_print_error("Invalid request");
303 cgit_print_docend(); 308 cgit_print_docend();
304 return; 309 return;
305 } 310 }
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;
309 323
310 if (cmd->want_layout) { 324 if (cmd->want_layout) {
311 cgit_print_http_headers(ctx); 325 cgit_print_http_headers(ctx);
312 cgit_print_docstart(ctx); 326 cgit_print_docstart(ctx);
313 cgit_print_pageheader(ctx); 327 cgit_print_pageheader(ctx);
314 } 328 }
315 329
316 cmd->fn(ctx); 330 cmd->fn(ctx);
317 331
318 if (cmd->want_layout) 332 if (cmd->want_layout)
319 cgit_print_docend(); 333 cgit_print_docend();
diff --git a/cgit.h b/cgit.h
index a3b6535..daebeff 100644
--- a/cgit.h
+++ b/cgit.h
@@ -123,24 +123,26 @@ struct cgit_config {
123 char *agefile; 123 char *agefile;
124 char *cache_root; 124 char *cache_root;
125 char *clone_prefix; 125 char *clone_prefix;
126 char *css; 126 char *css;
127 char *index_header; 127 char *index_header;
128 char *index_info; 128 char *index_info;
129 char *logo; 129 char *logo;
130 char *logo_link; 130 char *logo_link;
131 char *module_link; 131 char *module_link;
132 char *repo_group; 132 char *repo_group;
133 char *robots; 133 char *robots;
134 char *root_title; 134 char *root_title;
135 char *root_desc;
136 char *root_readme;
135 char *script_name; 137 char *script_name;
136 char *virtual_root; 138 char *virtual_root;
137 int cache_dynamic_ttl; 139 int cache_dynamic_ttl;
138 int cache_max_create_time; 140 int cache_max_create_time;
139 int cache_repo_ttl; 141 int cache_repo_ttl;
140 int cache_root_ttl; 142 int cache_root_ttl;
141 int cache_static_ttl; 143 int cache_static_ttl;
142 int enable_index_links; 144 int enable_index_links;
143 int enable_log_filecount; 145 int enable_log_filecount;
144 int enable_log_linecount; 146 int enable_log_linecount;
145 int max_commit_count; 147 int max_commit_count;
146 int max_lock_attempts; 148 int max_lock_attempts;
diff --git a/cmd.c b/cmd.c
index e0eacbe..6cc91e6 100644
--- a/cmd.c
+++ b/cmd.c
@@ -11,24 +11,32 @@
11#include "ui-blob.h" 11#include "ui-blob.h"
12#include "ui-commit.h" 12#include "ui-commit.h"
13#include "ui-diff.h" 13#include "ui-diff.h"
14#include "ui-log.h" 14#include "ui-log.h"
15#include "ui-patch.h" 15#include "ui-patch.h"
16#include "ui-refs.h" 16#include "ui-refs.h"
17#include "ui-repolist.h" 17#include "ui-repolist.h"
18#include "ui-snapshot.h" 18#include "ui-snapshot.h"
19#include "ui-summary.h" 19#include "ui-summary.h"
20#include "ui-tag.h" 20#include "ui-tag.h"
21#include "ui-tree.h" 21#include "ui-tree.h"
22 22
23static 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
23static void blob_fn(struct cgit_context *ctx) 31static void blob_fn(struct cgit_context *ctx)
24{ 32{
25 cgit_print_blob(ctx->qry.sha1, ctx->qry.path); 33 cgit_print_blob(ctx->qry.sha1, ctx->qry.path);
26} 34}
27 35
28static void commit_fn(struct cgit_context *ctx) 36static void commit_fn(struct cgit_context *ctx)
29{ 37{
30 cgit_print_commit(ctx->qry.sha1); 38 cgit_print_commit(ctx->qry.sha1);
31} 39}
32 40
33static void diff_fn(struct cgit_context *ctx) 41static void diff_fn(struct cgit_context *ctx)
34{ 42{
@@ -75,24 +83,25 @@ static void tag_fn(struct cgit_context *ctx)
75 83
76static void tree_fn(struct cgit_context *ctx) 84static void tree_fn(struct cgit_context *ctx)
77{ 85{
78 cgit_print_tree(ctx->qry.sha1, ctx->qry.path); 86 cgit_print_tree(ctx->qry.sha1, ctx->qry.path);
79} 87}
80 88
81#define def_cmd(name, want_repo, want_layout) \ 89#define def_cmd(name, want_repo, want_layout) \
82 {#name, name##_fn, want_repo, want_layout} 90 {#name, name##_fn, want_repo, want_layout}
83 91
84struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx) 92struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx)
85{ 93{
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),
88 def_cmd(commit, 1, 1), 97 def_cmd(commit, 1, 1),
89 def_cmd(diff, 1, 1), 98 def_cmd(diff, 1, 1),
90 def_cmd(log, 1, 1), 99 def_cmd(log, 1, 1),
91 def_cmd(patch, 1, 0), 100 def_cmd(patch, 1, 0),
92 def_cmd(refs, 1, 1), 101 def_cmd(refs, 1, 1),
93 def_cmd(repolist, 0, 0), 102 def_cmd(repolist, 0, 0),
94 def_cmd(snapshot, 1, 0), 103 def_cmd(snapshot, 1, 0),
95 def_cmd(summary, 1, 1), 104 def_cmd(summary, 1, 1),
96 def_cmd(tag, 1, 1), 105 def_cmd(tag, 1, 1),
97 def_cmd(tree, 1, 1), 106 def_cmd(tree, 1, 1),
98 }; 107 };
diff --git a/ui-repolist.c b/ui-repolist.c
index 98009c0..3f78e28 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -52,53 +52,50 @@ int is_match(struct cgit_repo *repo)
52 return 1; 52 return 1;
53 if (repo->name && strcasestr(repo->name, ctx.qry.search)) 53 if (repo->name && strcasestr(repo->name, ctx.qry.search))
54 return 1; 54 return 1;
55 if (repo->desc && strcasestr(repo->desc, ctx.qry.search)) 55 if (repo->desc && strcasestr(repo->desc, ctx.qry.search))
56 return 1; 56 return 1;
57 if (repo->owner && strcasestr(repo->owner, ctx.qry.search)) 57 if (repo->owner && strcasestr(repo->owner, ctx.qry.search))
58 return 1; 58 return 1;
59 return 0; 59 return 0;
60} 60}
61 61
62void print_header(int columns) 62void 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'>"
71 "<th class='left'>Name</th>" 65 "<th class='left'>Name</th>"
72 "<th class='left'>Description</th>" 66 "<th class='left'>Description</th>"
73 "<th class='left'>Owner</th>" 67 "<th class='left'>Owner</th>"
74 "<th class='left'>Idle</th>"); 68 "<th class='left'>Idle</th>");
75 if (ctx.cfg.enable_index_links) 69 if (ctx.cfg.enable_index_links)
76 html("<th class='left'>Links</th>"); 70 html("<th class='left'>Links</th>");
77 html("</tr>\n"); 71 html("</tr>\n");
78} 72}
79 73
80void cgit_print_repolist() 74void cgit_print_repolist()
81{ 75{
82 int i, columns = 4, hits = 0, header = 0; 76 int i, columns = 4, hits = 0, header = 0;
83 char *last_group = NULL; 77 char *last_group = NULL;
84 78
85 if (ctx.cfg.enable_index_links) 79 if (ctx.cfg.enable_index_links)
86 columns++; 80 columns++;
87 81
88 ctx.page.title = ctx.cfg.root_title; 82 ctx.page.title = ctx.cfg.root_title;
89 cgit_print_http_headers(&ctx); 83 cgit_print_http_headers(&ctx);
90 cgit_print_docstart(&ctx); 84 cgit_print_docstart(&ctx);
91 cgit_print_pageheader(&ctx); 85 cgit_print_pageheader(&ctx);
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'>");
94 for (i=0; i<cgit_repolist.count; i++) { 91 for (i=0; i<cgit_repolist.count; i++) {
95 ctx.repo = &cgit_repolist.repos[i]; 92 ctx.repo = &cgit_repolist.repos[i];
96 if (!is_match(ctx.repo)) 93 if (!is_match(ctx.repo))
97 continue; 94 continue;
98 if (!header++) 95 if (!header++)
99 print_header(columns); 96 print_header(columns);
100 hits++; 97 hits++;
101 if ((last_group == NULL && ctx.repo->group != NULL) || 98 if ((last_group == NULL && ctx.repo->group != NULL) ||
102 (last_group != NULL && ctx.repo->group == NULL) || 99 (last_group != NULL && ctx.repo->group == NULL) ||
103 (last_group != NULL && ctx.repo->group != NULL && 100 (last_group != NULL && ctx.repo->group != NULL &&
104 strcmp(ctx.repo->group, last_group))) { 101 strcmp(ctx.repo->group, last_group))) {
@@ -130,12 +127,18 @@ void cgit_print_repolist()
130 cgit_log_link("log", NULL, "button", NULL, NULL, NULL, 127 cgit_log_link("log", NULL, "button", NULL, NULL, NULL,
131 0, NULL, NULL); 128 0, NULL, NULL);
132 cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL); 129 cgit_tree_link("tree", NULL, "button", NULL, NULL, NULL);
133 html("</td>"); 130 html("</td>");
134 } 131 }
135 html("</tr>\n"); 132 html("</tr>\n");
136 } 133 }
137 html("</table>"); 134 html("</table>");
138 if (!hits) 135 if (!hits)
139 cgit_print_error("No repositories found"); 136 cgit_print_error("No repositories found");
140 cgit_print_docend(); 137 cgit_print_docend();
141} 138}
139
140void 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
@@ -1,6 +1,7 @@
1#ifndef UI_REPOLIST_H 1#ifndef UI_REPOLIST_H
2#define UI_REPOLIST_H 2#define UI_REPOLIST_H
3 3
4extern void cgit_print_repolist(); 4extern void cgit_print_repolist();
5extern void cgit_print_site_readme();
5 6
6#endif /* UI_REPOLIST_H */ 7#endif /* UI_REPOLIST_H */
diff --git a/ui-shared.c b/ui-shared.c
index 8a804c2..d08ede9 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -105,24 +105,67 @@ const char *cgit_repobasename(const char *reponame)
105char *cgit_currurl() 105char *cgit_currurl()
106{ 106{
107 if (!ctx.cfg.virtual_root) 107 if (!ctx.cfg.virtual_root)
108 return ctx.cfg.script_name; 108 return ctx.cfg.script_name;
109 else if (ctx.qry.page) 109 else if (ctx.qry.page)
110 return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page); 110 return fmt("%s/%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo, ctx.qry.page);
111 else if (ctx.qry.repo) 111 else if (ctx.qry.repo)
112 return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo); 112 return fmt("%s/%s/", ctx.cfg.virtual_root, ctx.qry.repo);
113 else 113 else
114 return fmt("%s/", ctx.cfg.virtual_root); 114 return fmt("%s/", ctx.cfg.virtual_root);
115} 115}
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,
118 char *path) 161 char *path)
119{ 162{
120 char *delim = "?"; 163 char *delim = "?";
121 164
122 html("<a"); 165 html("<a");
123 if (title) { 166 if (title) {
124 html(" title='"); 167 html(" title='");
125 html_attr(title); 168 html_attr(title);
126 html("'"); 169 html("'");
127 } 170 }
128 if (class) { 171 if (class) {
@@ -501,63 +544,70 @@ void cgit_print_pageheader(struct cgit_context *ctx)
501 html("<input type='submit' name='' value='switch'/>"); 544 html("<input type='submit' name='' value='switch'/>");
502 html("</form>"); 545 html("</form>");
503 } else 546 } else
504 html_txt(ctx->cfg.root_title); 547 html_txt(ctx->cfg.root_title);
505 html("</td></tr>\n"); 548 html("</td></tr>\n");
506 549
507 html("<tr><td class='sub'"); 550 html("<tr><td class='sub'");
508 if (ctx->repo) { 551 if (ctx->repo) {
509 html(" colspan='2'>"); 552 html(" colspan='2'>");
510 html_txt(ctx->repo->desc); 553 html_txt(ctx->repo->desc);
511 } else { 554 } else {
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 }
515 html("</td></tr></table>\n"); 561 html("</td></tr></table>\n");
516 562
517 html("<table class='tabs'><tr><td>\n"); 563 html("<table class='tabs'><tr><td>\n");
518 if (ctx->repo) { 564 if (ctx->repo) {
519 reporevlink(NULL, "summary", NULL, hc(cmd, "summary"), 565 reporevlink(NULL, "summary", NULL, hc(cmd, "summary"),
520 ctx->qry.head, NULL, NULL); 566 ctx->qry.head, NULL, NULL);
521 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head, 567 cgit_refs_link("refs", NULL, hc(cmd, "refs"), ctx->qry.head,
522 ctx->qry.sha1, NULL); 568 ctx->qry.sha1, NULL);
523 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head, 569 cgit_log_link("log", NULL, hc(cmd, "log"), ctx->qry.head,
524 NULL, NULL, 0, NULL, NULL); 570 NULL, NULL, 0, NULL, NULL);
525 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head, 571 cgit_tree_link("tree", NULL, hc(cmd, "tree"), ctx->qry.head,
526 ctx->qry.sha1, NULL); 572 ctx->qry.sha1, NULL);
527 cgit_commit_link("commit", NULL, hc(cmd, "commit"), 573 cgit_commit_link("commit", NULL, hc(cmd, "commit"),
528 ctx->qry.head, ctx->qry.sha1); 574 ctx->qry.head, ctx->qry.sha1);
529 cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head, 575 cgit_diff_link("diff", NULL, hc(cmd, "diff"), ctx->qry.head,
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'>");
532 html("<form class='right' method='get' action='"); 582 html("<form class='right' method='get' action='");
533 if (ctx->cfg.virtual_root) 583 if (ctx->cfg.virtual_root)
534 html_attr(cgit_fileurl(ctx->qry.repo, "log", 584 html_attr(cgit_fileurl(ctx->qry.repo, "log",
535 ctx->qry.path, NULL)); 585 ctx->qry.path, NULL));
536 html("'>\n"); 586 html("'>\n");
537 add_hidden_formfields(1, 0, "log"); 587 add_hidden_formfields(1, 0, "log");
538 html("<select name='qt'>\n"); 588 html("<select name='qt'>\n");
539 html_option("grep", "log msg", ctx->qry.grep); 589 html_option("grep", "log msg", ctx->qry.grep);
540 html_option("author", "author", ctx->qry.grep); 590 html_option("author", "author", ctx->qry.grep);
541 html_option("committer", "committer", ctx->qry.grep); 591 html_option("committer", "committer", ctx->qry.grep);
542 html("</select>\n"); 592 html("</select>\n");
543 html("<input class='txt' type='text' size='10' name='q' value='"); 593 html("<input class='txt' type='text' size='10' name='q' value='");
544 html_attr(ctx->qry.search); 594 html_attr(ctx->qry.search);
545 html("'/>\n"); 595 html("'/>\n");
546 html("<input type='submit' value='search'/>\n"); 596 html("<input type='submit' value='search'/>\n");
547 html("</form>\n"); 597 html("</form>\n");
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'>");
553 html("<form method='get' action='"); 603 html("<form method='get' action='");
554 html_attr(cgit_rooturl()); 604 html_attr(cgit_rooturl());
555 html("'>\n"); 605 html("'>\n");
556 html("<input type='text' name='q' size='10' value='"); 606 html("<input type='text' name='q' size='10' value='");
557 html_attr(ctx->qry.search); 607 html_attr(ctx->qry.search);
558 html("'/>\n"); 608 html("'/>\n");
559 html("<input type='submit' value='search'/>\n"); 609 html("<input type='submit' value='search'/>\n");
560 html("</form>"); 610 html("</form>");
561 } 611 }
562 html("</td></tr></table>\n"); 612 html("</td></tr></table>\n");
563 html("<div class='content'>"); 613 html("<div class='content'>");
diff --git a/ui-summary.c b/ui-summary.c
index 318148a..ad0b4a7 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -4,28 +4,32 @@
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10#include "html.h" 10#include "html.h"
11#include "ui-log.h" 11#include "ui-log.h"
12#include "ui-refs.h" 12#include "ui-refs.h"
13 13
14void cgit_print_summary() 14void 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'>");
22 cgit_print_branches(ctx.cfg.summary_branches); 17 cgit_print_branches(ctx.cfg.summary_branches);
23 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>"); 18 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
24 cgit_print_tags(ctx.cfg.summary_tags); 19 cgit_print_tags(ctx.cfg.summary_tags);
25 if (ctx.cfg.summary_log > 0) { 20 if (ctx.cfg.summary_log > 0) {
26 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>"); 21 html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
27 cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL, 22 cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
28 NULL, NULL, 0); 23 NULL, NULL, 0);
29 } 24 }
30 html("</table>"); 25 html("</table>");
31} 26}
27
28void 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
@@ -1,6 +1,7 @@
1#ifndef UI_SUMMARY_H 1#ifndef UI_SUMMARY_H
2#define UI_SUMMARY_H 2#define UI_SUMMARY_H
3 3
4extern void cgit_print_summary(); 4extern void cgit_print_summary();
5extern void cgit_print_repo_readme();
5 6
6#endif /* UI_SUMMARY_H */ 7#endif /* UI_SUMMARY_H */