From: Lennart Poettering Date: Thu, 19 Apr 2018 15:53:58 +0000 (+0200) Subject: systemctl: format documentation links in status output as clickable links X-Git-Tag: v239~383^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78c7d20ebceb1dcb9a60b7c4d2de7a400e80f808;p=thirdparty%2Fsystemd.git systemctl: format documentation links in status output as clickable links --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 388eee47a1d..b5352068bdb 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -4143,8 +4143,17 @@ static void print_status_info( if (i->what) printf(" What: %s\n", i->what); - STRV_FOREACH(t, i->documentation) - printf(" %*s %s\n", 9, t == i->documentation ? "Docs:" : "", *t); + STRV_FOREACH(t, i->documentation) { + _cleanup_free_ char *formatted = NULL; + const char *q; + + if (terminal_urlify(*t, NULL, &formatted) >= 0) + q = formatted; + else + q = *t; + + printf(" %*s %s\n", 9, t == i->documentation ? "Docs:" : "", q); + } STRV_FOREACH_PAIR(t, t2, i->listen) printf(" %*s %s (%s)\n", 9, t == i->listen ? "Listen:" : "", *t2, *t);