Unidiff1 files changed, 2 insertions, 0 deletions
|
diff --git a/cgit.h b/cgit.h index 6c6c460..b7b0adb 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -134,24 +134,25 @@ struct cgit_query { |
134 | char *head; |
134 | char *head; |
135 | char *sha1; |
135 | char *sha1; |
136 | char *sha2; |
136 | char *sha2; |
137 | char *path; |
137 | char *path; |
138 | char *name; |
138 | char *name; |
139 | char *mimetype; |
139 | char *mimetype; |
140 | char *url; |
140 | char *url; |
141 | char *period; |
141 | char *period; |
142 | int ofs; |
142 | int ofs; |
143 | int nohead; |
143 | int nohead; |
144 | char *sort; |
144 | char *sort; |
145 | int showmsg; |
145 | int showmsg; |
| |
146 | int ssdiff; |
146 | }; |
147 | }; |
147 | |
148 | |
148 | struct cgit_config { |
149 | struct cgit_config { |
149 | char *agefile; |
150 | char *agefile; |
150 | char *cache_root; |
151 | char *cache_root; |
151 | char *clone_prefix; |
152 | char *clone_prefix; |
152 | char *css; |
153 | char *css; |
153 | char *favicon; |
154 | char *favicon; |
154 | char *footer; |
155 | char *footer; |
155 | char *head_include; |
156 | char *head_include; |
156 | char *header; |
157 | char *header; |
157 | char *index_header; |
158 | char *index_header; |
@@ -185,24 +186,25 @@ struct cgit_config { |
185 | int max_lock_attempts; |
186 | int max_lock_attempts; |
186 | int max_msg_len; |
187 | int max_msg_len; |
187 | int max_repodesc_len; |
188 | int max_repodesc_len; |
188 | int max_stats; |
189 | int max_stats; |
189 | int nocache; |
190 | int nocache; |
190 | int noplainemail; |
191 | int noplainemail; |
191 | int noheader; |
192 | int noheader; |
192 | int renamelimit; |
193 | int renamelimit; |
193 | int snapshots; |
194 | int snapshots; |
194 | int summary_branches; |
195 | int summary_branches; |
195 | int summary_log; |
196 | int summary_log; |
196 | int summary_tags; |
197 | int summary_tags; |
| |
198 | int ssdiff; |
197 | struct string_list mimetypes; |
199 | struct string_list mimetypes; |
198 | struct cgit_filter *about_filter; |
200 | struct cgit_filter *about_filter; |
199 | struct cgit_filter *commit_filter; |
201 | struct cgit_filter *commit_filter; |
200 | struct cgit_filter *source_filter; |
202 | struct cgit_filter *source_filter; |
201 | }; |
203 | }; |
202 | |
204 | |
203 | struct cgit_page { |
205 | struct cgit_page { |
204 | time_t modified; |
206 | time_t modified; |
205 | time_t expires; |
207 | time_t expires; |
206 | size_t size; |
208 | size_t size; |
207 | char *mimetype; |
209 | char *mimetype; |
208 | char *charset; |
210 | char *charset; |
|