aboutsummaryrefslogtreecommitdiff
path: root/cgit.h
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/cgit.h b/cgit.h
index f10ba05..438301d 100644
--- a/cgit.h
+++ b/cgit.h
@@ -48,15 +48,6 @@ typedef void (*configfn)(const char *name, const char *value);
typedef void (*filepair_fn)(struct diff_filepair *pair);
typedef void (*linediff_fn)(char *line, int len);
-struct cgit_filter {
- char *cmd;
- char **argv;
- int old_stdout;
- int pipe_fh[2];
- int pid;
- int exitstatus;
-};
-
struct cgit_repo {
char *url;
char *name;
@@ -73,8 +64,6 @@ struct cgit_repo {
int enable_log_linecount;
int max_stats;
time_t mtime;
- struct cgit_filter *commit_filter;
- struct cgit_filter *source_filter;
};
struct cgit_repolist {
@@ -140,6 +129,15 @@ struct cgit_query {
int showmsg;
};
+struct cgit_filter {
+ char *cmd;
+ char **argv;
+ int old_stdout;
+ int pipe_fh[2];
+ int pid;
+ int exitstatus;
+};
+
struct cgit_config {
char *agefile;
char *cache_root;