about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--cgit.c6
-rw-r--r--cgit.h1
-rw-r--r--filter.c5
3 files changed, 9 insertions, 3 deletions
diff --git a/cgit.c b/cgit.c index 0be41b8..29b658e 100644 --- a/cgit.c +++ b/cgit.c
@@ -706,11 +706,11 @@ static void print_repo(FILE *f, struct cgit_repo *repo)
706 fprintf(f, "repo.enable-log-linecount=%d\n", 706 fprintf(f, "repo.enable-log-linecount=%d\n",
707 repo->enable_log_linecount); 707 repo->enable_log_linecount);
708 if (repo->about_filter && repo->about_filter != ctx.cfg.about_filter) 708 if (repo->about_filter && repo->about_filter != ctx.cfg.about_filter)
709 fprintf(f, "repo.about-filter=%s\n", repo->about_filter->cmd); 709 cgit_fprintf_filter(repo->about_filter, f, "repo.about-filter=");
710 if (repo->commit_filter && repo->commit_filter != ctx.cfg.commit_filter) 710 if (repo->commit_filter && repo->commit_filter != ctx.cfg.commit_filter)
711 fprintf(f, "repo.commit-filter=%s\n", repo->commit_filter->cmd); 711 cgit_fprintf_filter(repo->commit_filter, f, "repo.commit-filter=");
712 if (repo->source_filter && repo->source_filter != ctx.cfg.source_filter) 712 if (repo->source_filter && repo->source_filter != ctx.cfg.source_filter)
713 fprintf(f, "repo.source-filter=%s\n", repo->source_filter->cmd); 713 cgit_fprintf_filter(repo->source_filter, f, "repo.source-filter=");
714 if (repo->snapshots != ctx.cfg.snapshots) { 714 if (repo->snapshots != ctx.cfg.snapshots) {
715 char *tmp = build_snapshot_setting(repo->snapshots); 715 char *tmp = build_snapshot_setting(repo->snapshots);
716 fprintf(f, "repo.snapshots=%s\n", tmp ? tmp : ""); 716 fprintf(f, "repo.snapshots=%s\n", tmp ? tmp : "");
diff --git a/cgit.h b/cgit.h index e6e7715..9b4be26 100644 --- a/cgit.h +++ b/cgit.h
@@ -345,6 +345,7 @@ extern int cgit_parse_snapshots_mask(const char *str);
345 345
346extern int cgit_open_filter(struct cgit_filter *filter, ...); 346extern int cgit_open_filter(struct cgit_filter *filter, ...);
347extern int cgit_close_filter(struct cgit_filter *filter); 347extern int cgit_close_filter(struct cgit_filter *filter);
348extern void cgit_fprintf_filter(struct cgit_filter *filter, FILE *f, const char *prefix);
348extern struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype); 349extern struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype);
349 350
350extern void cgit_prepare_repo_env(struct cgit_repo * repo); 351extern void cgit_prepare_repo_env(struct cgit_repo * repo);
diff --git a/filter.c b/filter.c index d8c0116..80cf689 100644 --- a/filter.c +++ b/filter.c
@@ -63,6 +63,11 @@ done:
63 63
64} 64}
65 65
66void cgit_fprintf_filter(struct cgit_filter *filter, FILE *f, const char *prefix)
67{
68 fprintf(f, "%s%s\n", prefix, filter->cmd);
69}
70
66struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype) 71struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype)
67{ 72{
68 struct cgit_filter *f; 73 struct cgit_filter *f;