diff options
author | Christian Hesse <mail@eworm.de> | 2018-12-29 00:13:54 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2024-11-25 10:05:37 +0100 |
commit | 6cdc4903f0902e5b14c7b84b2f3c213e2c68c4c2 (patch) | |
tree | 45ab5fe506df2a4daae6d5c538eec7644cdd8a43 /ui-shared.c | |
parent | 91a705c53979ce06e7345db8f9baad12094ace01 (diff) | |
download | cgit-6cdc4903f0902e5b14c7b84b2f3c213e2c68c4c2.tar.gz cgit-6cdc4903f0902e5b14c7b84b2f3c213e2c68c4c2.tar.xz |
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) { |