all repos — cgit @ 3796c2d8d21099007ea4b0572522003ceafb4eab

a hyperfast web frontend for git written in c

ui-summary.c (view raw)

 1/* ui-summary.c: functions for generating repo summary page
 2 *
 3 * Copyright (C) 2006 Lars Hjemli
 4 *
 5 * Licensed under GNU General Public License v2
 6 *   (see COPYING for full license text)
 7 */
 8
 9#include "cgit.h"
10#include "html.h"
11#include "ui-log.h"
12#include "ui-refs.h"
13
14int urls = 0;
15
16static void print_url(char *base, char *suffix)
17{
18	if (!base || !*base)
19		return;
20	if (urls++ == 0) {
21		html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
22		html("<tr><th class='left' colspan='4'>Clone</th></tr>\n");
23	}
24	if (suffix && *suffix)
25		base = fmt("%s/%s", base, suffix);
26	html("<tr><td colspan='4'><a href='");
27	html_url_path(base);
28	html("'>");
29	html_txt(base);
30	html("</a></td></tr>\n");
31}
32
33static void print_urls(char *txt, char *suffix)
34{
35	char *h = txt, *t, c;
36
37	while (h && *h) {
38		while (h && *h == ' ')
39			h++;
40		t = h;
41		while (t && *t && *t != ' ')
42			t++;
43		c = *t;
44		*t = 0;
45		print_url(h, suffix);
46		*t = c;
47		h = t;
48	}
49}
50
51void cgit_print_summary()
52{
53	html("<table summary='repository info' class='list nowrap'>");
54	cgit_print_branches(ctx.cfg.summary_branches);
55	html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
56	cgit_print_tags(ctx.cfg.summary_tags);
57	if (ctx.cfg.summary_log > 0) {
58		html("<tr class='nohover'><td colspan='4'>&nbsp;</td></tr>");
59		cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
60			       NULL, NULL, 0);
61	}
62	if (ctx.repo->clone_url)
63		print_urls(ctx.repo->clone_url, NULL);
64	else if (ctx.cfg.clone_prefix)
65		print_urls(ctx.cfg.clone_prefix, ctx.repo->url);
66	html("</table>");
67}
68
69void cgit_print_repo_readme()
70{
71	if (ctx.repo->readme) {
72		html("<div id='summary'>");
73		html_include(ctx.repo->readme);
74		html("</div>");
75	}
76}