Unidiff1 files changed, 2 insertions, 2 deletions
|
diff --git a/cgit.h b/cgit.h index 5659580..fc7c7d5 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -56,27 +56,27 @@ struct cgit_filter { |
56 | int pipe_fh[2]; |
56 | int pipe_fh[2]; |
57 | int pid; |
57 | int pid; |
58 | int exitstatus; |
58 | int exitstatus; |
59 | }; |
59 | }; |
60 | |
60 | |
61 | struct cgit_repo { |
61 | struct cgit_repo { |
62 | char *url; |
62 | char *url; |
63 | char *name; |
63 | char *name; |
64 | char *path; |
64 | char *path; |
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; |
74 | int enable_log_linecount; |
74 | int enable_log_linecount; |
75 | int max_stats; |
75 | int max_stats; |
76 | time_t mtime; |
76 | time_t mtime; |
77 | struct cgit_filter *about_filter; |
77 | struct cgit_filter *about_filter; |
78 | struct cgit_filter *commit_filter; |
78 | struct cgit_filter *commit_filter; |
79 | struct cgit_filter *source_filter; |
79 | struct cgit_filter *source_filter; |
80 | }; |
80 | }; |
81 | |
81 | |
82 | struct cgit_repolist { |
82 | struct cgit_repolist { |
@@ -147,30 +147,30 @@ struct cgit_config { |
147 | char *cache_root; |
147 | char *cache_root; |
148 | char *clone_prefix; |
148 | char *clone_prefix; |
149 | char *css; |
149 | char *css; |
150 | char *favicon; |
150 | char *favicon; |
151 | char *footer; |
151 | char *footer; |
152 | char *head_include; |
152 | char *head_include; |
153 | char *header; |
153 | char *header; |
154 | char *index_header; |
154 | char *index_header; |
155 | char *index_info; |
155 | char *index_info; |
156 | char *logo; |
156 | char *logo; |
157 | char *logo_link; |
157 | char *logo_link; |
158 | char *module_link; |
158 | char *module_link; |
159 | char *repo_group; |
| |
160 | char *robots; |
159 | char *robots; |
161 | char *root_title; |
160 | char *root_title; |
162 | char *root_desc; |
161 | char *root_desc; |
163 | char *root_readme; |
162 | char *root_readme; |
164 | char *script_name; |
163 | char *script_name; |
| |
164 | char *section; |
165 | char *virtual_root; |
165 | char *virtual_root; |
166 | int cache_size; |
166 | int cache_size; |
167 | int cache_dynamic_ttl; |
167 | int cache_dynamic_ttl; |
168 | int cache_max_create_time; |
168 | int cache_max_create_time; |
169 | int cache_repo_ttl; |
169 | int cache_repo_ttl; |
170 | int cache_root_ttl; |
170 | int cache_root_ttl; |
171 | int cache_scanrc_ttl; |
171 | int cache_scanrc_ttl; |
172 | int cache_static_ttl; |
172 | int cache_static_ttl; |
173 | int embedded; |
173 | int embedded; |
174 | int enable_index_links; |
174 | int enable_index_links; |
175 | int enable_log_filecount; |
175 | int enable_log_filecount; |
176 | int enable_log_linecount; |
176 | int enable_log_linecount; |
|