1 /* ui-summary.c: functions for generating repo summary page
3 * Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
10 #include "ui-summary.h"
15 #include "ui-shared.h"
20 static void print_url(const char *url)
24 if (ctx.repo->enable_log_filecount)
26 if (ctx.repo->enable_log_linecount)
30 htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns);
31 htmlf("<tr><th class='left' colspan='%d'>Clone</th></tr>\n", columns);
34 htmlf("<tr><td colspan='%d'><a href='", columns);
38 html("</a></td></tr>\n");
41 void cgit_print_summary()
45 if (ctx.repo->enable_log_filecount)
47 if (ctx.repo->enable_log_linecount)
50 html("<table summary='repository info' class='list nowrap'>");
51 cgit_print_branches(ctx.cfg.summary_branches);
52 htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns);
53 cgit_print_tags(ctx.cfg.summary_tags);
54 if (ctx.cfg.summary_log > 0) {
55 htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns);
56 cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
60 cgit_add_clone_urls(print_url);
64 /* The caller must free the return value. */
65 static char* append_readme_path(const char *filename, const char *ref, const char *path)
67 char *file, *base_dir, *full_path, *resolved_base = NULL, *resolved_full = NULL;
68 /* If a subpath is specified for the about page, make it relative
69 * to the directory containing the configured readme. */
71 file = xstrdup(filename);
72 base_dir = dirname(file);
73 if (!strcmp(base_dir, ".") || !strcmp(base_dir, "..")) {
78 full_path = xstrdup(path);
80 full_path = fmtalloc("%s/%s", base_dir, path);
83 resolved_base = realpath(base_dir, NULL);
84 resolved_full = realpath(full_path, NULL);
85 if (!resolved_base || !resolved_full || !starts_with(resolved_full, resolved_base)) {
98 void cgit_print_repo_readme(char *path)
100 char *filename, *ref;
101 int free_filename = 0;
103 if (ctx.repo->readme.nr == 0)
106 filename = ctx.repo->readme.items[0].string;
107 ref = ctx.repo->readme.items[0].util;
111 filename = append_readme_path(filename, ref, path);
116 /* Print the calculated readme, either from the git repo or from the
117 * filesystem, while applying the about-filter.
119 html("<div id='summary'>");
120 cgit_open_filter(ctx.repo->about_filter, filename);
122 cgit_print_file(filename, ref, 1);
124 html_include(filename);
125 cgit_close_filter(ctx.repo->about_filter);