struct commitinfo {
struct commit *commit;
char *author;
+ char *author_email;
+ unsigned long author_date;
char *committer;
+ char *committer_email;
+ unsigned long committer_date;
char *subject;
char *msg;
};
extern char *cgit_virtual_root;
extern char *cgit_cache_root;
+extern int cgit_nocache;
extern int cgit_max_lock_attempts;
extern int cgit_cache_root_ttl;
extern int cgit_cache_repo_ttl;
const char *query);
extern void cgit_print_error(char *msg);
+extern void cgit_print_date(unsigned long secs);
extern void cgit_print_docstart(char *title, struct cacheitem *item);
extern void cgit_print_docend();
extern void cgit_print_pageheader(char *title);