summaryrefslogtreecommitdiffabout
path: root/cgit.h
Side-by-side diff
Diffstat (limited to 'cgit.h') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.h23
1 files changed, 21 insertions, 2 deletions
diff --git a/cgit.h b/cgit.h
index 6c6c460..4090cd4 100644
--- a/cgit.h
+++ b/cgit.h
@@ -21,2 +21,3 @@
#include <utf8.h>
+#include <notes.h>
@@ -74,2 +75,4 @@ struct cgit_repo {
int enable_log_linecount;
+ int enable_remote_branches;
+ int enable_subject_links;
int max_stats;
@@ -145,2 +148,7 @@ struct cgit_query {
int showmsg;
+ int ssdiff;
+ int show_all;
+ int context;
+ int ignorews;
+ char *vpath;
};
@@ -161,2 +169,3 @@ struct cgit_config {
char *module_link;
+ char *project_list;
char *robots;
@@ -177,2 +186,3 @@ struct cgit_config {
int enable_filter_overrides;
+ int enable_gitweb_owner;
int enable_index_links;
@@ -180,4 +190,7 @@ struct cgit_config {
int enable_log_linecount;
+ int enable_remote_branches;
+ int enable_subject_links;
int enable_tree_linenumbers;
int local_time;
+ int max_atom_items;
int max_repo_count;
@@ -187,2 +200,3 @@ struct cgit_config {
int max_repodesc_len;
+ int max_blob_size;
int max_stats;
@@ -192,2 +206,3 @@ struct cgit_config {
int renamelimit;
+ int remove_suffix;
int snapshots;
@@ -196,2 +211,3 @@ struct cgit_config {
int summary_tags;
+ int ssdiff;
struct string_list mimetypes;
@@ -270,3 +286,4 @@ extern int cgit_diff_files(const unsigned char *old_sha1,
unsigned long *old_size, unsigned long *new_size,
- int *binary, linediff_fn fn);
+ int *binary, int context, int ignorews,
+ linediff_fn fn);
@@ -274,3 +291,3 @@ extern void cgit_diff_tree(const unsigned char *old_sha1,
const unsigned char *new_sha1,
- filepair_fn fn, const char *prefix);
+ filepair_fn fn, const char *prefix, int ignorews);
@@ -293,2 +310,4 @@ extern int readfile(const char *path, char **buf, size_t *size);
+extern char *expand_macros(const char *txt);
+
#endif /* CGIT_H */