|
diff --git a/cmd.c b/cmd.c index 6dc9f5e..536515b 100644 --- a/ cmd.c+++ b/ cmd.c |
|
@@ -38,65 +38,66 @@ 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, 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) |
87 | { |
88 | { |
88 | cgit_print_repolist(); |
89 | cgit_print_repolist(); |
89 | } |
90 | } |
90 | |
91 | |
91 | static void patch_fn(struct cgit_context *ctx) |
92 | static void patch_fn(struct cgit_context *ctx) |
92 | { |
93 | { |
93 | cgit_print_patch(ctx->qry.sha1, ctx->qry.path); |
94 | cgit_print_patch(ctx->qry.sha1, ctx->qry.path); |
94 | } |
95 | } |
95 | |
96 | |
96 | static void plain_fn(struct cgit_context *ctx) |
97 | static void plain_fn(struct cgit_context *ctx) |
97 | { |
98 | { |
98 | cgit_print_plain(ctx); |
99 | cgit_print_plain(ctx); |
99 | } |
100 | } |
100 | |
101 | |
101 | static void refs_fn(struct cgit_context *ctx) |
102 | static void refs_fn(struct cgit_context *ctx) |
102 | { |
103 | { |
|