aboutsummaryrefslogtreecommitdiffstats
path: root/shared.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2006-12-20 22:48:27 +0100
committerLars Hjemli <hjemli@gmail.com>2006-12-20 22:48:27 +0100
commit36aba00273e7af1b94bf8c5dd5068709d983d01e (patch)
treed9be4e6f27b115a799af40cad43445f63fbf2238 /shared.c
parentUse html_filemode in ui-tree.c (diff)
downloadcgit-36aba00273e7af1b94bf8c5dd5068709d983d01e.tar.xz
cgit-36aba00273e7af1b94bf8c5dd5068709d983d01e.zip
Add basic diff view
Finally, xdiff is used to show per-file diffs via commit view. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'shared.c')
-rw-r--r--shared.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shared.c b/shared.c
index b576df8..762eb38 100644
--- a/shared.c
+++ b/shared.c
@@ -37,6 +37,7 @@ char *cgit_query_repo = NULL;
char *cgit_query_page = NULL;
char *cgit_query_head = NULL;
char *cgit_query_sha1 = NULL;
+char *cgit_query_sha2 = NULL;
int cgit_query_ofs = 0;
int htmlfd = 0;
@@ -83,6 +84,9 @@ void cgit_querystring_cb(const char *name, const char *value)
} else if (!strcmp(name, "id")) {
cgit_query_sha1 = xstrdup(value);
cgit_query_has_sha1 = 1;
+ } else if (!strcmp(name, "id2")) {
+ cgit_query_sha2 = xstrdup(value);
+ cgit_query_has_sha1 = 1;
} else if (!strcmp(name, "ofs")) {
cgit_query_ofs = atoi(value);
}