|
diff --git a/cgit.h b/cgit.h index 8c64efe..9259f33 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -1,41 +1,42 @@ |
1 | #ifndef CGIT_H |
1 | #ifndef CGIT_H |
2 | #define CGIT_H |
2 | #define CGIT_H |
3 | |
3 | |
4 | |
4 | |
5 | #include <git-compat-util.h> |
5 | #include <git-compat-util.h> |
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 | |
30 | |
31 | |
31 | /* |
32 | /* |
32 | * Limits used for relative dates |
33 | * Limits used for relative dates |
33 | */ |
34 | */ |
34 | #define TM_MIN 60 |
35 | #define TM_MIN 60 |
35 | #define TM_HOUR (TM_MIN * 60) |
36 | #define TM_HOUR (TM_MIN * 60) |
36 | #define TM_DAY (TM_HOUR * 24) |
37 | #define TM_DAY (TM_HOUR * 24) |
37 | #define TM_WEEK (TM_DAY * 7) |
38 | #define TM_WEEK (TM_DAY * 7) |
38 | #define TM_YEAR (TM_DAY * 365) |
39 | #define TM_YEAR (TM_DAY * 365) |
39 | #define TM_MONTH (TM_YEAR / 12.0) |
40 | #define TM_MONTH (TM_YEAR / 12.0) |
40 | |
41 | |
41 | |
42 | |
@@ -153,48 +154,49 @@ struct cgit_config { |
153 | int cache_size; |
154 | int cache_size; |
154 | int cache_dynamic_ttl; |
155 | int cache_dynamic_ttl; |
155 | int cache_max_create_time; |
156 | int cache_max_create_time; |
156 | int cache_repo_ttl; |
157 | int cache_repo_ttl; |
157 | int cache_root_ttl; |
158 | int cache_root_ttl; |
158 | int cache_static_ttl; |
159 | int cache_static_ttl; |
159 | int embedded; |
160 | int embedded; |
160 | int enable_index_links; |
161 | int enable_index_links; |
161 | int enable_log_filecount; |
162 | int enable_log_filecount; |
162 | int enable_log_linecount; |
163 | int enable_log_linecount; |
163 | int local_time; |
164 | int local_time; |
164 | int max_repo_count; |
165 | int max_repo_count; |
165 | int max_commit_count; |
166 | int max_commit_count; |
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 noheader; |
172 | int noheader; |
172 | int renamelimit; |
173 | int renamelimit; |
173 | int snapshots; |
174 | int snapshots; |
174 | int summary_branches; |
175 | int summary_branches; |
175 | int summary_log; |
176 | int summary_log; |
176 | int summary_tags; |
177 | int summary_tags; |
| |
178 | struct string_list mimetypes; |
177 | }; |
179 | }; |
178 | |
180 | |
179 | struct cgit_page { |
181 | struct cgit_page { |
180 | time_t modified; |
182 | time_t modified; |
181 | time_t expires; |
183 | time_t expires; |
182 | size_t size; |
184 | size_t size; |
183 | char *mimetype; |
185 | char *mimetype; |
184 | char *charset; |
186 | char *charset; |
185 | char *filename; |
187 | char *filename; |
186 | char *etag; |
188 | char *etag; |
187 | char *title; |
189 | char *title; |
188 | int status; |
190 | int status; |
189 | char *statusmsg; |
191 | char *statusmsg; |
190 | }; |
192 | }; |
191 | |
193 | |
192 | struct cgit_context { |
194 | struct cgit_context { |
193 | struct cgit_query qry; |
195 | struct cgit_query qry; |
194 | struct cgit_config cfg; |
196 | struct cgit_config cfg; |
195 | struct cgit_repo *repo; |
197 | struct cgit_repo *repo; |
196 | struct cgit_page page; |
198 | struct cgit_page page; |
197 | }; |
199 | }; |
198 | |
200 | |
199 | struct cgit_snapshot_format { |
201 | struct cgit_snapshot_format { |
200 | const char *suffix; |
202 | const char *suffix; |
|