diff options
author | Lars Hjemli | 2006-12-11 16:38:30 +0100 |
---|---|---|
committer | Lars Hjemli | 2006-12-11 16:38:30 +0100 |
commit | 5a106eb09b9b5e189b96cc736046a92b054f6c7f (patch) | |
tree | 7172123df870c07deb882a4993fa991b31fc9008 /cgit.h | |
parent | 51ada4fda2b47710351e6e4da8a95807d6d9f729 (diff) | |
download | cgit-5a106eb09b9b5e189b96cc736046a92b054f6c7f.tar.gz cgit-5a106eb09b9b5e189b96cc736046a92b054f6c7f.tar.bz2 cgit-5a106eb09b9b5e189b96cc736046a92b054f6c7f.zip |
Move common output-functions into ui-shared.c
While at it, replace the cgit_[lib_]error constants with a proper function
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -15,6 +15,8 @@ struct cacheitem { | |||
15 | int fd; | 15 | int fd; |
16 | }; | 16 | }; |
17 | 17 | ||
18 | extern const char cgit_version[]; | ||
19 | |||
18 | extern char *cgit_root; | 20 | extern char *cgit_root; |
19 | extern char *cgit_root_title; | 21 | extern char *cgit_root_title; |
20 | extern char *cgit_css; | 22 | extern char *cgit_css; |
@@ -54,7 +56,6 @@ extern void html_attr(char *txt); | |||
54 | extern void html_link_open(char *url, char *title, char *class); | 56 | extern void html_link_open(char *url, char *title, char *class); |
55 | extern void html_link_close(void); | 57 | extern void html_link_close(void); |
56 | 58 | ||
57 | |||
58 | extern int cgit_read_config(const char *filename, configfn fn); | 59 | extern int cgit_read_config(const char *filename, configfn fn); |
59 | extern int cgit_parse_query(char *txt, configfn fn); | 60 | extern int cgit_parse_query(char *txt, configfn fn); |
60 | 61 | ||
@@ -64,4 +65,10 @@ extern int cache_unlock(struct cacheitem *item); | |||
64 | extern int cache_exist(struct cacheitem *item); | 65 | extern int cache_exist(struct cacheitem *item); |
65 | extern int cache_expired(struct cacheitem *item); | 66 | extern int cache_expired(struct cacheitem *item); |
66 | 67 | ||
68 | extern void cgit_print_error(char *msg); | ||
69 | extern void cgit_print_docstart(char *title, struct cacheitem *item); | ||
70 | extern void cgit_print_docend(); | ||
71 | extern void cgit_print_pageheader(char *title); | ||
72 | |||
73 | |||
67 | #endif /* CGIT_H */ | 74 | #endif /* CGIT_H */ |