From: Aaron Taylor Date: Sun, 22 Nov 2020 09:37:20 +0000 (-0800) Subject: Added instructions to sysadmin notes for placing a 'tags' button on the gitweb toolbar. X-Git-Url: http://git.subgeniuskitty.com/website_subgeniuskitty.com/.git/commitdiff_plain/adccee6a565076c4fd88e45331968b757b5641c0 Added instructions to sysadmin notes for placing a 'tags' button on the gitweb toolbar. --- diff --git a/data/notes/mail_web_git_server.md b/data/notes/mail_web_git_server.md index faa352d..aa297bb 100644 --- a/data/notes/mail_web_git_server.md +++ b/data/notes/mail_web_git_server.md @@ -459,9 +459,13 @@ Remember to set that up. # HTML text to include as home page header. $home_text = "indextext.html"; - - # Add a toolbar option with the 'git clone url'. - $feature{'actions'}{'default'} = [('clone url', 'git://git.subgeniuskitty.com/%n', 'summary')]; + + # Add a toolbar option with the 'git clone url' and an + # option to display all tags. + $feature{'actions'}{'default'} = [ + ('clone url', 'git://git.subgeniuskitty.com/%n', 'summary'), + ('tags', 'https://git.subgeniuskitty.com/%n/tags', 'summary') + ]; # Category name is read from .git/category, in the same manner as .git/description. $projects_list_group_categories = 1;