|
diff --git a/cmd.c b/cmd.c index 6dc9f5e..536515b 100644 --- a/ cmd.c+++ b/ cmd.c |
|
@@ -54,33 +54,34 @@ static void commit_fn(struct cgit_context *ctx) |
54 | cgit_print_commit(ctx->qry.sha1, ctx->qry.path); |
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, |
| |
71 | ctx->repo->enable_commit_graph); |
71 | } |
72 | } |
72 | |
73 | |
73 | static void ls_cache_fn(struct cgit_context *ctx) |
74 | static void ls_cache_fn(struct cgit_context *ctx) |
74 | { |
75 | { |
75 | ctx->page.mimetype = "text/plain"; |
76 | ctx->page.mimetype = "text/plain"; |
76 | ctx->page.filename = "ls-cache.txt"; |
77 | ctx->page.filename = "ls-cache.txt"; |
77 | cgit_print_http_headers(ctx); |
78 | cgit_print_http_headers(ctx); |
78 | cache_ls(ctx->cfg.cache_root); |
79 | cache_ls(ctx->cfg.cache_root); |
79 | } |
80 | } |
80 | |
81 | |
81 | static void objects_fn(struct cgit_context *ctx) |
82 | static void objects_fn(struct cgit_context *ctx) |
82 | { |
83 | { |
83 | cgit_clone_objects(ctx); |
84 | cgit_clone_objects(ctx); |
84 | } |
85 | } |
85 | |
86 | |
86 | static void repolist_fn(struct cgit_context *ctx) |
87 | static void repolist_fn(struct cgit_context *ctx) |
|