summaryrefslogtreecommitdiffabout
path: root/ui-diff.c
Unidiff
Diffstat (limited to 'ui-diff.c') (more/less context) (show whitespace changes)
-rw-r--r--ui-diff.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/ui-diff.c b/ui-diff.c
index 4fcf852..2a22009 100644
--- a/ui-diff.c
+++ b/ui-diff.c
@@ -4,13 +4,14 @@
4 * 4 *
5 * Licensed under GNU General Public License v2 5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text) 6 * (see COPYING for full license text)
7 */ 7 */
8 8
9#include "cgit.h" 9#include "cgit.h"
10 10#include "html.h"
11#include "ui-shared.h"
11 12
12unsigned char old_rev_sha1[20]; 13unsigned char old_rev_sha1[20];
13unsigned char new_rev_sha1[20]; 14unsigned char new_rev_sha1[20];
14 15
15/* 16/*
16 * print a single line returned from xdiff 17 * print a single line returned from xdiff
@@ -68,19 +69,19 @@ static void header(unsigned char *sha1, char *path1, int mode1,
68 htmlf(" %.6o", mode1); 69 htmlf(" %.6o", mode1);
69 if (mode2 != mode1) 70 if (mode2 != mode1)
70 htmlf("..%.6o", mode2); 71 htmlf("..%.6o", mode2);
71 } 72 }
72 html("<br/>--- a/"); 73 html("<br/>--- a/");
73 if (mode1 != 0) 74 if (mode1 != 0)
74 cgit_tree_link(path1, NULL, NULL, cgit_query_head, 75 cgit_tree_link(path1, NULL, NULL, ctx.qry.head,
75 sha1_to_hex(old_rev_sha1), path1); 76 sha1_to_hex(old_rev_sha1), path1);
76 else 77 else
77 html_txt(path1); 78 html_txt(path1);
78 html("<br/>+++ b/"); 79 html("<br/>+++ b/");
79 if (mode2 != 0) 80 if (mode2 != 0)
80 cgit_tree_link(path2, NULL, NULL, cgit_query_head, 81 cgit_tree_link(path2, NULL, NULL, ctx.qry.head,
81 sha1_to_hex(new_rev_sha1), path2); 82 sha1_to_hex(new_rev_sha1), path2);
82 else 83 else
83 html_txt(path2); 84 html_txt(path2);
84 } 85 }
85 html("</div>"); 86 html("</div>");
86} 87}
@@ -104,13 +105,13 @@ void cgit_print_diff(const char *new_rev, const char *old_rev, const char *prefi
104{ 105{
105 enum object_type type; 106 enum object_type type;
106 unsigned long size; 107 unsigned long size;
107 struct commit *commit, *commit2; 108 struct commit *commit, *commit2;
108 109
109 if (!new_rev) 110 if (!new_rev)
110 new_rev = cgit_query_head; 111 new_rev = ctx.qry.head;
111 get_sha1(new_rev, new_rev_sha1); 112 get_sha1(new_rev, new_rev_sha1);
112 type = sha1_object_info(new_rev_sha1, &size); 113 type = sha1_object_info(new_rev_sha1, &size);
113 if (type == OBJ_BAD) { 114 if (type == OBJ_BAD) {
114 cgit_print_error(fmt("Bad object name: %s", new_rev)); 115 cgit_print_error(fmt("Bad object name: %s", new_rev));
115 return; 116 return;
116 } 117 }