author | Lars Hjemli <hjemli@gmail.com> | 2006-12-11 15:55:07 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-11 15:55:33 (UTC) |
commit | 1418034e642fee67c981b31e4c3eb6e8ae14e303 (patch) (unidiff) | |
tree | 3addc880197706f2ddd24f35c5d886f1e885b276 /cgit.h | |
parent | 74620f12e4f7e91cb0a0b4ca731e07272d1b65f6 (diff) | |
download | cgit-1418034e642fee67c981b31e4c3eb6e8ae14e303.zip cgit-1418034e642fee67c981b31e4c3eb6e8ae14e303.tar.gz cgit-1418034e642fee67c981b31e4c3eb6e8ae14e303.tar.bz2 |
Move repo summary functions into ui-summary.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -66,17 +66,20 @@ extern int cache_exist(struct cacheitem *item); | |||
66 | extern int cache_expired(struct cacheitem *item); | 66 | extern int cache_expired(struct cacheitem *item); |
67 | 67 | ||
68 | extern char *cgit_repourl(const char *reponame); | 68 | extern char *cgit_repourl(const char *reponame); |
69 | extern char *cgit_pageurl(const char *reponame, const char *pagename, | 69 | extern char *cgit_pageurl(const char *reponame, const char *pagename, |
70 | const char *query); | 70 | const char *query); |
71 | 71 | ||
72 | extern void cgit_print_error(char *msg); | 72 | extern void cgit_print_error(char *msg); |
73 | extern void cgit_print_docstart(char *title, struct cacheitem *item); | 73 | extern void cgit_print_docstart(char *title, struct cacheitem *item); |
74 | extern void cgit_print_docend(); | 74 | extern void cgit_print_docend(); |
75 | extern void cgit_print_pageheader(char *title); | 75 | extern void cgit_print_pageheader(char *title); |
76 | 76 | ||
77 | extern void cgit_print_repolist(struct cacheitem *item); | 77 | extern void cgit_print_repolist(struct cacheitem *item); |
78 | 78 | ||
79 | 79 | ||
80 | extern void cgit_repo_config_cb(const char *name, const char *value); | 80 | extern void cgit_repo_config_cb(const char *name, const char *value); |
81 | 81 | ||
82 | extern void cgit_print_repo_summary(); | ||
83 | |||
84 | |||
82 | #endif /* CGIT_H */ | 85 | #endif /* CGIT_H */ |