|
diff --git a/cgit.h b/cgit.h index 4fe94c6..8b0defa 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -1,49 +1,50 @@ |
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 <xdiff-interface.h> |
18 | #include <xdiff/xdiff.h> |
19 | #include <xdiff/xdiff.h> |
19 | #include <utf8.h> |
20 | #include <utf8.h> |
20 | |
21 | |
21 | |
22 | |
22 | /* |
23 | /* |
23 | * Dateformats used on misc. pages |
24 | * Dateformats used on misc. pages |
24 | */ |
25 | */ |
25 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" |
26 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" |
26 | #define FMT_SHORTDATE "%Y-%m-%d" |
27 | #define FMT_SHORTDATE "%Y-%m-%d" |
27 | #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" |
28 | #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" |
28 | |
29 | |
29 | |
30 | |
30 | /* |
31 | /* |
31 | * Limits used for relative dates |
32 | * Limits used for relative dates |
32 | */ |
33 | */ |
33 | #define TM_MIN 60 |
34 | #define TM_MIN 60 |
34 | #define TM_HOUR (TM_MIN * 60) |
35 | #define TM_HOUR (TM_MIN * 60) |
35 | #define TM_DAY (TM_HOUR * 24) |
36 | #define TM_DAY (TM_HOUR * 24) |
36 | #define TM_WEEK (TM_DAY * 7) |
37 | #define TM_WEEK (TM_DAY * 7) |
37 | #define TM_YEAR (TM_DAY * 365) |
38 | #define TM_YEAR (TM_DAY * 365) |
38 | #define TM_MONTH (TM_YEAR / 12.0) |
39 | #define TM_MONTH (TM_YEAR / 12.0) |
39 | |
40 | |
40 | |
41 | |
41 | /* |
42 | /* |
42 | * Default encoding |
43 | * Default encoding |
43 | */ |
44 | */ |
44 | #define PAGE_ENCODING "UTF-8" |
45 | #define PAGE_ENCODING "UTF-8" |
45 | |
46 | |
46 | typedef void (*configfn)(const char *name, const char *value); |
47 | typedef void (*configfn)(const char *name, const char *value); |
47 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
48 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
48 | typedef void (*linediff_fn)(char *line, int len); |
49 | typedef void (*linediff_fn)(char *line, int len); |
49 | |
50 | |
@@ -192,52 +193,53 @@ struct cgit_snapshot_format { |
192 | const char *suffix; |
193 | const char *suffix; |
193 | const char *mimetype; |
194 | const char *mimetype; |
194 | write_archive_fn_t write_func; |
195 | write_archive_fn_t write_func; |
195 | int bit; |
196 | int bit; |
196 | }; |
197 | }; |
197 | |
198 | |
198 | extern const char *cgit_version; |
199 | extern const char *cgit_version; |
199 | |
200 | |
200 | extern struct cgit_repolist cgit_repolist; |
201 | extern struct cgit_repolist cgit_repolist; |
201 | extern struct cgit_context ctx; |
202 | extern struct cgit_context ctx; |
202 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
203 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
203 | |
204 | |
204 | extern struct cgit_repo *cgit_add_repo(const char *url); |
205 | extern struct cgit_repo *cgit_add_repo(const char *url); |
205 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
206 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
206 | extern void cgit_repo_config_cb(const char *name, const char *value); |
207 | extern void cgit_repo_config_cb(const char *name, const char *value); |
207 | |
208 | |
208 | extern int chk_zero(int result, char *msg); |
209 | extern int chk_zero(int result, char *msg); |
209 | extern int chk_positive(int result, char *msg); |
210 | extern int chk_positive(int result, char *msg); |
210 | extern int chk_non_negative(int result, char *msg); |
211 | extern int chk_non_negative(int result, char *msg); |
211 | |
212 | |
212 | extern char *trim_end(const char *str, char c); |
213 | extern char *trim_end(const char *str, char c); |
213 | extern char *strlpart(char *txt, int maxlen); |
214 | extern char *strlpart(char *txt, int maxlen); |
214 | extern char *strrpart(char *txt, int maxlen); |
215 | extern char *strrpart(char *txt, int maxlen); |
215 | |
216 | |
216 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
217 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
217 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
218 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
218 | int flags, void *cb_data); |
219 | int flags, void *cb_data); |
219 | |
220 | |
220 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
221 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
221 | |
222 | |
222 | extern int cgit_diff_files(const unsigned char *old_sha1, |
223 | extern int cgit_diff_files(const unsigned char *old_sha1, |
223 | const unsigned char *new_sha1, |
224 | const unsigned char *new_sha1, |
224 | linediff_fn fn); |
225 | unsigned long *old_size, unsigned long *new_size, |
| |
226 | int *binary, linediff_fn fn); |
225 | |
227 | |
226 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
228 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
227 | const unsigned char *new_sha1, |
229 | const unsigned char *new_sha1, |
228 | filepair_fn fn, const char *prefix); |
230 | filepair_fn fn, const char *prefix); |
229 | |
231 | |
230 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
232 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
231 | |
233 | |
232 | extern char *fmt(const char *format,...); |
234 | extern char *fmt(const char *format,...); |
233 | |
235 | |
234 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
236 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
235 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
237 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
236 | extern void cgit_parse_url(const char *url); |
238 | extern void cgit_parse_url(const char *url); |
237 | |
239 | |
238 | extern const char *cgit_repobasename(const char *reponame); |
240 | extern const char *cgit_repobasename(const char *reponame); |
239 | |
241 | |
240 | extern int cgit_parse_snapshots_mask(const char *str); |
242 | extern int cgit_parse_snapshots_mask(const char *str); |
241 | |
243 | |
242 | |
244 | |
243 | #endif /* CGIT_H */ |
245 | #endif /* CGIT_H */ |
|