2006-12-11 16:55:07 +01:00
|
|
|
/* ui-summary.c: functions for generating repo summary page
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Lars Hjemli
|
2013-05-26 15:20:02 +02:00
|
|
|
* Copyright (C) 2010-2013 Jason A. Donenfeld <Jason@zx2c4.com>
|
2006-12-11 16:55:07 +01:00
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cgit.h"
|
2013-04-06 12:37:59 +02:00
|
|
|
#include "ui-summary.h"
|
2008-02-23 22:45:33 +01:00
|
|
|
#include "html.h"
|
2008-03-24 16:38:47 +01:00
|
|
|
#include "ui-log.h"
|
|
|
|
#include "ui-refs.h"
|
2010-08-04 00:45:42 +02:00
|
|
|
#include "ui-blob.h"
|
2013-05-26 15:20:02 +02:00
|
|
|
#include <libgen.h>
|
2006-12-11 16:55:07 +01:00
|
|
|
|
2008-07-27 11:54:06 +02:00
|
|
|
static void print_url(char *base, char *suffix)
|
|
|
|
{
|
2013-03-05 15:42:14 +01:00
|
|
|
int columns = 3;
|
2013-04-06 11:28:57 +02:00
|
|
|
struct strbuf basebuf = STRBUF_INIT;
|
2013-03-05 15:42:14 +01:00
|
|
|
|
|
|
|
if (ctx.repo->enable_log_filecount)
|
|
|
|
columns++;
|
|
|
|
if (ctx.repo->enable_log_linecount)
|
|
|
|
columns++;
|
|
|
|
|
2008-07-27 11:54:06 +02:00
|
|
|
if (!base || !*base)
|
|
|
|
return;
|
2013-04-06 11:28:57 +02:00
|
|
|
if (suffix && *suffix) {
|
|
|
|
strbuf_addf(&basebuf, "%s/%s", base, suffix);
|
|
|
|
base = basebuf.buf;
|
|
|
|
}
|
2013-03-05 15:42:14 +01:00
|
|
|
htmlf("<tr><td colspan='%d'><a href='", columns);
|
2008-10-05 21:21:42 +02:00
|
|
|
html_url_path(base);
|
2008-07-27 11:54:06 +02:00
|
|
|
html("'>");
|
|
|
|
html_txt(base);
|
|
|
|
html("</a></td></tr>\n");
|
2013-04-06 11:28:57 +02:00
|
|
|
strbuf_release(&basebuf);
|
2008-07-27 11:54:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print_urls(char *txt, char *suffix)
|
|
|
|
{
|
|
|
|
char *h = txt, *t, c;
|
2013-03-05 16:48:27 +01:00
|
|
|
int urls = 0;
|
|
|
|
int columns = 3;
|
|
|
|
|
|
|
|
if (ctx.repo->enable_log_filecount)
|
|
|
|
columns++;
|
|
|
|
if (ctx.repo->enable_log_linecount)
|
|
|
|
columns++;
|
|
|
|
|
2008-07-27 11:54:06 +02:00
|
|
|
|
|
|
|
while (h && *h) {
|
|
|
|
while (h && *h == ' ')
|
|
|
|
h++;
|
2013-03-05 16:48:27 +01:00
|
|
|
if (!*h)
|
|
|
|
break;
|
2008-07-27 11:54:06 +02:00
|
|
|
t = h;
|
|
|
|
while (t && *t && *t != ' ')
|
|
|
|
t++;
|
|
|
|
c = *t;
|
|
|
|
*t = 0;
|
2013-03-05 16:48:27 +01:00
|
|
|
if (urls++ == 0) {
|
|
|
|
htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns);
|
|
|
|
htmlf("<tr><th class='left' colspan='%d'>Clone</th></tr>\n", columns);
|
|
|
|
}
|
2008-07-27 11:54:06 +02:00
|
|
|
print_url(h, suffix);
|
|
|
|
*t = c;
|
|
|
|
h = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-11 17:04:19 +01:00
|
|
|
void cgit_print_summary()
|
2006-12-11 16:55:07 +01:00
|
|
|
{
|
2013-03-05 15:42:14 +01:00
|
|
|
int columns = 3;
|
|
|
|
|
|
|
|
if (ctx.repo->enable_log_filecount)
|
|
|
|
columns++;
|
|
|
|
if (ctx.repo->enable_log_linecount)
|
|
|
|
columns++;
|
|
|
|
|
2007-11-11 13:04:28 +01:00
|
|
|
html("<table summary='repository info' class='list nowrap'>");
|
2008-02-16 13:07:13 +01:00
|
|
|
cgit_print_branches(ctx.cfg.summary_branches);
|
2013-03-05 15:42:14 +01:00
|
|
|
htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns);
|
2008-02-16 13:07:13 +01:00
|
|
|
cgit_print_tags(ctx.cfg.summary_tags);
|
2008-04-14 22:13:38 +02:00
|
|
|
if (ctx.cfg.summary_log > 0) {
|
2013-03-05 15:42:14 +01:00
|
|
|
htmlf("<tr class='nohover'><td colspan='%d'> </td></tr>", columns);
|
2008-04-14 22:13:38 +02:00
|
|
|
cgit_print_log(ctx.qry.head, 0, ctx.cfg.summary_log, NULL,
|
2012-10-13 16:10:30 +02:00
|
|
|
NULL, NULL, 0, 0, 0);
|
2008-04-14 22:13:38 +02:00
|
|
|
}
|
2008-07-27 11:54:06 +02:00
|
|
|
if (ctx.repo->clone_url)
|
2011-06-06 22:49:13 +02:00
|
|
|
print_urls(expand_macros(ctx.repo->clone_url), NULL);
|
2008-07-27 11:54:06 +02:00
|
|
|
else if (ctx.cfg.clone_prefix)
|
|
|
|
print_urls(ctx.cfg.clone_prefix, ctx.repo->url);
|
2007-01-17 01:10:39 +01:00
|
|
|
html("</table>");
|
2006-12-11 16:55:07 +01:00
|
|
|
}
|
2008-04-28 23:06:57 +02:00
|
|
|
|
2013-05-26 15:20:02 +02:00
|
|
|
/* The caller must free the return value. */
|
|
|
|
static char* append_readme_path(const char *filename, const char *ref, const char *path)
|
2008-04-28 23:06:57 +02:00
|
|
|
{
|
2013-05-26 15:20:02 +02:00
|
|
|
char *file, *base_dir, *full_path, *resolved_base = NULL, *resolved_full = NULL;
|
2010-08-21 15:08:01 +02:00
|
|
|
/* If a subpath is specified for the about page, make it relative
|
2013-05-25 16:32:37 +02:00
|
|
|
* to the directory containing the configured readme. */
|
2013-05-26 15:20:02 +02:00
|
|
|
|
|
|
|
file = xstrdup(filename);
|
|
|
|
base_dir = dirname(file);
|
|
|
|
if (!strcmp(base_dir, ".") || !strcmp(base_dir, "..")) {
|
|
|
|
if (!ref) {
|
|
|
|
free(file);
|
|
|
|
return NULL;
|
2013-05-25 19:47:15 +02:00
|
|
|
}
|
2013-05-26 15:20:02 +02:00
|
|
|
full_path = xstrdup(path);
|
2009-08-09 11:50:34 +02:00
|
|
|
} else
|
2013-05-26 15:20:02 +02:00
|
|
|
full_path = fmtalloc("%s/%s", base_dir, path);
|
|
|
|
|
|
|
|
if (!ref) {
|
|
|
|
resolved_base = realpath(base_dir, NULL);
|
|
|
|
resolved_full = realpath(full_path, NULL);
|
|
|
|
if (!resolved_base || !resolved_full || strncmp(resolved_base, resolved_full, strlen(resolved_base))) {
|
|
|
|
free(full_path);
|
|
|
|
full_path = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(file);
|
|
|
|
free(resolved_base);
|
|
|
|
free(resolved_full);
|
|
|
|
|
|
|
|
return full_path;
|
2013-05-25 16:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void cgit_print_repo_readme(char *path)
|
|
|
|
{
|
|
|
|
char *filename, *ref;
|
2013-05-26 15:20:02 +02:00
|
|
|
int free_filename = 0;
|
2010-08-21 15:08:01 +02:00
|
|
|
|
2013-05-26 15:20:02 +02:00
|
|
|
if (ctx.repo->readme.nr == 0)
|
2013-05-25 19:47:15 +02:00
|
|
|
return;
|
2013-05-26 15:20:02 +02:00
|
|
|
|
|
|
|
filename = ctx.repo->readme.items[0].string;
|
|
|
|
ref = ctx.repo->readme.items[0].util;
|
|
|
|
|
|
|
|
if (path) {
|
|
|
|
free_filename = 1;
|
|
|
|
filename = append_readme_path(filename, ref, path);
|
|
|
|
if (!filename)
|
|
|
|
return;
|
|
|
|
}
|
2013-05-25 19:47:15 +02:00
|
|
|
|
2010-08-21 15:08:01 +02:00
|
|
|
/* Print the calculated readme, either from the git repo or from the
|
|
|
|
* filesystem, while applying the about-filter.
|
|
|
|
*/
|
2009-08-09 11:50:34 +02:00
|
|
|
html("<div id='summary'>");
|
2013-05-25 14:50:19 +02:00
|
|
|
if (ctx.repo->about_filter) {
|
2013-05-25 16:32:37 +02:00
|
|
|
ctx.repo->about_filter->argv[1] = filename;
|
2011-06-06 21:29:58 +02:00
|
|
|
cgit_open_filter(ctx.repo->about_filter);
|
2013-05-25 14:50:19 +02:00
|
|
|
}
|
2010-08-04 00:45:42 +02:00
|
|
|
if (ref)
|
2013-05-26 15:20:02 +02:00
|
|
|
cgit_print_file(filename, ref, 1);
|
2010-08-04 00:45:42 +02:00
|
|
|
else
|
2013-05-25 16:32:37 +02:00
|
|
|
html_include(filename);
|
2013-05-25 14:50:19 +02:00
|
|
|
if (ctx.repo->about_filter) {
|
2009-08-09 13:27:21 +02:00
|
|
|
cgit_close_filter(ctx.repo->about_filter);
|
2013-05-25 14:50:19 +02:00
|
|
|
ctx.repo->about_filter->argv[1] = NULL;
|
|
|
|
}
|
2009-08-09 11:50:34 +02:00
|
|
|
html("</div>");
|
2013-05-26 15:20:02 +02:00
|
|
|
if (free_filename)
|
|
|
|
free(filename);
|
2008-04-28 23:06:57 +02:00
|
|
|
}
|