/* ui-commit.c: generate commit view * * Copyright (C) 2006 Lars Hjemli * * Licensed under GNU General Public License v2 * (see COPYING for full license text) */ #include "cgit.h" void cgit_print_commit(const char *hex) { struct commit *commit; struct commitinfo *info; struct commit_list *p; unsigned char sha1[20]; if (get_sha1(hex, sha1)) { cgit_print_error(fmt("Bad object id: %s", hex)); return; } commit = lookup_commit_reference(sha1); if (!commit) { cgit_print_error(fmt("Bad commit reference: %s", hex)); return; } info = cgit_parse_commit(commit); html("\n"); html("\n"); html("\n"); html("\n", sha1_to_hex(commit->tree->object.sha1)); for (p = commit->parents; p ; p = p->next) { html("\n", sha1_to_hex(p->item->object.sha1)); } html("
author"); html_txt(info->author); html(" "); html_txt(info->author_email); html(""); cgit_print_date(info->author_date); html("
committer"); html_txt(info->committer); html(" "); html_txt(info->committer_email); html(""); cgit_print_date(info->committer_date); html("
tree%s
parent%s
\n"); html("
"); html_txt(info->subject); html("
"); html("
"); html_txt(info->msg); html("
"); cgit_free_commitinfo(info); }