about summary refs log tree commit diff stats
path: root/ui-shared.c
diff options
context:
space:
mode:
authorJohn Keeping2015-08-12 15:55:28 +0100
committerJason A. Donenfeld2015-08-12 16:57:46 +0200
commit30304d8156a72ffc95e45e1aa9407319b81bd253 (patch)
treec3f8220fb2abfa0da7f7f0b479415db42820d838 /ui-shared.c
parentshared: make cgit_diff_tree_cb public (diff)
downloadcgit-30304d8156a72ffc95e45e1aa9407319b81bd253.tar.gz
cgit-30304d8156a72ffc95e45e1aa9407319b81bd253.zip
log: allow users to follow a file
Teach the "log" UI to behave in the same way as "git log --follow", when
given a suitable instruction by the user.  The default behaviour remains
to show the log without following renames, but the follow behaviour can
be activated by following a link in the page header.

Follow is not the default because outputting merges in follow mode is
tricky ("git log --follow" will not show merges).  We also disable the
graph in follow mode because the commit graph is not simplified so we
end up with frequent gaps in the graph and many lines that do not
connect with any commits we're actually showing.

We also teach the "diff" and "commit" UIs to respect the follow flag on
URLs, causing the single-file version of these UIs to detect renames.
This feature is needed only for commits that rename the path we're
interested in.

For commits before the file has been renamed (i.e. that appear later in
the log list) we change the file path in the links from the log to point
to the old name; this means that links to commits always limit by the
path known to that commit.  If we didn't do this we would need to walk
down the log diff'ing every commit whenever we want to show a commit.
The drawback is that the "Log" link in the top bar of such a page links
to the log limited by the old name, so it will only show pre-rename
commits.  I consider this a reasonable trade-off since the "Back" button
still works and the log matches the path displayed in the top bar.

Since following renames requires running diff on every commit we
consider, I've added a knob to the configuration file to globally
enable/disable this feature.  Note that we may consider a large number
of commits the revision walking machinery no longer performs any path
limitation so we have to examine every commit until we find a page full
of commits that affect the target path or something related to it.

Suggested-by: René Neumann <necoro@necoro.eu>
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c28
1 files changed, 25 insertions, 3 deletions
diff --git a/ui-shared.c b/ui-shared.c index 4f84b7c..6be0c2e 100644 --- a/ui-shared.c +++ b/ui-shared.c
@@ -303,7 +303,8 @@ void cgit_plain_link(const char *name, const char *title, const char *class,
303 303
304void cgit_log_link(const char *name, const char *title, const char *class, 304void cgit_log_link(const char *name, const char *title, const char *class,
305 const char *head, const char *rev, const char *path, 305 const char *head, const char *rev, const char *path,
306 int ofs, const char *grep, const char *pattern, int showmsg) 306 int ofs, const char *grep, const char *pattern, int showmsg,
307 int follow)
307{ 308{
308 char *delim; 309 char *delim;
309 310
@@ -332,6 +333,11 @@ void cgit_log_link(const char *name, const char *title, const char *class,
332 if (showmsg) { 333 if (showmsg) {
333 html(delim); 334 html(delim);
334 html("showmsg=1"); 335 html("showmsg=1");
336 delim = "&amp;";
337 }
338 if (follow) {
339 html(delim);
340 html("follow=1");
335 } 341 }
336 html("'>"); 342 html("'>");
337 html_txt(name); 343 html_txt(name);
@@ -373,6 +379,10 @@ void cgit_commit_link(char *name, const char *title, const char *class,
373 html("ignorews=1"); 379 html("ignorews=1");
374 delim = "&amp;"; 380 delim = "&amp;";
375 } 381 }
382 if (ctx.qry.follow) {
383 html(delim);
384 html("follow=1");
385 }
376 html("'>"); 386 html("'>");
377 if (name[0] != '\0') 387 if (name[0] != '\0')
378 html_txt(name); 388 html_txt(name);
@@ -429,6 +439,10 @@ void cgit_diff_link(const char *name, const char *title, const char *class,
429 html("ignorews=1"); 439 html("ignorews=1");
430 delim = "&amp;"; 440 delim = "&amp;";
431 } 441 }
442 if (ctx.qry.follow) {
443 html(delim);
444 html("follow=1");
445 }
432 html("'>"); 446 html("'>");
433 html_txt(name); 447 html_txt(name);
434 html("</a>"); 448 html("</a>");
@@ -469,7 +483,7 @@ static void cgit_self_link(char *name, const char *title, const char *class)
469 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL, 483 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL,
470 ctx.qry.path, ctx.qry.ofs, 484 ctx.qry.path, ctx.qry.ofs,
471 ctx.qry.grep, ctx.qry.search, 485 ctx.qry.grep, ctx.qry.search,
472 ctx.qry.showmsg); 486 ctx.qry.showmsg, ctx.qry.follow);
473 else if (!strcmp(ctx.qry.page, "commit")) 487 else if (!strcmp(ctx.qry.page, "commit"))
474 cgit_commit_link(name, title, class, ctx.qry.head, 488 cgit_commit_link(name, title, class, ctx.qry.head,
475 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL, 489 ctx.qry.has_sha1 ? ctx.qry.sha1 : NULL,
@@ -945,7 +959,7 @@ void cgit_print_pageheader(void)
945 ctx.qry.sha1, NULL); 959 ctx.qry.sha1, NULL);
946 cgit_log_link("log", NULL, hc("log"), ctx.qry.head, 960 cgit_log_link("log", NULL, hc("log"), ctx.qry.head,
947 NULL, ctx.qry.vpath, 0, NULL, NULL, 961 NULL, ctx.qry.vpath, 0, NULL, NULL,
948 ctx.qry.showmsg); 962 ctx.qry.showmsg, ctx.qry.follow);
949 cgit_tree_link("tree", NULL, hc("tree"), ctx.qry.head, 963 cgit_tree_link("tree", NULL, hc("tree"), ctx.qry.head,
950 ctx.qry.sha1, ctx.qry.vpath); 964 ctx.qry.sha1, ctx.qry.vpath);
951 cgit_commit_link("commit", NULL, hc("commit"), 965 cgit_commit_link("commit", NULL, hc("commit"),
@@ -993,6 +1007,14 @@ void cgit_print_pageheader(void)
993 html("<div class='path'>"); 1007 html("<div class='path'>");
994 html("path: "); 1008 html("path: ");
995 cgit_print_path_crumbs(ctx.qry.vpath); 1009 cgit_print_path_crumbs(ctx.qry.vpath);
1010 if (ctx.cfg.enable_follow_links && !strcmp(ctx.qry.page, "log")) {
1011 html(" (");
1012 ctx.qry.follow = !ctx.qry.follow;
1013 cgit_self_link(ctx.qry.follow ? "follow" : "unfollow",
1014 NULL, NULL);
1015 ctx.qry.follow = !ctx.qry.follow;
1016 html(")");
1017 }
996 html("</div>"); 1018 html("</div>");
997 } 1019 }
998 html("<div class='content'>"); 1020 html("<div class='content'>");