#include <git-compat-util.h>
+#include <stdbool.h>
+
#include <cache.h>
#include <grep.h>
#include <object.h>
#include <notes.h>
#include <graph.h>
+/* Add isgraph(x) to Git's sane ctype support (see git-compat-util.h) */
+#undef isgraph
+#define isgraph(x) (isprint((x)) && !isspace((x)))
/*
* Dateformats used on misc. pages
int enable_log_linecount;
int enable_remote_branches;
int enable_subject_links;
+ int enable_html_serving;
int max_stats;
int branch_sort;
int commit_sort;
char *author;
char *author_email;
unsigned long author_date;
+ int author_tz;
char *committer;
char *committer_email;
unsigned long committer_date;
+ int committer_tz;
char *subject;
char *msg;
char *msg_encoding;
char *tagger;
char *tagger_email;
unsigned long tagger_date;
+ int tagger_tz;
char *msg;
};
char *sha2;
char *path;
char *name;
- char *mimetype;
char *url;
char *period;
int ofs;
int show_all;
int context;
int ignorews;
+ int follow;
char *vpath;
};
int case_sensitive_sort;
int embedded;
int enable_filter_overrides;
+ int enable_follow_links;
int enable_http_clone;
int enable_index_links;
int enable_index_owner;
int enable_log_linecount;
int enable_remote_branches;
int enable_subject_links;
+ int enable_html_serving;
int enable_tree_linenumbers;
int enable_git_config;
int local_time;
extern char *expand_macros(const char *txt);
+extern char *get_mimetype_for_filename(const char *filename);
+
#endif /* CGIT_H */