summaryrefslogtreecommitdiffabout
path: root/cgit.h
authorLars Hjemli <hjemli@gmail.com>2007-01-11 23:00:15 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-01-11 23:00:15 (UTC)
commit83a5f35a2724ee60bfd8c5679b98da7008272254 (patch) (unidiff)
treeb530ed30437c963e4e73db433d8a4e9dd9f7e7d6 /cgit.h
parentf98e72684bddb5f746f1d4edf663c70076105c9d (diff)
downloadcgit-83a5f35a2724ee60bfd8c5679b98da7008272254.zip
cgit-83a5f35a2724ee60bfd8c5679b98da7008272254.tar.gz
cgit-83a5f35a2724ee60bfd8c5679b98da7008272254.tar.bz2
Move cache_prepare() to cgit
This moves some cgit-specific stuff away from cache.c Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/cgit.h b/cgit.h
index eb8f08c..f915c86 100644
--- a/cgit.h
+++ b/cgit.h
@@ -74,33 +74,32 @@ extern void *cgit_free_commitinfo(struct commitinfo *info);
74extern char *fmt(const char *format,...); 74extern char *fmt(const char *format,...);
75 75
76extern void html(const char *txt); 76extern void html(const char *txt);
77extern void htmlf(const char *format,...); 77extern void htmlf(const char *format,...);
78extern void html_txt(char *txt); 78extern void html_txt(char *txt);
79extern void html_ntxt(int len, char *txt); 79extern void html_ntxt(int len, char *txt);
80extern void html_attr(char *txt); 80extern void html_attr(char *txt);
81extern void html_hidden(char *name, char *value); 81extern void html_hidden(char *name, char *value);
82extern void html_link_open(char *url, char *title, char *class); 82extern void html_link_open(char *url, char *title, char *class);
83extern void html_link_close(void); 83extern void html_link_close(void);
84extern void html_filemode(unsigned short mode); 84extern void html_filemode(unsigned short mode);
85 85
86extern int cgit_read_config(const char *filename, configfn fn); 86extern int cgit_read_config(const char *filename, configfn fn);
87extern int cgit_parse_query(char *txt, configfn fn); 87extern int cgit_parse_query(char *txt, configfn fn);
88extern struct commitinfo *cgit_parse_commit(struct commit *commit); 88extern struct commitinfo *cgit_parse_commit(struct commit *commit);
89 89
90extern void cache_prepare(struct cacheitem *item);
91extern int cache_lock(struct cacheitem *item); 90extern int cache_lock(struct cacheitem *item);
92extern int cache_unlock(struct cacheitem *item); 91extern int cache_unlock(struct cacheitem *item);
93extern int cache_cancel_lock(struct cacheitem *item); 92extern int cache_cancel_lock(struct cacheitem *item);
94extern int cache_exist(struct cacheitem *item); 93extern int cache_exist(struct cacheitem *item);
95extern int cache_expired(struct cacheitem *item); 94extern int cache_expired(struct cacheitem *item);
96 95
97extern char *cgit_repourl(const char *reponame); 96extern char *cgit_repourl(const char *reponame);
98extern char *cgit_pageurl(const char *reponame, const char *pagename, 97extern char *cgit_pageurl(const char *reponame, const char *pagename,
99 const char *query); 98 const char *query);
100 99
101extern void cgit_print_error(char *msg); 100extern void cgit_print_error(char *msg);
102extern void cgit_print_date(unsigned long secs); 101extern void cgit_print_date(unsigned long secs);
103extern void cgit_print_docstart(char *title, struct cacheitem *item); 102extern void cgit_print_docstart(char *title, struct cacheitem *item);
104extern void cgit_print_docend(); 103extern void cgit_print_docend();
105extern void cgit_print_pageheader(char *title, int show_search); 104extern void cgit_print_pageheader(char *title, int show_search);
106 105