- strncpy(buf, refname, sizeof(buf));
- commit = lookup_commit(sha1);
- if (commit && !parse_commit(commit)){
- info = cgit_parse_commit(commit);
- html("<tr><td>");
- url = cgit_pageurl(cgit_query_repo, "log",
- fmt("h=%s", refname));
- html_link_open(url, NULL, NULL);
- html_txt(buf);
- html_link_close();
- html("</td><td>");
- cgit_print_date(commit->date);
- html("</td><td>");
- html_txt(info->author);
- html("</td><td>");
- url = cgit_pageurl(cgit_query_repo, "commit",
- fmt("id=%s", sha1_to_hex(sha1)));
- html_link_open(url, NULL, NULL);
- html_ntxt(cgit_max_msg_len, info->subject);
- html_link_close();
- html("</td></tr>\n");
- cgit_free_commitinfo(info);
- } else {
- html("<tr><td>");
- html_txt(buf);
- html("</td><td colspan='3'>");
- htmlf("*** bad ref %s ***", sha1_to_hex(sha1));
- html("</td></tr>\n");
+static void print_url(char *base, char *suffix)
+{
+ if (!base || !*base)
+ return;
+ if (urls++ == 0) {
+ html("<tr class='nohover'><td colspan='4'> </td></tr>");
+ html("<tr><th class='left' colspan='4'>Clone</th></tr>\n");