cgit

commit 86ca02231fc42a629c50abebcae3ea9d4d692979

Author: Michael Krelin <hacker@klever.net>

add plain uncompressed tar snapshort format

time to make available snapshots selectable

Signed-off-by: Michael Krelin <hacker@klever.net>

 ui-snapshot.c | 3 ++-


diff --git a/ui-snapshot.c b/ui-snapshot.c
index f623f3590efa28eaff13fa10bb09cc025492f11d..84bf8f7c1a9f9c87a8c84668ee33a5c685842128 100644
--- a/ui-snapshot.c
+++ b/ui-snapshot.c
@@ -60,7 +60,8 @@ 	write_archive_fn_t write_func;
 }	snapshot_archives[] = {
 	{ ".zip", "application/x-zip", write_zip_archive },
 	{ ".tar.gz", "application/x-tar", write_tar_gzip_archive },
-	{ ".tar.bz2", "application/x-tar", write_tar_bzip2_archive }
+	{ ".tar.bz2", "application/x-tar", write_tar_bzip2_archive },
+	{ ".tar", "application/x-tar", write_tar_archive }
 };
 
 void cgit_print_snapshot(struct cacheitem *item, const char *hex,