Unidiff1 files changed, 2 insertions, 0 deletions
|
diff --git a/cgit.h b/cgit.h index acb5e8f..1194eb0 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -6,24 +6,25 @@ |
6 | #include <cache.h> |
6 | #include <cache.h> |
7 | #include <grep.h> |
7 | #include <grep.h> |
8 | #include <object.h> |
8 | #include <object.h> |
9 | #include <tree.h> |
9 | #include <tree.h> |
10 | #include <commit.h> |
10 | #include <commit.h> |
11 | #include <tag.h> |
11 | #include <tag.h> |
12 | #include <diff.h> |
12 | #include <diff.h> |
13 | #include <diffcore.h> |
13 | #include <diffcore.h> |
14 | #include <refs.h> |
14 | #include <refs.h> |
15 | #include <revision.h> |
15 | #include <revision.h> |
16 | #include <log-tree.h> |
16 | #include <log-tree.h> |
17 | #include <archive.h> |
17 | #include <archive.h> |
| |
18 | #include <string-list.h> |
18 | #include <xdiff-interface.h> |
19 | #include <xdiff-interface.h> |
19 | #include <xdiff/xdiff.h> |
20 | #include <xdiff/xdiff.h> |
20 | #include <utf8.h> |
21 | #include <utf8.h> |
21 | |
22 | |
22 | |
23 | |
23 | /* |
24 | /* |
24 | * Dateformats used on misc. pages |
25 | * Dateformats used on misc. pages |
25 | */ |
26 | */ |
26 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" |
27 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" |
27 | #define FMT_SHORTDATE "%Y-%m-%d" |
28 | #define FMT_SHORTDATE "%Y-%m-%d" |
28 | #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" |
29 | #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" |
29 | |
30 | |
@@ -166,24 +167,25 @@ struct cgit_config { |
166 | int max_lock_attempts; |
167 | int max_lock_attempts; |
167 | int max_msg_len; |
168 | int max_msg_len; |
168 | int max_repodesc_len; |
169 | int max_repodesc_len; |
169 | int max_stats; |
170 | int max_stats; |
170 | int nocache; |
171 | int nocache; |
171 | int noplainemail; |
172 | int noplainemail; |
172 | int noheader; |
173 | int noheader; |
173 | int renamelimit; |
174 | int renamelimit; |
174 | int snapshots; |
175 | int snapshots; |
175 | int summary_branches; |
176 | int summary_branches; |
176 | int summary_log; |
177 | int summary_log; |
177 | int summary_tags; |
178 | int summary_tags; |
| |
179 | struct string_list mimetypes; |
178 | }; |
180 | }; |
179 | |
181 | |
180 | struct cgit_page { |
182 | struct cgit_page { |
181 | time_t modified; |
183 | time_t modified; |
182 | time_t expires; |
184 | time_t expires; |
183 | size_t size; |
185 | size_t size; |
184 | char *mimetype; |
186 | char *mimetype; |
185 | char *charset; |
187 | char *charset; |
186 | char *filename; |
188 | char *filename; |
187 | char *etag; |
189 | char *etag; |
188 | char *title; |
190 | char *title; |
189 | int status; |
191 | int status; |
|