diff options
author | Andy Green | 2018-07-03 11:33:59 +0800 |
---|---|---|
committer | Yigit Sever | 2023-07-21 03:03:51 +0300 |
commit | f466091a0d5717d61853965aa3eb1441efdff007 (patch) | |
tree | 1b906a5012e27d580e1f82e39c3199398011515d /cgit.h | |
parent | 319e4e08ecfdabecce1304b2c60acb09d9d2a736 (diff) | |
download | cgit-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |