From: Lukas Fleischer Date: Wed, 14 Aug 2013 08:50:33 +0000 (+0200) Subject: cmd.c: Add a "rawdiff" command X-Git-Tag: v0.10~90 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=445f6ae8e3ef19b6ca70e741e934778bc4a05555;p=cgit cmd.c: Add a "rawdiff" command This can be used to generate raw diffs between arbitrary revisions using something like /rawdiff/?id=v0.9&id2=v0.9.1 Signed-off-by: Lukas Fleischer --- diff --git a/cmd.c b/cmd.c index 10761ce..9893710 100644 --- a/cmd.c +++ b/cmd.c @@ -60,6 +60,11 @@ static void diff_fn(struct cgit_context *ctx) cgit_print_diff(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path, 1, 0); } +static void rawdiff_fn(struct cgit_context *ctx) +{ + cgit_print_diff(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path, 1, 1); +} + static void info_fn(struct cgit_context *ctx) { cgit_clone_info(ctx); @@ -150,6 +155,7 @@ struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx) def_cmd(objects, 1, 0, 0, 1), def_cmd(patch, 1, 0, 1, 0), def_cmd(plain, 1, 0, 0, 0), + def_cmd(rawdiff, 1, 0, 1, 0), def_cmd(refs, 1, 1, 0, 0), def_cmd(repolist, 0, 0, 0, 0), def_cmd(snapshot, 1, 0, 0, 0),