Unidiff1 files changed, 4 insertions, 0 deletions
|
diff --git a/cgit.h b/cgit.h index bb8f598..2b28d63 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -73,6 +73,7 @@ struct cgit_repo { |
73 | int enable_log_filecount; |
73 | int enable_log_filecount; |
74 | int enable_log_linecount; |
74 | int enable_log_linecount; |
75 | int enable_remote_branches; |
75 | int enable_remote_branches; |
| |
76 | int enable_subject_links; |
76 | int max_stats; |
77 | int max_stats; |
77 | time_t mtime; |
78 | time_t mtime; |
78 | struct cgit_filter *about_filter; |
79 | struct cgit_filter *about_filter; |
@@ -145,6 +146,7 @@ struct cgit_query { |
145 | char *sort; |
146 | char *sort; |
146 | int showmsg; |
147 | int showmsg; |
147 | int ssdiff; |
148 | int ssdiff; |
| |
149 | int show_all; |
148 | int context; |
150 | int context; |
149 | char *vpath; |
151 | char *vpath; |
150 | }; |
152 | }; |
@@ -183,8 +185,10 @@ struct cgit_config { |
183 | int enable_log_filecount; |
185 | int enable_log_filecount; |
184 | int enable_log_linecount; |
186 | int enable_log_linecount; |
185 | int enable_remote_branches; |
187 | int enable_remote_branches; |
| |
188 | int enable_subject_links; |
186 | int enable_tree_linenumbers; |
189 | int enable_tree_linenumbers; |
187 | int local_time; |
190 | int local_time; |
| |
191 | int max_atom_items; |
188 | int max_repo_count; |
192 | int max_repo_count; |
189 | int max_commit_count; |
193 | int max_commit_count; |
190 | int max_lock_attempts; |
194 | int max_lock_attempts; |
|