aboutsummaryrefslogtreecommitdiffstats
path: root/cgit.h
diff options
context:
space:
mode:
authorAndy Green2018-07-03 11:33:59 +0800
committerYigit Sever2023-07-21 03:03:51 +0300
commitf466091a0d5717d61853965aa3eb1441efdff007 (patch)
tree1b906a5012e27d580e1f82e39c3199398011515d /cgit.h
parent319e4e08ecfdabecce1304b2c60acb09d9d2a736 (diff)
downloadcgit-f466091a0d5717d61853965aa3eb1441efdff007.tar.gz
cgit-f466091a0d5717d61853965aa3eb1441efdff007.tar.bz2
cgit-f466091a0d5717d61853965aa3eb1441efdff007.zip
css: change to be a list
Without changing the default behaviour of including /cgit.css if nothing declared, allow the "css" config to be given multiple times listing one or more alternative URL paths to be included in the document head area. Signed-off-by: Andy Green <andy@warmcat.com> Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgit.h b/cgit.h
index 69b5c13..1d88396 100644
--- a/cgit.h
+++ b/cgit.h
@@ -195,7 +195,6 @@ struct cgit_config {
195 char *cache_root; 195 char *cache_root;
196 char *clone_prefix; 196 char *clone_prefix;
197 char *clone_url; 197 char *clone_url;
198 char *css;
199 char *favicon; 198 char *favicon;
200 char *footer; 199 char *footer;
201 char *head_include; 200 char *head_include;
@@ -206,6 +205,7 @@ struct cgit_config {
206 char *module_link; 205 char *module_link;
207 char *project_list; 206 char *project_list;
208 struct string_list readme; 207 struct string_list readme;
208 struct string_list css;
209 char *robots; 209 char *robots;
210 char *root_title; 210 char *root_title;
211 char *root_desc; 211 char *root_desc;