diff options
| author | Christian Hesse <mail@eworm.de> | 2018-12-29 00:13:54 +0100 |
|---|---|---|
| committer | Christian Hesse <mail@eworm.de> | 2025-11-17 21:40:58 +0100 |
| commit | cb2bad0566ddf90954997d867fdc5be9f78006cf (patch) | |
| tree | c6e92c5f62aa21d3db0f92a5c656de78536fb386 /ui-shared.c | |
| parent | e63c1836a3e7627320039c3761cc9af47e2680a2 (diff) | |
| download | cgit-cb2bad0566ddf90954997d867fdc5be9f78006cf.tar.gz cgit-cb2bad0566ddf90954997d867fdc5be9f78006cf.tar.bz2 cgit-cb2bad0566ddf90954997d867fdc5be9f78006cf.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) { |
