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