|
diff --git a/cgit.h b/cgit.h index 2ff5340..610a16d 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -1,62 +1,62 @@ |
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/xdiff.h> |
18 | #include <xdiff/xdiff.h> |
19 | |
19 | |
20 | |
20 | |
21 | /* |
21 | /* |
22 | * The valid cgit repo-commands |
22 | * The valid cgit repo-commands |
23 | */ |
23 | */ |
24 | #define CMD_LOG 1 |
24 | #define CMD_LOG 1 |
25 | #define CMD_COMMIT 2 |
25 | #define CMD_COMMIT 2 |
26 | #define CMD_DIFF 3 |
26 | #define CMD_DIFF 3 |
27 | #define CMD_TREE 4 |
27 | #define CMD_TREE 4 |
28 | #define CMD_BLOB 5 |
28 | #define CMD_BLOB 5 |
29 | #define CMD_SNAPSHOT 6 |
29 | #define CMD_SNAPSHOT 6 |
30 | |
30 | #define CMD_TAG 7 |
31 | |
31 | |
32 | /* |
32 | /* |
33 | * Dateformats used on misc. pages |
33 | * Dateformats used on misc. pages |
34 | */ |
34 | */ |
35 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S" |
35 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S" |
36 | #define FMT_SHORTDATE "%Y-%m-%d" |
36 | #define FMT_SHORTDATE "%Y-%m-%d" |
37 | |
37 | |
38 | |
38 | |
39 | /* |
39 | /* |
40 | * Limits used for relative dates |
40 | * Limits used for relative dates |
41 | */ |
41 | */ |
42 | #define TM_MIN 60 |
42 | #define TM_MIN 60 |
43 | #define TM_HOUR (TM_MIN * 60) |
43 | #define TM_HOUR (TM_MIN * 60) |
44 | #define TM_DAY (TM_HOUR * 24) |
44 | #define TM_DAY (TM_HOUR * 24) |
45 | #define TM_WEEK (TM_DAY * 7) |
45 | #define TM_WEEK (TM_DAY * 7) |
46 | #define TM_YEAR (TM_DAY * 365) |
46 | #define TM_YEAR (TM_DAY * 365) |
47 | #define TM_MONTH (TM_YEAR / 12.0) |
47 | #define TM_MONTH (TM_YEAR / 12.0) |
48 | |
48 | |
49 | |
49 | |
50 | typedef void (*configfn)(const char *name, const char *value); |
50 | typedef void (*configfn)(const char *name, const char *value); |
51 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
51 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
52 | typedef void (*linediff_fn)(char *line, int len); |
52 | typedef void (*linediff_fn)(char *line, int len); |
53 | |
53 | |
54 | struct cacheitem { |
54 | struct cacheitem { |
55 | char *name; |
55 | char *name; |
56 | struct stat st; |
56 | struct stat st; |
57 | int ttl; |
57 | int ttl; |
58 | int fd; |
58 | int fd; |
59 | }; |
59 | }; |
60 | |
60 | |
61 | struct repoinfo { |
61 | struct repoinfo { |
62 | char *url; |
62 | char *url; |
@@ -183,54 +183,57 @@ extern void html_attr(char *txt); |
183 | extern void html_hidden(char *name, char *value); |
183 | extern void html_hidden(char *name, char *value); |
184 | extern void html_link_open(char *url, char *title, char *class); |
184 | extern void html_link_open(char *url, char *title, char *class); |
185 | extern void html_link_close(void); |
185 | extern void html_link_close(void); |
186 | extern void html_filemode(unsigned short mode); |
186 | extern void html_filemode(unsigned short mode); |
187 | extern int html_include(const char *filename); |
187 | extern int html_include(const char *filename); |
188 | |
188 | |
189 | extern int cgit_read_config(const char *filename, configfn fn); |
189 | extern int cgit_read_config(const char *filename, configfn fn); |
190 | extern int cgit_parse_query(char *txt, configfn fn); |
190 | extern int cgit_parse_query(char *txt, configfn fn); |
191 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
191 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
192 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
192 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
193 | extern void cgit_parse_url(const char *url); |
193 | extern void cgit_parse_url(const char *url); |
194 | |
194 | |
195 | extern char *cache_safe_filename(const char *unsafe); |
195 | extern char *cache_safe_filename(const char *unsafe); |
196 | extern int cache_lock(struct cacheitem *item); |
196 | extern int cache_lock(struct cacheitem *item); |
197 | extern int cache_unlock(struct cacheitem *item); |
197 | extern int cache_unlock(struct cacheitem *item); |
198 | extern int cache_cancel_lock(struct cacheitem *item); |
198 | extern int cache_cancel_lock(struct cacheitem *item); |
199 | extern int cache_exist(struct cacheitem *item); |
199 | extern int cache_exist(struct cacheitem *item); |
200 | extern int cache_expired(struct cacheitem *item); |
200 | extern int cache_expired(struct cacheitem *item); |
201 | |
201 | |
202 | extern char *cgit_repourl(const char *reponame); |
202 | extern char *cgit_repourl(const char *reponame); |
203 | extern char *cgit_pageurl(const char *reponame, const char *pagename, |
203 | extern char *cgit_pageurl(const char *reponame, const char *pagename, |
204 | const char *query); |
204 | const char *query); |
205 | |
205 | |
206 | extern void cgit_tree_link(char *name, char *title, char *class, char *head, |
206 | extern void cgit_tree_link(char *name, char *title, char *class, char *head, |
207 | char *rev, char *path); |
207 | char *rev, char *path); |
208 | extern void cgit_log_link(char *name, char *title, char *class, char *head, |
208 | extern void cgit_log_link(char *name, char *title, char *class, char *head, |
209 | char *rev, char *path, int ofs); |
209 | char *rev, char *path, int ofs); |
210 | extern void cgit_commit_link(char *name, char *title, char *class, char *head, |
210 | extern void cgit_commit_link(char *name, char *title, char *class, char *head, |
211 | char *rev); |
211 | char *rev); |
212 | extern void cgit_diff_link(char *name, char *title, char *class, char *head, |
212 | extern void cgit_diff_link(char *name, char *title, char *class, char *head, |
213 | char *new_rev, char *old_rev, char *path); |
213 | char *new_rev, char *old_rev, char *path); |
214 | |
214 | |
| |
215 | extern void cgit_object_link(struct object *obj); |
| |
216 | |
215 | extern void cgit_print_error(char *msg); |
217 | extern void cgit_print_error(char *msg); |
216 | extern void cgit_print_date(time_t secs, char *format); |
218 | extern void cgit_print_date(time_t secs, char *format); |
217 | extern void cgit_print_age(time_t t, time_t max_relative, char *format); |
219 | extern void cgit_print_age(time_t t, time_t max_relative, char *format); |
218 | extern void cgit_print_docstart(char *title, struct cacheitem *item); |
220 | extern void cgit_print_docstart(char *title, struct cacheitem *item); |
219 | extern void cgit_print_docend(); |
221 | extern void cgit_print_docend(); |
220 | extern void cgit_print_pageheader(char *title, int show_search); |
222 | extern void cgit_print_pageheader(char *title, int show_search); |
221 | extern void cgit_print_snapshot_start(const char *mimetype, |
223 | extern void cgit_print_snapshot_start(const char *mimetype, |
222 | const char *filename, |
224 | const char *filename, |
223 | struct cacheitem *item); |
225 | struct cacheitem *item); |
224 | |
226 | |
225 | extern void cgit_print_repolist(struct cacheitem *item); |
227 | extern void cgit_print_repolist(struct cacheitem *item); |
226 | extern void cgit_print_summary(); |
228 | extern void cgit_print_summary(); |
227 | extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager); |
229 | extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path, int pager); |
228 | extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); |
230 | extern void cgit_print_blob(struct cacheitem *item, const char *hex, char *path); |
229 | extern void cgit_print_tree(const char *rev, char *path); |
231 | extern void cgit_print_tree(const char *rev, char *path); |
230 | extern void cgit_print_commit(char *hex); |
232 | extern void cgit_print_commit(char *hex); |
| |
233 | extern void cgit_print_tag(char *revname); |
231 | extern void cgit_print_diff(const char *new_hex, const char *old_hex); |
234 | extern void cgit_print_diff(const char *new_hex, const char *old_hex); |
232 | extern void cgit_print_snapshot(struct cacheitem *item, const char *hex, |
235 | extern void cgit_print_snapshot(struct cacheitem *item, const char *hex, |
233 | const char *format, const char *prefix, |
236 | const char *format, const char *prefix, |
234 | const char *filename); |
237 | const char *filename); |
235 | |
238 | |
236 | #endif /* CGIT_H */ |
239 | #endif /* CGIT_H */ |
|