about summary refs log tree commit diff
path: root/filter.c
diff options
context:
space:
mode:
authorChris Burroughs <chris.burroughs@gmail.com>2014-08-04 09:23:08 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2014-12-23 19:08:20 -0700
commit96ceb9a95a7a321209cff347fefd141a9fffc7ca (patch)
tree5077ac54da1f7992d991746492855665454147c9 /filter.c
parentui-shared: add rel-vcs microformat links to HTML header (diff)
downloadcgit-pink-96ceb9a95a7a321209cff347fefd141a9fffc7ca.tar.gz
cgit-pink-96ceb9a95a7a321209cff347fefd141a9fffc7ca.zip
repolist: add owner-filter
This allows custom links to be used for repository owners by
configuring a filter to be applied in the "Owner" column in the
repository list.
Diffstat (limited to 'filter.c')
-rw-r--r--filter.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/filter.c b/filter.c
index 270f009..9f433db 100644
--- a/filter.c
+++ b/filter.c
@@ -38,12 +38,14 @@ void cgit_cleanup_filters(void)
 	reap_filter(ctx.cfg.commit_filter);
 	reap_filter(ctx.cfg.source_filter);
 	reap_filter(ctx.cfg.email_filter);
+	reap_filter(ctx.cfg.owner_filter);
 	reap_filter(ctx.cfg.auth_filter);
 	for (i = 0; i < cgit_repolist.count; ++i) {
 		reap_filter(cgit_repolist.repos[i].about_filter);
 		reap_filter(cgit_repolist.repos[i].commit_filter);
 		reap_filter(cgit_repolist.repos[i].source_filter);
 		reap_filter(cgit_repolist.repos[i].email_filter);
+		reap_filter(cgit_repolist.repos[i].owner_filter);
 	}
 }
 
@@ -425,6 +427,10 @@ struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype)
 			argument_count = 2;
 			break;
 
+		case OWNER:
+			argument_count = 0;
+			break;
+
 		case SOURCE:
 		case ABOUT:
 			argument_count = 1;