diff options
author | Michael Krelin <hacker@klever.net> | 2007-07-18 14:40:03 +0200 |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-07-18 14:40:03 +0200 |
commit | f97c707a3b975d32910331f72783ec3044e3c0ee (patch) | |
tree | 632239a8a644036bd08fbb6f202278de068097b5 /cgit.h | |
parent | 71ebcbe23ab548e5c0ad40aa8be5741654ed3201 (diff) | |
download | cgit-f97c707a3b975d32910331f72783ec3044e3c0ee.tar.gz cgit-f97c707a3b975d32910331f72783ec3044e3c0ee.tar.bz2 cgit-f97c707a3b975d32910331f72783ec3044e3c0ee.zip |
add support for snapshot tarballs
- reworked cgit_print_snapshot to use a list of supported archivers and pick
one for the suffix supplied
- moved printing of snaphot links into ui-snapshot and make it iterate through
the said list
Diffstat (limited to '')
-rw-r--r-- | cgit.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -230,7 +230,7 @@ extern void cgit_print_tree(const char *rev, char *path); extern void cgit_print_commit(char *hex); extern void cgit_print_diff(const char *new_hex, const char *old_hex); extern void cgit_print_snapshot(struct cacheitem *item, const char *hex, - const char *format, const char *prefix, - const char *filename); + const char *prefix, const char *filename); +extern void cgit_print_snapshot_links(const char *repo, const char *hex); #endif /* CGIT_H */ |