Unidiff1 files changed, 2 insertions, 0 deletions
|
diff --git a/cgit.h b/cgit.h index f5f68ac..8a9d5fa 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -57,32 +57,34 @@ struct cgit_filter { |
57 | int pipe_fh[2]; |
57 | int pipe_fh[2]; |
58 | int pid; |
58 | int pid; |
59 | int exitstatus; |
59 | int exitstatus; |
60 | }; |
60 | }; |
61 | |
61 | |
62 | struct cgit_repo { |
62 | struct cgit_repo { |
63 | char *url; |
63 | char *url; |
64 | char *name; |
64 | char *name; |
65 | char *path; |
65 | char *path; |
66 | char *desc; |
66 | char *desc; |
67 | char *owner; |
67 | char *owner; |
68 | char *defbranch; |
68 | char *defbranch; |
69 | char *module_link; |
69 | char *module_link; |
70 | char *readme; |
70 | char *readme; |
71 | char *section; |
71 | char *section; |
72 | char *clone_url; |
72 | char *clone_url; |
| |
73 | char *logo; |
| |
74 | char *logo_link; |
73 | int snapshots; |
75 | int snapshots; |
74 | int enable_log_filecount; |
76 | int enable_log_filecount; |
75 | int enable_log_linecount; |
77 | int enable_log_linecount; |
76 | int enable_remote_branches; |
78 | int enable_remote_branches; |
77 | int enable_subject_links; |
79 | int enable_subject_links; |
78 | int max_stats; |
80 | int max_stats; |
79 | time_t mtime; |
81 | time_t mtime; |
80 | struct cgit_filter *about_filter; |
82 | struct cgit_filter *about_filter; |
81 | struct cgit_filter *commit_filter; |
83 | struct cgit_filter *commit_filter; |
82 | struct cgit_filter *source_filter; |
84 | struct cgit_filter *source_filter; |
83 | }; |
85 | }; |
84 | |
86 | |
85 | typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, |
87 | typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, |
86 | const char *value); |
88 | const char *value); |
87 | |
89 | |
88 | struct cgit_repolist { |
90 | struct cgit_repolist { |
|