|
diff --git a/cmd.c b/cmd.c index a9e426a..893ae25 100644 --- a/ cmd.c+++ b/ cmd.c |
|
@@ -38,33 +38,33 @@ static void atom_fn(struct cgit_context *ctx) |
38 | |
38 | |
39 | static void about_fn(struct cgit_context *ctx) |
39 | static void about_fn(struct cgit_context *ctx) |
40 | { |
40 | { |
41 | if (ctx->repo) |
41 | if (ctx->repo) |
42 | cgit_print_repo_readme(ctx->qry.path); |
42 | cgit_print_repo_readme(ctx->qry.path); |
43 | else |
43 | else |
44 | cgit_print_site_readme(); |
44 | cgit_print_site_readme(); |
45 | } |
45 | } |
46 | |
46 | |
47 | static void blob_fn(struct cgit_context *ctx) |
47 | static void blob_fn(struct cgit_context *ctx) |
48 | { |
48 | { |
49 | cgit_print_blob(ctx->qry.sha1, ctx->qry.path, ctx->qry.head); |
49 | cgit_print_blob(ctx->qry.sha1, ctx->qry.path, ctx->qry.head); |
50 | } |
50 | } |
51 | |
51 | |
52 | static void commit_fn(struct cgit_context *ctx) |
52 | static void commit_fn(struct cgit_context *ctx) |
53 | { |
53 | { |
54 | cgit_print_commit(ctx->qry.sha1); |
54 | cgit_print_commit(ctx->qry.sha1, ctx->qry.path); |
55 | } |
55 | } |
56 | |
56 | |
57 | static void diff_fn(struct cgit_context *ctx) |
57 | static void diff_fn(struct cgit_context *ctx) |
58 | { |
58 | { |
59 | cgit_print_diff(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path); |
59 | cgit_print_diff(ctx->qry.sha1, ctx->qry.sha2, ctx->qry.path); |
60 | } |
60 | } |
61 | |
61 | |
62 | static void info_fn(struct cgit_context *ctx) |
62 | static void info_fn(struct cgit_context *ctx) |
63 | { |
63 | { |
64 | cgit_clone_info(ctx); |
64 | cgit_clone_info(ctx); |
65 | } |
65 | } |
66 | |
66 | |
67 | static void log_fn(struct cgit_context *ctx) |
67 | static void log_fn(struct cgit_context *ctx) |
68 | { |
68 | { |
69 | cgit_print_log(ctx->qry.sha1, ctx->qry.ofs, ctx->cfg.max_commit_count, |
69 | cgit_print_log(ctx->qry.sha1, ctx->qry.ofs, ctx->cfg.max_commit_count, |
70 | ctx->qry.grep, ctx->qry.search, ctx->qry.path, 1); |
70 | ctx->qry.grep, ctx->qry.search, ctx->qry.path, 1); |
|