summaryrefslogtreecommitdiffabout
path: root/cgit.h
Unidiff
Diffstat (limited to 'cgit.h') (more/less context) (ignore 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
@@ -19,6 +19,8 @@
19#include <xdiff-interface.h> 19#include <xdiff-interface.h>
20#include <xdiff/xdiff.h> 20#include <xdiff/xdiff.h>
21#include <utf8.h> 21#include <utf8.h>
22#include <notes.h>
23#include <graph.h>
22 24
23 25
24/* 26/*
@@ -69,9 +71,14 @@ struct cgit_repo {
69 char *readme; 71 char *readme;
70 char *section; 72 char *section;
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;
76 time_t mtime; 83 time_t mtime;
77 struct cgit_filter *about_filter; 84 struct cgit_filter *about_filter;
@@ -143,6 +150,11 @@ struct cgit_query {
143 int nohead; 150 int nohead;
144 char *sort; 151 char *sort;
145 int showmsg; 152 int showmsg;
153 int ssdiff;
154 int show_all;
155 int context;
156 int ignorews;
157 char *vpath;
146}; 158};
147 159
148struct cgit_config { 160struct cgit_config {
@@ -159,6 +171,8 @@ struct cgit_config {
159 char *logo; 171 char *logo;
160 char *logo_link; 172 char *logo_link;
161 char *module_link; 173 char *module_link;
174 char *project_list;
175 char *readme;
162 char *robots; 176 char *robots;
163 char *root_title; 177 char *root_title;
164 char *root_desc; 178 char *root_desc;
@@ -166,6 +180,7 @@ struct cgit_config {
166 char *script_name; 180 char *script_name;
167 char *section; 181 char *section;
168 char *virtual_root; 182 char *virtual_root;
183 char *strict_export;
169 int cache_size; 184 int cache_size;
170 int cache_dynamic_ttl; 185 int cache_dynamic_ttl;
171 int cache_max_create_time; 186 int cache_max_create_time;
@@ -175,25 +190,35 @@ struct cgit_config {
175 int cache_static_ttl; 190 int cache_static_ttl;
176 int embedded; 191 int embedded;
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;
184 int max_commit_count; 204 int max_commit_count;
185 int max_lock_attempts; 205 int max_lock_attempts;
186 int max_msg_len; 206 int max_msg_len;
187 int max_repodesc_len; 207 int max_repodesc_len;
208 int max_blob_size;
188 int max_stats; 209 int max_stats;
189 int nocache; 210 int nocache;
190 int noplainemail; 211 int noplainemail;
191 int noheader; 212 int noheader;
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;
194 int summary_branches; 218 int summary_branches;
195 int summary_log; 219 int summary_log;
196 int summary_tags; 220 int summary_tags;
221 int ssdiff;
197 struct string_list mimetypes; 222 struct string_list mimetypes;
198 struct cgit_filter *about_filter; 223 struct cgit_filter *about_filter;
199 struct cgit_filter *commit_filter; 224 struct cgit_filter *commit_filter;
@@ -268,14 +293,17 @@ extern void *cgit_free_commitinfo(struct commitinfo *info);
268extern int cgit_diff_files(const unsigned char *old_sha1, 293extern int cgit_diff_files(const unsigned char *old_sha1,
269 const unsigned char *new_sha1, 294 const unsigned char *new_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
273extern void cgit_diff_tree(const unsigned char *old_sha1, 299extern 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,...);
280 308
281extern struct commitinfo *cgit_parse_commit(struct commit *commit); 309extern struct commitinfo *cgit_parse_commit(struct commit *commit);
@@ -291,4 +319,6 @@ extern int cgit_close_filter(struct cgit_filter *filter);
291 319
292extern int readfile(const char *path, char **buf, size_t *size); 320extern 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 */