X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/9003cc172a4cbc6678f3d8003ae1ad3a55f62fed..750f6462c9e1e20e87d2bce5ca2e7fd10e0d1ba6:/cmd.c?ds=sidebyside diff --git a/cmd.c b/cmd.c index 10761ce..0202917 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); @@ -93,7 +98,7 @@ static void repolist_fn(struct cgit_context *ctx) static void patch_fn(struct cgit_context *ctx) { - cgit_print_patch(ctx->qry.sha1, ctx->qry.path); + cgit_print_patch(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path); } static void plain_fn(struct cgit_context *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),