summaryrefslogtreecommitdiffabout
path: root/cgit.h
authorLars Hjemli <hjemli@gmail.com>2006-12-11 15:55:07 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2006-12-11 15:55:33 (UTC)
commit1418034e642fee67c981b31e4c3eb6e8ae14e303 (patch) (unidiff)
tree3addc880197706f2ddd24f35c5d886f1e885b276 /cgit.h
parent74620f12e4f7e91cb0a0b4ca731e07272d1b65f6 (diff)
downloadcgit-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>
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h
index bf5bd8d..3a153a5 100644
--- a/cgit.h
+++ b/cgit.h
@@ -66,17 +66,20 @@ extern int cache_exist(struct cacheitem *item);
66extern int cache_expired(struct cacheitem *item); 66extern int cache_expired(struct cacheitem *item);
67 67
68extern char *cgit_repourl(const char *reponame); 68extern char *cgit_repourl(const char *reponame);
69extern char *cgit_pageurl(const char *reponame, const char *pagename, 69extern char *cgit_pageurl(const char *reponame, const char *pagename,
70 const char *query); 70 const char *query);
71 71
72extern void cgit_print_error(char *msg); 72extern void cgit_print_error(char *msg);
73extern void cgit_print_docstart(char *title, struct cacheitem *item); 73extern void cgit_print_docstart(char *title, struct cacheitem *item);
74extern void cgit_print_docend(); 74extern void cgit_print_docend();
75extern void cgit_print_pageheader(char *title); 75extern void cgit_print_pageheader(char *title);
76 76
77extern void cgit_print_repolist(struct cacheitem *item); 77extern void cgit_print_repolist(struct cacheitem *item);
78 78
79 79
80extern void cgit_repo_config_cb(const char *name, const char *value); 80extern void cgit_repo_config_cb(const char *name, const char *value);
81 81
82extern void cgit_print_repo_summary();
83
84
82#endif /* CGIT_H */ 85#endif /* CGIT_H */