diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2006-12-15 18:17:36 +0100 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-15 18:17:36 +0100 | 
| commit | 2101e26fd68f816e77de62b93df4c32fd1110d0c (patch) | |
| tree | d70d28734c4fbfd0a4e4a40bcfd445eb50dc1666 /cgit.h | |
| parent | Add simple pager to log page (diff) | |
| download | cgit-2101e26fd68f816e77de62b93df4c32fd1110d0c.tar.gz cgit-2101e26fd68f816e77de62b93df4c32fd1110d0c.tar.bz2 cgit-2101e26fd68f816e77de62b93df4c32fd1110d0c.zip | |
Add a common commit parser
Make a better commit parser, replacing the ugly one in ui-log.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
| -rw-r--r-- | cgit.h | 9 | 
1 files changed, 9 insertions, 0 deletions
| @@ -15,6 +15,14 @@ struct cacheitem {  	int fd;  }; +struct commitinfo { +	struct commit *commit; +	char *author; +	char *committer; +	char *subject; +	char *msg; +}; +  extern const char cgit_version[];  extern char *cgit_root; @@ -63,6 +71,7 @@ extern void html_link_close(void);  extern int cgit_read_config(const char *filename, configfn fn);  extern int cgit_parse_query(char *txt, configfn fn); +extern struct commitinfo *cgit_parse_commit(struct commit *commit);  extern void cache_prepare(struct cacheitem *item);  extern int cache_lock(struct cacheitem *item); | 
