|
diff --git a/ui-log.c b/ui-log.c index 0b37785..f3132c9 100644 --- a/ ui-log.c+++ b/ ui-log.c |
|
@@ -132,65 +132,65 @@ static const char *disambiguate_ref(const char *ref) |
132 | return ref; |
132 | return ref; |
133 | } |
133 | } |
134 | |
134 | |
135 | void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern, |
135 | void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern, |
136 | char *path, int pager) |
136 | char *path, int pager) |
137 | { |
137 | { |
138 | struct rev_info rev; |
138 | struct rev_info rev; |
139 | struct commit *commit; |
139 | struct commit *commit; |
140 | const char *argv[] = {NULL, NULL, NULL, NULL, NULL}; |
140 | const char *argv[] = {NULL, NULL, NULL, NULL, NULL}; |
141 | int argc = 2; |
141 | int argc = 2; |
142 | int i, columns = 3; |
142 | int i, columns = 3; |
143 | |
143 | |
144 | if (!tip) |
144 | if (!tip) |
145 | tip = ctx.qry.head; |
145 | tip = ctx.qry.head; |
146 | |
146 | |
147 | argv[1] = disambiguate_ref(tip); |
147 | argv[1] = disambiguate_ref(tip); |
148 | |
148 | |
149 | if (grep && pattern && (!strcmp(grep, "grep") || |
149 | if (grep && pattern && (!strcmp(grep, "grep") || |
150 | !strcmp(grep, "author") || |
150 | !strcmp(grep, "author") || |
151 | !strcmp(grep, "committer"))) |
151 | !strcmp(grep, "committer"))) |
152 | argv[argc++] = fmt("--%s=%s", grep, pattern); |
152 | argv[argc++] = fmt("--%s=%s", grep, pattern); |
153 | |
153 | |
154 | if (path) { |
154 | if (path) { |
155 | argv[argc++] = "--"; |
155 | argv[argc++] = "--"; |
156 | argv[argc++] = path; |
156 | argv[argc++] = path; |
157 | } |
157 | } |
158 | init_revisions(&rev, NULL); |
158 | init_revisions(&rev, NULL); |
159 | rev.abbrev = DEFAULT_ABBREV; |
159 | rev.abbrev = DEFAULT_ABBREV; |
160 | rev.commit_format = CMIT_FMT_DEFAULT; |
160 | rev.commit_format = CMIT_FMT_DEFAULT; |
161 | rev.verbose_header = 1; |
161 | rev.verbose_header = 1; |
162 | rev.show_root_diff = 0; |
162 | rev.show_root_diff = 0; |
163 | setup_revisions(argc, argv, &rev, NULL); |
163 | setup_revisions(argc, argv, &rev, NULL); |
164 | load_ref_decorations(); |
164 | load_ref_decorations(DECORATE_FULL_REFS); |
165 | rev.show_decorations = 1; |
165 | rev.show_decorations = 1; |
166 | rev.grep_filter.regflags |= REG_ICASE; |
166 | rev.grep_filter.regflags |= REG_ICASE; |
167 | compile_grep_patterns(&rev.grep_filter); |
167 | compile_grep_patterns(&rev.grep_filter); |
168 | prepare_revision_walk(&rev); |
168 | prepare_revision_walk(&rev); |
169 | |
169 | |
170 | if (pager) |
170 | if (pager) |
171 | html("<table class='list nowrap'>"); |
171 | html("<table class='list nowrap'>"); |
172 | |
172 | |
173 | html("<tr class='nohover'><th class='left'>Age</th>" |
173 | html("<tr class='nohover'><th class='left'>Age</th>" |
174 | "<th class='left'>Commit message"); |
174 | "<th class='left'>Commit message"); |
175 | if (pager) { |
175 | if (pager) { |
176 | html(" ("); |
176 | html(" ("); |
177 | cgit_log_link(ctx.qry.showmsg ? "Collapse" : "Expand", NULL, |
177 | cgit_log_link(ctx.qry.showmsg ? "Collapse" : "Expand", NULL, |
178 | NULL, ctx.qry.head, ctx.qry.sha1, |
178 | NULL, ctx.qry.head, ctx.qry.sha1, |
179 | ctx.qry.path, ctx.qry.ofs, ctx.qry.grep, |
179 | ctx.qry.path, ctx.qry.ofs, ctx.qry.grep, |
180 | ctx.qry.search, ctx.qry.showmsg ? 0 : 1); |
180 | ctx.qry.search, ctx.qry.showmsg ? 0 : 1); |
181 | html(")"); |
181 | html(")"); |
182 | } |
182 | } |
183 | html("</th><th class='left'>Author</th>"); |
183 | html("</th><th class='left'>Author</th>"); |
184 | if (ctx.repo->enable_log_filecount) { |
184 | if (ctx.repo->enable_log_filecount) { |
185 | html("<th class='left'>Files</th>"); |
185 | html("<th class='left'>Files</th>"); |
186 | columns++; |
186 | columns++; |
187 | if (ctx.repo->enable_log_linecount) { |
187 | if (ctx.repo->enable_log_linecount) { |
188 | html("<th class='left'>Lines</th>"); |
188 | html("<th class='left'>Lines</th>"); |
189 | columns++; |
189 | columns++; |
190 | } |
190 | } |
191 | } |
191 | } |
192 | html("</tr>\n"); |
192 | html("</tr>\n"); |
193 | |
193 | |
194 | if (ofs<0) |
194 | if (ofs<0) |
195 | ofs = 0; |
195 | ofs = 0; |
196 | |
196 | |
|