|
diff --git a/cgit.h b/cgit.h index acb5e8f..1194eb0 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -1,81 +1,82 @@ |
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 | |
42 | /* |
43 | /* |
43 | * Default encoding |
44 | * Default encoding |
44 | */ |
45 | */ |
45 | #define PAGE_ENCODING "UTF-8" |
46 | #define PAGE_ENCODING "UTF-8" |
46 | |
47 | |
47 | typedef void (*configfn)(const char *name, const char *value); |
48 | typedef void (*configfn)(const char *name, const char *value); |
48 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
49 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
49 | typedef void (*linediff_fn)(char *line, int len); |
50 | typedef void (*linediff_fn)(char *line, int len); |
50 | |
51 | |
51 | struct cgit_repo { |
52 | struct cgit_repo { |
52 | char *url; |
53 | char *url; |
53 | char *name; |
54 | char *name; |
54 | char *path; |
55 | char *path; |
55 | char *desc; |
56 | char *desc; |
56 | char *owner; |
57 | char *owner; |
57 | char *defbranch; |
58 | char *defbranch; |
58 | char *group; |
59 | char *group; |
59 | char *module_link; |
60 | char *module_link; |
60 | char *readme; |
61 | char *readme; |
61 | char *clone_url; |
62 | char *clone_url; |
62 | int snapshots; |
63 | int snapshots; |
63 | int enable_log_filecount; |
64 | int enable_log_filecount; |
64 | int enable_log_linecount; |
65 | int enable_log_linecount; |
65 | int max_stats; |
66 | int max_stats; |
66 | time_t mtime; |
67 | time_t mtime; |
67 | }; |
68 | }; |
68 | |
69 | |
69 | struct cgit_repolist { |
70 | struct cgit_repolist { |
70 | int length; |
71 | int length; |
71 | int count; |
72 | int count; |
72 | struct cgit_repo *repos; |
73 | struct cgit_repo *repos; |
73 | }; |
74 | }; |
74 | |
75 | |
75 | struct commitinfo { |
76 | struct commitinfo { |
76 | struct commit *commit; |
77 | struct commit *commit; |
77 | char *author; |
78 | char *author; |
78 | char *author_email; |
79 | char *author_email; |
79 | unsigned long author_date; |
80 | unsigned long author_date; |
80 | char *committer; |
81 | char *committer; |
81 | char *committer_email; |
82 | char *committer_email; |
@@ -114,128 +115,129 @@ struct cgit_query { |
114 | char *repo; |
115 | char *repo; |
115 | char *page; |
116 | char *page; |
116 | char *search; |
117 | char *search; |
117 | char *grep; |
118 | char *grep; |
118 | char *head; |
119 | char *head; |
119 | char *sha1; |
120 | char *sha1; |
120 | char *sha2; |
121 | char *sha2; |
121 | char *path; |
122 | char *path; |
122 | char *name; |
123 | char *name; |
123 | char *mimetype; |
124 | char *mimetype; |
124 | char *url; |
125 | char *url; |
125 | char *period; |
126 | char *period; |
126 | int ofs; |
127 | int ofs; |
127 | int nohead; |
128 | int nohead; |
128 | char *sort; |
129 | char *sort; |
129 | int showmsg; |
130 | int showmsg; |
130 | }; |
131 | }; |
131 | |
132 | |
132 | struct cgit_config { |
133 | struct cgit_config { |
133 | char *agefile; |
134 | char *agefile; |
134 | char *cache_root; |
135 | char *cache_root; |
135 | char *clone_prefix; |
136 | char *clone_prefix; |
136 | char *css; |
137 | char *css; |
137 | char *favicon; |
138 | char *favicon; |
138 | char *footer; |
139 | char *footer; |
139 | char *head_include; |
140 | char *head_include; |
140 | char *header; |
141 | char *header; |
141 | char *index_header; |
142 | char *index_header; |
142 | char *index_info; |
143 | char *index_info; |
143 | char *logo; |
144 | char *logo; |
144 | char *logo_link; |
145 | char *logo_link; |
145 | char *module_link; |
146 | char *module_link; |
146 | char *repo_group; |
147 | char *repo_group; |
147 | char *robots; |
148 | char *robots; |
148 | char *root_title; |
149 | char *root_title; |
149 | char *root_desc; |
150 | char *root_desc; |
150 | char *root_readme; |
151 | char *root_readme; |
151 | char *script_name; |
152 | char *script_name; |
152 | char *virtual_root; |
153 | char *virtual_root; |
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 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; |
190 | char *statusmsg; |
192 | char *statusmsg; |
191 | }; |
193 | }; |
192 | |
194 | |
193 | struct cgit_context { |
195 | struct cgit_context { |
194 | struct cgit_query qry; |
196 | struct cgit_query qry; |
195 | struct cgit_config cfg; |
197 | struct cgit_config cfg; |
196 | struct cgit_repo *repo; |
198 | struct cgit_repo *repo; |
197 | struct cgit_page page; |
199 | struct cgit_page page; |
198 | }; |
200 | }; |
199 | |
201 | |
200 | struct cgit_snapshot_format { |
202 | struct cgit_snapshot_format { |
201 | const char *suffix; |
203 | const char *suffix; |
202 | const char *mimetype; |
204 | const char *mimetype; |
203 | write_archive_fn_t write_func; |
205 | write_archive_fn_t write_func; |
204 | int bit; |
206 | int bit; |
205 | }; |
207 | }; |
206 | |
208 | |
207 | extern const char *cgit_version; |
209 | extern const char *cgit_version; |
208 | |
210 | |
209 | extern struct cgit_repolist cgit_repolist; |
211 | extern struct cgit_repolist cgit_repolist; |
210 | extern struct cgit_context ctx; |
212 | extern struct cgit_context ctx; |
211 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
213 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
212 | |
214 | |
213 | extern struct cgit_repo *cgit_add_repo(const char *url); |
215 | extern struct cgit_repo *cgit_add_repo(const char *url); |
214 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
216 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
215 | extern void cgit_repo_config_cb(const char *name, const char *value); |
217 | extern void cgit_repo_config_cb(const char *name, const char *value); |
216 | |
218 | |
217 | extern int chk_zero(int result, char *msg); |
219 | extern int chk_zero(int result, char *msg); |
218 | extern int chk_positive(int result, char *msg); |
220 | extern int chk_positive(int result, char *msg); |
219 | extern int chk_non_negative(int result, char *msg); |
221 | extern int chk_non_negative(int result, char *msg); |
220 | |
222 | |
221 | extern char *trim_end(const char *str, char c); |
223 | extern char *trim_end(const char *str, char c); |
222 | extern char *strlpart(char *txt, int maxlen); |
224 | extern char *strlpart(char *txt, int maxlen); |
223 | extern char *strrpart(char *txt, int maxlen); |
225 | extern char *strrpart(char *txt, int maxlen); |
224 | |
226 | |
225 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
227 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
226 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
228 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
227 | int flags, void *cb_data); |
229 | int flags, void *cb_data); |
228 | |
230 | |
229 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
231 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
230 | |
232 | |
231 | extern int cgit_diff_files(const unsigned char *old_sha1, |
233 | extern int cgit_diff_files(const unsigned char *old_sha1, |
232 | const unsigned char *new_sha1, |
234 | const unsigned char *new_sha1, |
233 | unsigned long *old_size, unsigned long *new_size, |
235 | unsigned long *old_size, unsigned long *new_size, |
234 | int *binary, linediff_fn fn); |
236 | int *binary, linediff_fn fn); |
235 | |
237 | |
236 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
238 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
237 | const unsigned char *new_sha1, |
239 | const unsigned char *new_sha1, |
238 | filepair_fn fn, const char *prefix); |
240 | filepair_fn fn, const char *prefix); |
239 | |
241 | |
240 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
242 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
241 | |
243 | |
|