summaryrefslogtreecommitdiffabout
path: root/ui-repolist.c
authorLars Hjemli <hjemli@gmail.com>2008-03-23 23:51:19 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-03-23 23:51:19 (UTC)
commitf3c1a187fe2bc33f8423cd535d5045899699995b (patch) (unidiff)
treeb5c553da7b108900535fcfcd24b78bdd0ac62387 /ui-repolist.c
parentb1f9b9c1459cb9a30ebf80721aff6ef788d1f891 (diff)
downloadcgit-f3c1a187fe2bc33f8423cd535d5045899699995b.zip
cgit-f3c1a187fe2bc33f8423cd535d5045899699995b.tar.gz
cgit-f3c1a187fe2bc33f8423cd535d5045899699995b.tar.bz2
Add struct cgit_page to cgit_context
This struct is used when generating http headers, and as such is another small step towards the goal of the whole cleanup series; to invoke each page/view function with a function pointer. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-repolist.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-repolist.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui-repolist.c b/ui-repolist.c
index cd4e41d..e663585 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -48,14 +48,16 @@ void cgit_print_repolist(struct cacheitem *item)
48 int i, columns = 4; 48 int i, columns = 4;
49 char *last_group = NULL; 49 char *last_group = NULL;
50 50
51 if (ctx.cfg.enable_index_links) 51 if (ctx.cfg.enable_index_links)
52 columns++; 52 columns++;
53 53
54 cgit_print_docstart(ctx.cfg.root_title, item); 54 ctx.page.title = ctx.cfg.root_title;
55 cgit_print_pageheader(ctx.cfg.root_title, 0); 55 cgit_print_http_headers(&ctx);
56 cgit_print_docstart(&ctx);
57 cgit_print_pageheader(&ctx);
56 58
57 html("<table summary='repository list' class='list nowrap'>"); 59 html("<table summary='repository list' class='list nowrap'>");
58 if (ctx.cfg.index_header) { 60 if (ctx.cfg.index_header) {
59 htmlf("<tr class='nohover'><td colspan='%d' class='include-block'>", 61 htmlf("<tr class='nohover'><td colspan='%d' class='include-block'>",
60 columns); 62 columns);
61 html_include(ctx.cfg.index_header); 63 html_include(ctx.cfg.index_header);