|
diff --git a/cgit.h b/cgit.h index 1bdfbc6..e9e2718 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 | int ignorews; |
151 | int ignorews; |
150 | char *vpath; |
152 | char *vpath; |
@@ -184,8 +186,10 @@ struct cgit_config { |
184 | int enable_log_filecount; |
186 | int enable_log_filecount; |
185 | int enable_log_linecount; |
187 | int enable_log_linecount; |
186 | int enable_remote_branches; |
188 | int enable_remote_branches; |
| |
189 | int enable_subject_links; |
187 | int enable_tree_linenumbers; |
190 | int enable_tree_linenumbers; |
188 | int local_time; |
191 | int local_time; |
| |
192 | int max_atom_items; |
189 | int max_repo_count; |
193 | int max_repo_count; |
190 | int max_commit_count; |
194 | int max_commit_count; |
191 | int max_lock_attempts; |
195 | int max_lock_attempts; |
@@ -300,4 +304,6 @@ extern int cgit_close_filter(struct cgit_filter *filter); |
300 | |
304 | |
301 | extern int readfile(const char *path, char **buf, size_t *size); |
305 | extern int readfile(const char *path, char **buf, size_t *size); |
302 | |
306 | |
| |
307 | extern char *expand_macros(const char *txt); |
| |
308 | |
303 | #endif /* CGIT_H */ |
309 | #endif /* CGIT_H */ |
|