summaryrefslogtreecommitdiffabout
path: root/cgit.h
Unidiff
Diffstat (limited to 'cgit.h') (more/less context) (show whitespace changes)
-rw-r--r--cgit.h36
1 files changed, 33 insertions, 3 deletions
diff --git a/cgit.h b/cgit.h
index 6c6c460..b5f00fc 100644
--- a/cgit.h
+++ b/cgit.h
@@ -21,2 +21,4 @@
21#include <utf8.h> 21#include <utf8.h>
22#include <notes.h>
23#include <graph.h>
22 24
@@ -71,5 +73,10 @@ struct cgit_repo {
71 char *clone_url; 73 char *clone_url;
74 char *logo;
75 char *logo_link;
72 int snapshots; 76 int snapshots;
77 int enable_commit_graph;
73 int enable_log_filecount; 78 int enable_log_filecount;
74 int enable_log_linecount; 79 int enable_log_linecount;
80 int enable_remote_branches;
81 int enable_subject_links;
75 int max_stats; 82 int max_stats;
@@ -145,2 +152,7 @@ struct cgit_query {
145 int showmsg; 152 int showmsg;
153 int ssdiff;
154 int show_all;
155 int context;
156 int ignorews;
157 char *vpath;
146}; 158};
@@ -161,2 +173,4 @@ struct cgit_config {
161 char *module_link; 173 char *module_link;
174 char *project_list;
175 char *readme;
162 char *robots; 176 char *robots;
@@ -168,2 +182,3 @@ struct cgit_config {
168 char *virtual_root; 182 char *virtual_root;
183 char *strict_export;
169 int cache_size; 184 int cache_size;
@@ -177,7 +192,12 @@ struct cgit_config {
177 int enable_filter_overrides; 192 int enable_filter_overrides;
193 int enable_gitweb_owner;
178 int enable_index_links; 194 int enable_index_links;
195 int enable_commit_graph;
179 int enable_log_filecount; 196 int enable_log_filecount;
180 int enable_log_linecount; 197 int enable_log_linecount;
198 int enable_remote_branches;
199 int enable_subject_links;
181 int enable_tree_linenumbers; 200 int enable_tree_linenumbers;
182 int local_time; 201 int local_time;
202 int max_atom_items;
183 int max_repo_count; 203 int max_repo_count;
@@ -187,2 +207,3 @@ struct cgit_config {
187 int max_repodesc_len; 207 int max_repodesc_len;
208 int max_blob_size;
188 int max_stats; 209 int max_stats;
@@ -192,2 +213,5 @@ struct cgit_config {
192 int renamelimit; 213 int renamelimit;
214 int remove_suffix;
215 int scan_hidden_path;
216 int section_from_path;
193 int snapshots; 217 int snapshots;
@@ -196,2 +220,3 @@ struct cgit_config {
196 int summary_tags; 220 int summary_tags;
221 int ssdiff;
197 struct string_list mimetypes; 222 struct string_list mimetypes;
@@ -270,3 +295,4 @@ extern int cgit_diff_files(const unsigned char *old_sha1,
270 unsigned long *old_size, unsigned long *new_size, 295 unsigned long *old_size, unsigned long *new_size,
271 int *binary, linediff_fn fn); 296 int *binary, int context, int ignorews,
297 linediff_fn fn);
272 298
@@ -274,6 +300,8 @@ extern void cgit_diff_tree(const unsigned char *old_sha1,
274 const unsigned char *new_sha1, 300 const unsigned char *new_sha1,
275 filepair_fn fn, const char *prefix); 301 filepair_fn fn, const char *prefix, int ignorews);
276 302
277extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); 303extern void cgit_diff_commit(struct commit *commit, filepair_fn fn,
304 const char *prefix);
278 305
306__attribute__((format (printf,1,2)))
279extern char *fmt(const char *format,...); 307extern char *fmt(const char *format,...);
@@ -293,2 +321,4 @@ extern int readfile(const char *path, char **buf, size_t *size);
293 321
322extern char *expand_macros(const char *txt);
323
294#endif /* CGIT_H */ 324#endif /* CGIT_H */