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
@@ -1,45 +1,47 @@
1#ifndef CGIT_H 1#ifndef CGIT_H
2#define CGIT_H 2#define CGIT_H
3 3
4 4
5#include <git-compat-util.h> 5#include <git-compat-util.h>
6#include <cache.h> 6#include <cache.h>
7#include <grep.h> 7#include <grep.h>
8#include <object.h> 8#include <object.h>
9#include <tree.h> 9#include <tree.h>
10#include <commit.h> 10#include <commit.h>
11#include <tag.h> 11#include <tag.h>
12#include <diff.h> 12#include <diff.h>
13#include <diffcore.h> 13#include <diffcore.h>
14#include <refs.h> 14#include <refs.h>
15#include <revision.h> 15#include <revision.h>
16#include <log-tree.h> 16#include <log-tree.h>
17#include <archive.h> 17#include <archive.h>
18#include <string-list.h> 18#include <string-list.h>
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/*
25 * Dateformats used on misc. pages 27 * Dateformats used on misc. pages
26 */ 28 */
27#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" 29#define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)"
28#define FMT_SHORTDATE "%Y-%m-%d" 30#define FMT_SHORTDATE "%Y-%m-%d"
29#define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" 31#define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ"
30 32
31 33
32/* 34/*
33 * Limits used for relative dates 35 * Limits used for relative dates
34 */ 36 */
35#define TM_MIN 60 37#define TM_MIN 60
36#define TM_HOUR (TM_MIN * 60) 38#define TM_HOUR (TM_MIN * 60)
37#define TM_DAY (TM_HOUR * 24) 39#define TM_DAY (TM_HOUR * 24)
38#define TM_WEEK (TM_DAY * 7) 40#define TM_WEEK (TM_DAY * 7)
39#define TM_YEAR (TM_DAY * 365) 41#define TM_YEAR (TM_DAY * 365)
40#define TM_MONTH (TM_YEAR / 12.0) 42#define TM_MONTH (TM_YEAR / 12.0)
41 43
42 44
43/* 45/*
44 * Default encoding 46 * Default encoding
45 */ 47 */
@@ -48,51 +50,56 @@
48typedef void (*configfn)(const char *name, const char *value); 50typedef void (*configfn)(const char *name, const char *value);
49typedef void (*filepair_fn)(struct diff_filepair *pair); 51typedef void (*filepair_fn)(struct diff_filepair *pair);
50typedef void (*linediff_fn)(char *line, int len); 52typedef void (*linediff_fn)(char *line, int len);
51 53
52struct cgit_filter { 54struct cgit_filter {
53 char *cmd; 55 char *cmd;
54 char **argv; 56 char **argv;
55 int old_stdout; 57 int old_stdout;
56 int pipe_fh[2]; 58 int pipe_fh[2];
57 int pid; 59 int pid;
58 int exitstatus; 60 int exitstatus;
59}; 61};
60 62
61struct cgit_repo { 63struct cgit_repo {
62 char *url; 64 char *url;
63 char *name; 65 char *name;
64 char *path; 66 char *path;
65 char *desc; 67 char *desc;
66 char *owner; 68 char *owner;
67 char *defbranch; 69 char *defbranch;
68 char *module_link; 70 char *module_link;
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;
78 struct cgit_filter *commit_filter; 85 struct cgit_filter *commit_filter;
79 struct cgit_filter *source_filter; 86 struct cgit_filter *source_filter;
80}; 87};
81 88
82typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name, 89typedef void (*repo_config_fn)(struct cgit_repo *repo, const char *name,
83 const char *value); 90 const char *value);
84 91
85struct cgit_repolist { 92struct cgit_repolist {
86 int length; 93 int length;
87 int count; 94 int count;
88 struct cgit_repo *repos; 95 struct cgit_repo *repos;
89}; 96};
90 97
91struct commitinfo { 98struct commitinfo {
92 struct commit *commit; 99 struct commit *commit;
93 char *author; 100 char *author;
94 char *author_email; 101 char *author_email;
95 unsigned long author_date; 102 unsigned long author_date;
96 char *committer; 103 char *committer;
97 char *committer_email; 104 char *committer_email;
98 unsigned long committer_date; 105 unsigned long committer_date;
@@ -122,99 +129,117 @@ struct reflist {
122 int alloc; 129 int alloc;
123 int count; 130 int count;
124}; 131};
125 132
126struct cgit_query { 133struct cgit_query {
127 int has_symref; 134 int has_symref;
128 int has_sha1; 135 int has_sha1;
129 char *raw; 136 char *raw;
130 char *repo; 137 char *repo;
131 char *page; 138 char *page;
132 char *search; 139 char *search;
133 char *grep; 140 char *grep;
134 char *head; 141 char *head;
135 char *sha1; 142 char *sha1;
136 char *sha2; 143 char *sha2;
137 char *path; 144 char *path;
138 char *name; 145 char *name;
139 char *mimetype; 146 char *mimetype;
140 char *url; 147 char *url;
141 char *period; 148 char *period;
142 int ofs; 149 int ofs;
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 {
149 char *agefile; 161 char *agefile;
150 char *cache_root; 162 char *cache_root;
151 char *clone_prefix; 163 char *clone_prefix;
152 char *css; 164 char *css;
153 char *favicon; 165 char *favicon;
154 char *footer; 166 char *footer;
155 char *head_include; 167 char *head_include;
156 char *header; 168 char *header;
157 char *index_header; 169 char *index_header;
158 char *index_info; 170 char *index_info;
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;
165 char *root_readme; 179 char *root_readme;
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;
172 int cache_repo_ttl; 187 int cache_repo_ttl;
173 int cache_root_ttl; 188 int cache_root_ttl;
174 int cache_scanrc_ttl; 189 int cache_scanrc_ttl;
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;
200 struct cgit_filter *source_filter; 225 struct cgit_filter *source_filter;
201}; 226};
202 227
203struct cgit_page { 228struct cgit_page {
204 time_t modified; 229 time_t modified;
205 time_t expires; 230 time_t expires;
206 size_t size; 231 size_t size;
207 char *mimetype; 232 char *mimetype;
208 char *charset; 233 char *charset;
209 char *filename; 234 char *filename;
210 char *etag; 235 char *etag;
211 char *title; 236 char *title;
212 int status; 237 int status;
213 char *statusmsg; 238 char *statusmsg;
214}; 239};
215 240
216struct cgit_environment { 241struct cgit_environment {
217 char *cgit_config; 242 char *cgit_config;
218 char *http_host; 243 char *http_host;
219 char *https; 244 char *https;
220 char *no_http; 245 char *no_http;
@@ -247,48 +272,53 @@ extern struct cgit_repolist cgit_repolist;
247extern struct cgit_context ctx; 272extern struct cgit_context ctx;
248extern const struct cgit_snapshot_format cgit_snapshot_formats[]; 273extern const struct cgit_snapshot_format cgit_snapshot_formats[];
249 274
250extern struct cgit_repo *cgit_add_repo(const char *url); 275extern struct cgit_repo *cgit_add_repo(const char *url);
251extern struct cgit_repo *cgit_get_repoinfo(const char *url); 276extern struct cgit_repo *cgit_get_repoinfo(const char *url);
252extern void cgit_repo_config_cb(const char *name, const char *value); 277extern void cgit_repo_config_cb(const char *name, const char *value);
253 278
254extern int chk_zero(int result, char *msg); 279extern int chk_zero(int result, char *msg);
255extern int chk_positive(int result, char *msg); 280extern int chk_positive(int result, char *msg);
256extern int chk_non_negative(int result, char *msg); 281extern int chk_non_negative(int result, char *msg);
257 282
258extern char *trim_end(const char *str, char c); 283extern char *trim_end(const char *str, char c);
259extern char *strlpart(char *txt, int maxlen); 284extern char *strlpart(char *txt, int maxlen);
260extern char *strrpart(char *txt, int maxlen); 285extern char *strrpart(char *txt, int maxlen);
261 286
262extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); 287extern void cgit_add_ref(struct reflist *list, struct refinfo *ref);
263extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, 288extern int cgit_refs_cb(const char *refname, const unsigned char *sha1,
264 int flags, void *cb_data); 289 int flags, void *cb_data);
265 290
266extern void *cgit_free_commitinfo(struct commitinfo *info); 291extern void *cgit_free_commitinfo(struct commitinfo *info);
267 292
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);
282extern struct taginfo *cgit_parse_tag(struct tag *tag); 310extern struct taginfo *cgit_parse_tag(struct tag *tag);
283extern void cgit_parse_url(const char *url); 311extern void cgit_parse_url(const char *url);
284 312
285extern const char *cgit_repobasename(const char *reponame); 313extern const char *cgit_repobasename(const char *reponame);
286 314
287extern int cgit_parse_snapshots_mask(const char *str); 315extern int cgit_parse_snapshots_mask(const char *str);
288 316
289extern int cgit_open_filter(struct cgit_filter *filter); 317extern int cgit_open_filter(struct cgit_filter *filter);
290extern int cgit_close_filter(struct cgit_filter *filter); 318extern 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 */