-rw-r--r-- | cgit.h | 26 |
1 files changed, 24 insertions, 2 deletions
@@ -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,4 @@ struct cgit_config { char *module_link; + char *project_list; + char *readme; char *robots; @@ -177,2 +187,3 @@ struct cgit_config { int enable_filter_overrides; + int enable_gitweb_owner; int enable_index_links; @@ -180,4 +191,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 +201,3 @@ struct cgit_config { int max_repodesc_len; + int max_blob_size; int max_stats; @@ -192,2 +207,4 @@ struct cgit_config { int renamelimit; + int remove_suffix; + int section_from_path; int snapshots; @@ -196,2 +213,3 @@ struct cgit_config { int summary_tags; + int ssdiff; struct string_list mimetypes; @@ -270,3 +288,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 +293,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); @@ -278,2 +297,3 @@ extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); +__attribute__((format (printf,1,2))) extern char *fmt(const char *format,...); @@ -293,2 +313,4 @@ extern int readfile(const char *path, char **buf, size_t *size); +extern char *expand_macros(const char *txt); + #endif /* CGIT_H */ |