diff options
author | KatolaZ <katolaz@freaknet.org> | 2018-07-28 20:39:11 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2018-07-28 20:39:11 +0100 |
commit | 21a23a12ffa5513248eecc5444dc396c5ba0b443 (patch) | |
tree | ba94b371270b02a097bbb6811f51ff5dc96557ae /ui_70-commit.c | |
parent | f36a36a32b71d38db62680e2162549e8ffcb46be (diff) |
commit page almost working
Diffstat (limited to 'ui_70-commit.c')
-rw-r--r-- | ui_70-commit.c | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/ui_70-commit.c b/ui_70-commit.c new file mode 100644 index 0000000..7e6d84a --- /dev/null +++ b/ui_70-commit.c @@ -0,0 +1,169 @@ +/* ui-commit.c: generate commit view + * + * Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com> + * + * Licensed under GNU General Public License v2 + * (see COPYING for full license text) + */ + +#include "cgit.h" +#include "ui-commit.h" +#include "html.h" +#include "ui_70-shared.h" +#include "ui-diff.h" +#include "ui-log.h" + +void cgit_print_commit(char *hex, const char *prefix) +{ + struct commit *commit, *parent; + struct commitinfo *info, *parent_info; + struct commit_list *p; + struct strbuf notes = STRBUF_INIT; + struct object_id oid; + char *tmp, *tmp2; + int parents = 0; + + if (!hex) + hex = ctx.qry.head; + + if (get_oid(hex, &oid)) { + cgit_gopher_error("Bad object id"); + return; + } + commit = lookup_commit_reference(&oid); + if (!commit) { + cgit_gopher_error("Bad commit reference"); + return; + } + info = cgit_parse_commit(commit); + + /*format_display_notes(&oid, ¬es, PAGE_ENCODING, 0);*/ + + load_ref_decorations(NULL, DECORATE_FULL_REFS); + + cgit_print_layout_start(); + cgit_print_diff_ctrls(); + + cgit_gopher_start_selector(GOPHER_INFO); + cgit_gopher_text("author: "); + cgit_gopher_text(info->author); + if (!ctx.cfg.noplainemail) { + cgit_gopher_text(" "); + cgit_gopher_text(info->author_email); + cgit_gopher_text(" "); + } + cgit_gopher_text(show_date(info->author_date, info->author_tz, + cgit_date_mode(DATE_ISO8601))); + cgit_gopher_tab(); + cgit_gopher_selector_link("Err"); + cgit_gopher_end_selector(); + + cgit_gopher_start_selector(GOPHER_INFO); + cgit_gopher_text("committer: "); + cgit_gopher_text(info->committer); + if (!ctx.cfg.noplainemail) { + cgit_gopher_text(" "); + cgit_gopher_text(info->committer_email); + cgit_gopher_text(" "); + } + cgit_gopher_text(show_date(info->committer_date, info->committer_tz, + cgit_date_mode(DATE_ISO8601))); + cgit_gopher_tab(); + cgit_gopher_selector_link("Err"); + cgit_gopher_end_selector(); + + cgit_gopher_start_selector(GOPHER_MENU); + cgit_gopher_text("commit "); + tmp = oid_to_hex(&commit->object.oid); + cgit_gopher_text(tmp); + cgit_gopher_tab(); + cgit_commit_link(tmp, NULL, NULL, ctx.qry.head, tmp, prefix); + cgit_gopher_end_selector(); + + cgit_gopher_start_selector(GOPHER_MENU); + cgit_gopher_text("patch "); + cgit_gopher_tab(); + cgit_patch_link("patch", NULL, NULL, NULL, tmp, prefix); + cgit_gopher_end_selector(); + + cgit_gopher_start_selector(GOPHER_MENU); + cgit_gopher_text("tree "); + cgit_gopher_tab(); + tmp = xstrdup(hex); + cgit_tree_link(oid_to_hex(&commit->maybe_tree->object.oid), NULL, NULL, + ctx.qry.head, tmp, NULL); + cgit_gopher_end_selector(); + +/* if (prefix) { + html(" /"); + cgit_tree_link(prefix, NULL, NULL, ctx.qry.head, tmp, prefix); + } +*/ free(tmp); + + for (p = commit->parents; p; p = p->next) { + parent = lookup_commit_reference(&p->item->object.oid); + if (!parent) { + cgit_gopher_info("Error reading parent commit"); + continue; + } + + cgit_gopher_start_selector(GOPHER_MENU); + cgit_gopher_text("parent "); + cgit_gopher_tab(); + tmp = tmp2 = oid_to_hex(&p->item->object.oid); + if (ctx.repo->enable_subject_links) { + parent_info = cgit_parse_commit(parent); + tmp2 = parent_info->subject; + } + cgit_commit_link(tmp2, NULL, NULL, ctx.qry.head, tmp, prefix); + cgit_gopher_end_selector(); + /*cgit_diff_link("diff", NULL, NULL, ctx.qry.head, hex, + oid_to_hex(&p->item->object.oid), prefix); + html(")</td></tr>"); + */ + parents++; + } + /* + if (ctx.repo->snapshots) { + html("<tr><th>download</th><td colspan='2' class='sha1'>"); + cgit_print_snapshot_links(ctx.repo, hex, "<br/>"); + html("</td></tr>"); + } + */ + cgit_gopher_start_selector(GOPHER_INFO); + cgit_gopher_text("subject: "); + cgit_gopher_text(info->subject); + cgit_gopher_tab(); + cgit_gopher_selector_link("Err"); + cgit_gopher_end_selector(); + + if (strlen(info->msg)){ + cgit_gopher_start_selector(GOPHER_INFO); + cgit_gopher_text("message: "); + cgit_gopher_text(info->msg); + cgit_gopher_tab(); + cgit_gopher_selector_link("Err"); + cgit_gopher_end_selector(); + } + + /* FIXME: NOTES HAVE BEEN DISABLED*/ +/* if (notes.len != 0) { + html("<div class='notes-header'>Notes</div>"); + html("<div class='notes'>"); + cgit_open_filter(ctx.repo->commit_filter); + html_txt(notes.buf); + cgit_close_filter(ctx.repo->commit_filter); + html("</div>"); + html("<div class='notes-footer'></div>"); + }*/ + if (parents < 3) { + if (parents) + tmp = oid_to_hex(&commit->parents->item->object.oid); + else + tmp = NULL; + cgit_print_diff(ctx.qry.sha1, tmp, prefix, 0, 0); + } + strbuf_release(¬es); + cgit_free_commitinfo(info); + cgit_print_layout_end(); +} |