diff options
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -65,9 +65,9 @@ struct cgit_repo { | |||
65 | char *desc; | 65 | char *desc; |
66 | char *owner; | 66 | char *owner; |
67 | char *defbranch; | 67 | char *defbranch; |
68 | char *group; | ||
69 | char *module_link; | 68 | char *module_link; |
70 | char *readme; | 69 | char *readme; |
70 | char *section; | ||
71 | char *clone_url; | 71 | char *clone_url; |
72 | int snapshots; | 72 | int snapshots; |
73 | int enable_log_filecount; | 73 | int enable_log_filecount; |
@@ -79,6 +79,9 @@ struct cgit_repo { | |||
79 | struct cgit_filter *source_filter; | 79 | struct cgit_filter *source_filter; |
80 | }; | 80 | }; |
81 | 81 | ||
82 | typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, | ||
83 | const char *value); | ||
84 | |||
82 | struct cgit_repolist { | 85 | struct cgit_repolist { |
83 | int length; | 86 | int length; |
84 | int count; | 87 | int count; |
@@ -156,20 +159,22 @@ struct cgit_config { | |||
156 | char *logo; | 159 | char *logo; |
157 | char *logo_link; | 160 | char *logo_link; |
158 | char *module_link; | 161 | char *module_link; |
159 | char *repo_group; | ||
160 | char *robots; | 162 | char *robots; |
161 | char *root_title; | 163 | char *root_title; |
162 | char *root_desc; | 164 | char *root_desc; |
163 | char *root_readme; | 165 | char *root_readme; |
164 | char *script_name; | 166 | char *script_name; |
167 | char *section; | ||
165 | char *virtual_root; | 168 | char *virtual_root; |
166 | int cache_size; | 169 | int cache_size; |
167 | int cache_dynamic_ttl; | 170 | int cache_dynamic_ttl; |
168 | int cache_max_create_time; | 171 | int cache_max_create_time; |
169 | int cache_repo_ttl; | 172 | int cache_repo_ttl; |
170 | int cache_root_ttl; | 173 | int cache_root_ttl; |
174 | int cache_scanrc_ttl; | ||
171 | int cache_static_ttl; | 175 | int cache_static_ttl; |
172 | int embedded; | 176 | int embedded; |
177 | int enable_filter_overrides; | ||
173 | int enable_index_links; | 178 | int enable_index_links; |
174 | int enable_log_filecount; | 179 | int enable_log_filecount; |
175 | int enable_log_linecount; | 180 | int enable_log_linecount; |