2006-12-11 15:55:07 +00:00
|
|
|
/* ui-summary.c: functions for generating repo summary page
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Lars Hjemli
|
|
|
|
*
|
|
|
|
* Licensed under GNU General Public License v2
|
|
|
|
* (see COPYING for full license text)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cgit.h"
|
|
|
|
|
2007-05-14 22:07:37 +00:00
|
|
|
static int header;
|
2007-05-11 21:44:42 +00:00
|
|
|
|
2006-12-11 15:55:07 +00:00
|
|
|
static int cgit_print_branch_cb(const char *refname, const unsigned char *sha1,
|
|
|
|
int flags, void *cb_data)
|
|
|
|
{
|
|
|
|
struct commit *commit;
|
2006-12-15 23:33:28 +00:00
|
|
|
struct commitinfo *info;
|
2007-06-17 12:53:02 +00:00
|
|
|
char buf[256];
|
|
|
|
char *ref;
|
2006-12-11 15:55:07 +00:00
|
|
|
|
2007-06-17 12:53:02 +00:00
|
|
|
ref = xstrdup(refname);
|
2007-01-17 00:10:39 +00:00
|
|
|
strncpy(buf, refname, sizeof(buf));
|
2006-12-11 15:55:07 +00:00
|
|
|
commit = lookup_commit(sha1);
|
2007-05-26 01:33:41 +00:00
|
|
|
// object is not really parsed at this point, because of some fallout
|
|
|
|
// from previous calls to git functions in cgit_print_log()
|
|
|
|
commit->object.parsed = 0;
|
2006-12-11 15:55:07 +00:00
|
|
|
if (commit && !parse_commit(commit)){
|
2006-12-15 23:33:28 +00:00
|
|
|
info = cgit_parse_commit(commit);
|
2006-12-11 15:55:07 +00:00
|
|
|
html("<tr><td>");
|
2007-06-17 12:53:02 +00:00
|
|
|
cgit_log_link(ref, NULL, NULL, ref, NULL, NULL);
|
2006-12-11 15:55:07 +00:00
|
|
|
html("</td><td>");
|
2007-05-22 21:15:36 +00:00
|
|
|
cgit_print_age(commit->date, -1, NULL);
|
2006-12-15 23:33:28 +00:00
|
|
|
html("</td><td>");
|
2007-01-17 00:10:39 +00:00
|
|
|
html_txt(info->author);
|
|
|
|
html("</td><td>");
|
2007-06-17 12:53:02 +00:00
|
|
|
cgit_commit_link(info->subject, NULL, NULL, ref, NULL);
|
2006-12-11 15:55:07 +00:00
|
|
|
html("</td></tr>\n");
|
2006-12-16 13:58:20 +00:00
|
|
|
cgit_free_commitinfo(info);
|
2006-12-11 15:55:07 +00:00
|
|
|
} else {
|
|
|
|
html("<tr><td>");
|
|
|
|
html_txt(buf);
|
2007-01-17 00:10:39 +00:00
|
|
|
html("</td><td colspan='3'>");
|
|
|
|
htmlf("*** bad ref %s ***", sha1_to_hex(sha1));
|
|
|
|
html("</td></tr>\n");
|
|
|
|
}
|
2007-06-17 12:53:02 +00:00
|
|
|
free(ref);
|
2007-01-17 00:10:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-02-04 21:55:19 +00:00
|
|
|
|
|
|
|
static void cgit_print_object_ref(struct object *obj)
|
|
|
|
{
|
2007-05-15 22:26:23 +00:00
|
|
|
char *page, *arg, *url;
|
2007-02-04 21:55:19 +00:00
|
|
|
|
2007-05-15 22:26:23 +00:00
|
|
|
if (obj->type == OBJ_COMMIT) {
|
2007-06-17 12:53:02 +00:00
|
|
|
cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
|
|
|
|
cgit_query_head, sha1_to_hex(obj->sha1));
|
|
|
|
return;
|
2007-05-15 22:26:23 +00:00
|
|
|
} else if (obj->type == OBJ_TREE) {
|
2007-02-04 21:55:19 +00:00
|
|
|
page = "tree";
|
2007-05-15 22:26:23 +00:00
|
|
|
arg = "id";
|
|
|
|
} else {
|
2007-02-04 21:55:19 +00:00
|
|
|
page = "view";
|
2007-05-15 22:26:23 +00:00
|
|
|
arg = "id";
|
|
|
|
}
|
2007-02-04 21:55:19 +00:00
|
|
|
|
2007-05-14 21:58:29 +00:00
|
|
|
url = cgit_pageurl(cgit_query_repo, page,
|
2007-05-15 22:26:23 +00:00
|
|
|
fmt("%s=%s", arg, sha1_to_hex(obj->sha1)));
|
2007-02-04 21:55:19 +00:00
|
|
|
html_link_open(url, NULL, NULL);
|
2007-05-14 21:58:29 +00:00
|
|
|
htmlf("%s %s", typename(obj->type),
|
2007-02-04 21:55:19 +00:00
|
|
|
sha1_to_hex(obj->sha1));
|
|
|
|
html_link_close();
|
|
|
|
}
|
|
|
|
|
2007-05-14 22:07:37 +00:00
|
|
|
static void print_tag_header()
|
|
|
|
{
|
|
|
|
html("<tr class='nohover'><th class='left'>Tag</th>"
|
2007-05-22 21:15:36 +00:00
|
|
|
"<th class='left'>Age</th>"
|
2007-05-14 22:07:37 +00:00
|
|
|
"<th class='left'>Author</th>"
|
|
|
|
"<th class='left'>Reference</th></tr>\n");
|
|
|
|
header = 1;
|
|
|
|
}
|
|
|
|
|
2007-01-17 00:10:39 +00:00
|
|
|
static int cgit_print_tag_cb(const char *refname, const unsigned char *sha1,
|
|
|
|
int flags, void *cb_data)
|
|
|
|
{
|
|
|
|
struct tag *tag;
|
|
|
|
struct taginfo *info;
|
2007-02-04 21:55:19 +00:00
|
|
|
struct object *obj;
|
|
|
|
char buf[256], *url;
|
2007-05-14 21:58:29 +00:00
|
|
|
|
2007-01-17 00:10:39 +00:00
|
|
|
strncpy(buf, refname, sizeof(buf));
|
2007-02-04 21:55:19 +00:00
|
|
|
obj = parse_object(sha1);
|
|
|
|
if (!obj)
|
|
|
|
return 1;
|
|
|
|
if (obj->type == OBJ_TAG) {
|
|
|
|
tag = lookup_tag(sha1);
|
|
|
|
if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
|
|
|
|
return 2;
|
2007-05-14 22:07:37 +00:00
|
|
|
if (!header)
|
|
|
|
print_tag_header();
|
2007-01-17 00:10:39 +00:00
|
|
|
html("<tr><td>");
|
2007-05-14 21:58:29 +00:00
|
|
|
url = cgit_pageurl(cgit_query_repo, "view",
|
2007-01-17 00:10:39 +00:00
|
|
|
fmt("id=%s", sha1_to_hex(sha1)));
|
|
|
|
html_link_open(url, NULL, NULL);
|
|
|
|
html_txt(buf);
|
|
|
|
html_link_close();
|
|
|
|
html("</td><td>");
|
|
|
|
if (info->tagger_date > 0)
|
2007-05-22 21:15:36 +00:00
|
|
|
cgit_print_age(info->tagger_date, -1, NULL);
|
2006-12-11 15:55:07 +00:00
|
|
|
html("</td><td>");
|
2007-01-17 00:10:39 +00:00
|
|
|
if (info->tagger)
|
|
|
|
html(info->tagger);
|
|
|
|
html("</td><td>");
|
2007-02-04 21:55:19 +00:00
|
|
|
cgit_print_object_ref(tag->tagged);
|
2007-01-17 00:10:39 +00:00
|
|
|
html("</td></tr>\n");
|
|
|
|
} else {
|
2007-05-14 22:07:37 +00:00
|
|
|
if (!header)
|
|
|
|
print_tag_header();
|
2007-01-17 00:10:39 +00:00
|
|
|
html("<tr><td>");
|
|
|
|
html_txt(buf);
|
2007-02-04 21:55:19 +00:00
|
|
|
html("</td><td colspan='2'/><td>");
|
|
|
|
cgit_print_object_ref(obj);
|
2006-12-11 15:55:07 +00:00
|
|
|
html("</td></tr>\n");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-05-11 21:44:42 +00:00
|
|
|
static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1,
|
|
|
|
int flags, void *cb_data)
|
|
|
|
{
|
|
|
|
struct tag *tag;
|
|
|
|
struct taginfo *info;
|
|
|
|
struct object *obj;
|
|
|
|
char buf[256], *url;
|
2007-05-14 23:05:39 +00:00
|
|
|
unsigned char fileid[20];
|
2007-05-11 21:44:42 +00:00
|
|
|
|
|
|
|
if (prefixcmp(refname, "refs/archives"))
|
|
|
|
return 0;
|
|
|
|
strncpy(buf, refname+14, sizeof(buf));
|
|
|
|
obj = parse_object(sha1);
|
|
|
|
if (!obj)
|
|
|
|
return 1;
|
|
|
|
if (obj->type == OBJ_TAG) {
|
|
|
|
tag = lookup_tag(sha1);
|
|
|
|
if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag)))
|
|
|
|
return 0;
|
2007-05-14 23:05:39 +00:00
|
|
|
hashcpy(fileid, tag->tagged->sha1);
|
2007-05-11 21:44:42 +00:00
|
|
|
} else if (obj->type != OBJ_BLOB) {
|
|
|
|
return 0;
|
2007-05-14 23:05:39 +00:00
|
|
|
} else {
|
|
|
|
hashcpy(fileid, sha1);
|
2007-05-11 21:44:42 +00:00
|
|
|
}
|
2007-05-14 22:07:37 +00:00
|
|
|
if (!header) {
|
2007-05-23 20:46:54 +00:00
|
|
|
html("<table id='downloads'>");
|
2007-05-11 21:44:42 +00:00
|
|
|
html("<tr><th>Downloads</th></tr>");
|
2007-05-14 22:07:37 +00:00
|
|
|
header = 1;
|
2007-05-11 21:44:42 +00:00
|
|
|
}
|
|
|
|
html("<tr><td>");
|
|
|
|
url = cgit_pageurl(cgit_query_repo, "blob",
|
2007-05-25 23:15:10 +00:00
|
|
|
fmt("id=%s&path=%s", sha1_to_hex(fileid),
|
2007-05-11 21:44:42 +00:00
|
|
|
buf));
|
|
|
|
html_link_open(url, NULL, NULL);
|
|
|
|
html_txt(buf);
|
|
|
|
html_link_close();
|
2007-05-23 22:02:18 +00:00
|
|
|
html("</td></tr>");
|
2007-05-11 21:44:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-12-11 15:55:07 +00:00
|
|
|
static void cgit_print_branches()
|
|
|
|
{
|
2007-01-27 23:39:26 +00:00
|
|
|
html("<tr class='nohover'><th class='left'>Branch</th>"
|
2007-05-22 21:15:36 +00:00
|
|
|
"<th class='left'>Idle</th>"
|
2007-01-17 00:10:39 +00:00
|
|
|
"<th class='left'>Author</th>"
|
|
|
|
"<th class='left'>Head commit</th></tr>\n");
|
2006-12-11 15:55:07 +00:00
|
|
|
for_each_branch_ref(cgit_print_branch_cb, NULL);
|
2007-01-17 00:10:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void cgit_print_tags()
|
|
|
|
{
|
2007-05-14 22:07:37 +00:00
|
|
|
header = 0;
|
2007-01-17 00:10:39 +00:00
|
|
|
for_each_tag_ref(cgit_print_tag_cb, NULL);
|
2006-12-11 15:55:07 +00:00
|
|
|
}
|
|
|
|
|
2007-05-11 21:44:42 +00:00
|
|
|
static void cgit_print_archives()
|
|
|
|
{
|
2007-05-14 22:07:37 +00:00
|
|
|
header = 0;
|
2007-05-11 21:44:42 +00:00
|
|
|
for_each_ref(cgit_print_archive_cb, NULL);
|
2007-05-14 22:07:37 +00:00
|
|
|
if (header)
|
2007-05-11 21:44:42 +00:00
|
|
|
html("</table>");
|
|
|
|
}
|
|
|
|
|
2006-12-11 16:04:19 +00:00
|
|
|
void cgit_print_summary()
|
2006-12-11 15:55:07 +00:00
|
|
|
{
|
2007-05-23 20:46:54 +00:00
|
|
|
html("<div id='summary'>");
|
|
|
|
cgit_print_archives();
|
2007-05-11 21:44:42 +00:00
|
|
|
html("<h2>");
|
|
|
|
html_txt(cgit_repo->name);
|
|
|
|
html(" - ");
|
|
|
|
html_txt(cgit_repo->desc);
|
|
|
|
html("</h2>");
|
2007-05-23 20:46:54 +00:00
|
|
|
if (cgit_repo->readme)
|
|
|
|
html_include(cgit_repo->readme);
|
|
|
|
html("</div>");
|
2007-05-26 01:33:41 +00:00
|
|
|
if (cgit_summary_log > 0)
|
|
|
|
cgit_print_log(cgit_query_head, 0, cgit_summary_log, NULL, NULL, 0);
|
2007-05-23 20:46:54 +00:00
|
|
|
html("<table class='list nowrap'>");
|
2007-05-26 01:33:41 +00:00
|
|
|
if (cgit_summary_log > 0)
|
|
|
|
html("<tr class='nohover'><td colspan='4'> </td></tr>");
|
2006-12-11 15:55:07 +00:00
|
|
|
cgit_print_branches();
|
2007-01-17 00:10:39 +00:00
|
|
|
html("<tr class='nohover'><td colspan='4'> </td></tr>");
|
|
|
|
cgit_print_tags();
|
|
|
|
html("</table>");
|
2006-12-11 15:55:07 +00:00
|
|
|
}
|