diff options
author | Christian Hesse <mail@eworm.de> | 2018-12-29 00:13:54 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2025-08-18 21:14:41 +0200 |
commit | 971d8056c348ef74285f941a6cb9ac498acf1d0a (patch) | |
tree | e5c902dd1b4e3dbbc65d7c197abd3dd01a50b086 /ui-shared.c | |
parent | ui-log: build ellipsis from bullets (diff) | |
download | cgit-971d8056c348ef74285f941a6cb9ac498acf1d0a.tar.gz cgit-971d8056c348ef74285f941a6cb9ac498acf1d0a.tar.bz2 cgit-971d8056c348ef74285f941a6cb9ac498acf1d0a.zip |
ui-tree: provide link to about page for pretty formatting
We have an ongoing discussion about display filters and pretty
formatting in tree view. How about providing a link to about page
for pretty formatting?
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index 4250b89..aa95b87 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -348,6 +348,12 @@ void cgit_tree_link(const char *name, const char *title, const char *class, reporevlink("tree", name, title, class, head, rev, path); } +void cgit_about_link(const char *name, const char *title, const char *class, + const char *head, const char *rev, const char *path) +{ + reporevlink("about", name, title, class, head, rev, path); +} + void cgit_plain_link(const char *name, const char *title, const char *class, const char *head, const char *rev, const char *path) { |