-rw-r--r-- | cgit.c | 1 | ||||
-rw-r--r-- | cgit.h | 32 | ||||
-rw-r--r-- | ui-blob.c | 1 | ||||
-rw-r--r-- | ui-commit.c | 1 | ||||
-rw-r--r-- | ui-diff.c | 1 | ||||
-rw-r--r-- | ui-log.c | 1 | ||||
-rw-r--r-- | ui-patch.c | 1 | ||||
-rw-r--r-- | ui-refs.c | 1 | ||||
-rw-r--r-- | ui-repolist.c | 1 | ||||
-rw-r--r-- | ui-shared.h | 36 | ||||
-rw-r--r-- | ui-snapshot.c | 1 | ||||
-rw-r--r-- | ui-tag.c | 1 | ||||
-rw-r--r-- | ui-tree.c | 1 |
13 files changed, 47 insertions, 32 deletions
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "cmd.h" | 10 | #include "cmd.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | static int cgit_prepare_cache(struct cacheitem *item) | 13 | static int cgit_prepare_cache(struct cacheitem *item) |
13 | { | 14 | { |
14 | if (!ctx.repo && ctx.qry.repo) { | 15 | if (!ctx.repo && ctx.qry.repo) { |
@@ -236,41 +236,9 @@ extern int cache_unlock(struct cacheitem *item); | |||
236 | extern int cache_cancel_lock(struct cacheitem *item); | 236 | extern int cache_cancel_lock(struct cacheitem *item); |
237 | extern int cache_exist(struct cacheitem *item); | 237 | extern int cache_exist(struct cacheitem *item); |
238 | extern int cache_expired(struct cacheitem *item); | 238 | extern int cache_expired(struct cacheitem *item); |
239 | 239 | ||
240 | extern char *cgit_repourl(const char *reponame); | ||
241 | extern char *cgit_fileurl(const char *reponame, const char *pagename, | ||
242 | const char *filename, const char *query); | ||
243 | extern char *cgit_pageurl(const char *reponame, const char *pagename, | ||
244 | const char *query); | ||
245 | |||
246 | extern const char *cgit_repobasename(const char *reponame); | 240 | extern const char *cgit_repobasename(const char *reponame); |
247 | 241 | ||
248 | extern void cgit_tree_link(char *name, char *title, char *class, char *head, | ||
249 | char *rev, char *path); | ||
250 | extern void cgit_log_link(char *name, char *title, char *class, char *head, | ||
251 | char *rev, char *path, int ofs, char *grep, | ||
252 | char *pattern); | ||
253 | extern void cgit_commit_link(char *name, char *title, char *class, char *head, | ||
254 | char *rev); | ||
255 | extern void cgit_refs_link(char *name, char *title, char *class, char *head, | ||
256 | char *rev, char *path); | ||
257 | extern void cgit_snapshot_link(char *name, char *title, char *class, | ||
258 | char *head, char *rev, char *archivename); | ||
259 | extern void cgit_diff_link(char *name, char *title, char *class, char *head, | ||
260 | char *new_rev, char *old_rev, char *path); | ||
261 | |||
262 | extern void cgit_object_link(struct object *obj); | ||
263 | |||
264 | extern void cgit_print_error(char *msg); | ||
265 | extern void cgit_print_date(time_t secs, char *format); | ||
266 | extern void cgit_print_age(time_t t, time_t max_relative, char *format); | ||
267 | extern void cgit_print_http_headers(struct cgit_context *ctx); | ||
268 | extern void cgit_print_docstart(struct cgit_context *ctx); | ||
269 | extern void cgit_print_docend(); | ||
270 | extern void cgit_print_pageheader(struct cgit_context *ctx); | ||
271 | extern void cgit_print_filemode(unsigned short mode); | ||
272 | extern void cgit_print_snapshot_links(const char *repo, const char *head, | ||
273 | const char *hex, int snapshots); | ||
274 | extern int cgit_parse_snapshots_mask(const char *str); | 242 | extern int cgit_parse_snapshots_mask(const char *str); |
275 | 243 | ||
276 | #endif /* CGIT_H */ | 244 | #endif /* CGIT_H */ |
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | void cgit_print_blob(const char *hex, char *path) | 13 | void cgit_print_blob(const char *hex, char *path) |
13 | { | 14 | { |
14 | 15 | ||
diff --git a/ui-commit.c b/ui-commit.c index ed25824..8019e36 100644 --- a/ui-commit.c +++ b/ui-commit.c | |||
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | static int files, slots; | 13 | static int files, slots; |
13 | static int total_adds, total_rems, max_changes; | 14 | static int total_adds, total_rems, max_changes; |
14 | static int lines_added, lines_removed; | 15 | static int lines_added, lines_removed; |
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | unsigned char old_rev_sha1[20]; | 13 | unsigned char old_rev_sha1[20]; |
13 | unsigned char new_rev_sha1[20]; | 14 | unsigned char new_rev_sha1[20]; |
14 | 15 | ||
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | int files, add_lines, rem_lines; | 13 | int files, add_lines, rem_lines; |
13 | 14 | ||
14 | void count_lines(char *line, int size) | 15 | void count_lines(char *line, int size) |
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | static void print_line(char *line, int len) | 13 | static void print_line(char *line, int len) |
13 | { | 14 | { |
14 | char c = line[len-1]; | 15 | char c = line[len-1]; |
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | static int header; | 13 | static int header; |
13 | 14 | ||
14 | static int cmp_age(int age1, int age2) | 15 | static int cmp_age(int age1, int age2) |
diff --git a/ui-repolist.c b/ui-repolist.c index ad9b1bc..eeeaf3d 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
@@ -9,8 +9,9 @@ | |||
9 | #include <time.h> | 9 | #include <time.h> |
10 | 10 | ||
11 | #include "cgit.h" | 11 | #include "cgit.h" |
12 | #include "html.h" | 12 | #include "html.h" |
13 | #include "ui-shared.h" | ||
13 | 14 | ||
14 | time_t read_agefile(char *path) | 15 | time_t read_agefile(char *path) |
15 | { | 16 | { |
16 | FILE *f; | 17 | FILE *f; |
diff --git a/ui-shared.h b/ui-shared.h new file mode 100644 index 0000000..94de884 --- a/dev/null +++ b/ui-shared.h | |||
@@ -0,0 +1,36 @@ | |||
1 | #ifndef UI_SHARED_H | ||
2 | #define UI_SHARED_H | ||
3 | |||
4 | extern char *cgit_repourl(const char *reponame); | ||
5 | extern char *cgit_fileurl(const char *reponame, const char *pagename, | ||
6 | const char *filename, const char *query); | ||
7 | extern char *cgit_pageurl(const char *reponame, const char *pagename, | ||
8 | const char *query); | ||
9 | |||
10 | extern void cgit_tree_link(char *name, char *title, char *class, char *head, | ||
11 | char *rev, char *path); | ||
12 | extern void cgit_log_link(char *name, char *title, char *class, char *head, | ||
13 | char *rev, char *path, int ofs, char *grep, | ||
14 | char *pattern); | ||
15 | extern void cgit_commit_link(char *name, char *title, char *class, char *head, | ||
16 | char *rev); | ||
17 | extern void cgit_refs_link(char *name, char *title, char *class, char *head, | ||
18 | char *rev, char *path); | ||
19 | extern void cgit_snapshot_link(char *name, char *title, char *class, | ||
20 | char *head, char *rev, char *archivename); | ||
21 | extern void cgit_diff_link(char *name, char *title, char *class, char *head, | ||
22 | char *new_rev, char *old_rev, char *path); | ||
23 | extern void cgit_object_link(struct object *obj); | ||
24 | |||
25 | extern void cgit_print_error(char *msg); | ||
26 | extern void cgit_print_date(time_t secs, char *format); | ||
27 | extern void cgit_print_age(time_t t, time_t max_relative, char *format); | ||
28 | extern void cgit_print_http_headers(struct cgit_context *ctx); | ||
29 | extern void cgit_print_docstart(struct cgit_context *ctx); | ||
30 | extern void cgit_print_docend(); | ||
31 | extern void cgit_print_pageheader(struct cgit_context *ctx); | ||
32 | extern void cgit_print_filemode(unsigned short mode); | ||
33 | extern void cgit_print_snapshot_links(const char *repo, const char *head, | ||
34 | const char *hex, int snapshots); | ||
35 | |||
36 | #endif /* UI_SHARED_H */ | ||
diff --git a/ui-snapshot.c b/ui-snapshot.c index 512fcd2..966a140 100644 --- a/ui-snapshot.c +++ b/ui-snapshot.c | |||
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | static int write_compressed_tar_archive(struct archiver_args *args,const char *filter) | 13 | static int write_compressed_tar_archive(struct archiver_args *args,const char *filter) |
13 | { | 14 | { |
14 | int rw[2]; | 15 | int rw[2]; |
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | static void print_tag_content(char *buf) | 13 | static void print_tag_content(char *buf) |
13 | { | 14 | { |
14 | char *p; | 15 | char *p; |
@@ -7,8 +7,9 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "cgit.h" | 9 | #include "cgit.h" |
10 | #include "html.h" | 10 | #include "html.h" |
11 | #include "ui-shared.h" | ||
11 | 12 | ||
12 | char *curr_rev; | 13 | char *curr_rev; |
13 | char *match_path; | 14 | char *match_path; |
14 | int header = 0; | 15 | int header = 0; |