|
diff --git a/cgit.h b/cgit.h index 2bf6ab0..e9e2718 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -103,96 +103,97 @@ struct commitinfo { |
103 | char *msg_encoding; |
103 | char *msg_encoding; |
104 | }; |
104 | }; |
105 | |
105 | |
106 | struct taginfo { |
106 | struct taginfo { |
107 | char *tagger; |
107 | char *tagger; |
108 | char *tagger_email; |
108 | char *tagger_email; |
109 | unsigned long tagger_date; |
109 | unsigned long tagger_date; |
110 | char *msg; |
110 | char *msg; |
111 | }; |
111 | }; |
112 | |
112 | |
113 | struct refinfo { |
113 | struct refinfo { |
114 | const char *refname; |
114 | const char *refname; |
115 | struct object *object; |
115 | struct object *object; |
116 | union { |
116 | union { |
117 | struct taginfo *tag; |
117 | struct taginfo *tag; |
118 | struct commitinfo *commit; |
118 | struct commitinfo *commit; |
119 | }; |
119 | }; |
120 | }; |
120 | }; |
121 | |
121 | |
122 | struct reflist { |
122 | struct reflist { |
123 | struct refinfo **refs; |
123 | struct refinfo **refs; |
124 | int alloc; |
124 | int alloc; |
125 | int count; |
125 | int count; |
126 | }; |
126 | }; |
127 | |
127 | |
128 | struct cgit_query { |
128 | struct cgit_query { |
129 | int has_symref; |
129 | int has_symref; |
130 | int has_sha1; |
130 | int has_sha1; |
131 | char *raw; |
131 | char *raw; |
132 | char *repo; |
132 | char *repo; |
133 | char *page; |
133 | char *page; |
134 | char *search; |
134 | char *search; |
135 | char *grep; |
135 | char *grep; |
136 | char *head; |
136 | char *head; |
137 | char *sha1; |
137 | char *sha1; |
138 | char *sha2; |
138 | char *sha2; |
139 | char *path; |
139 | char *path; |
140 | char *name; |
140 | char *name; |
141 | char *mimetype; |
141 | char *mimetype; |
142 | char *url; |
142 | char *url; |
143 | char *period; |
143 | char *period; |
144 | int ofs; |
144 | int ofs; |
145 | int nohead; |
145 | int nohead; |
146 | char *sort; |
146 | char *sort; |
147 | int showmsg; |
147 | int showmsg; |
148 | int ssdiff; |
148 | int ssdiff; |
149 | int show_all; |
149 | int show_all; |
150 | int context; |
150 | int context; |
| |
151 | int ignorews; |
151 | char *vpath; |
152 | char *vpath; |
152 | }; |
153 | }; |
153 | |
154 | |
154 | struct cgit_config { |
155 | struct cgit_config { |
155 | char *agefile; |
156 | char *agefile; |
156 | char *cache_root; |
157 | char *cache_root; |
157 | char *clone_prefix; |
158 | char *clone_prefix; |
158 | char *css; |
159 | char *css; |
159 | char *favicon; |
160 | char *favicon; |
160 | char *footer; |
161 | char *footer; |
161 | char *head_include; |
162 | char *head_include; |
162 | char *header; |
163 | char *header; |
163 | char *index_header; |
164 | char *index_header; |
164 | char *index_info; |
165 | char *index_info; |
165 | char *logo; |
166 | char *logo; |
166 | char *logo_link; |
167 | char *logo_link; |
167 | char *module_link; |
168 | char *module_link; |
168 | char *robots; |
169 | char *robots; |
169 | char *root_title; |
170 | char *root_title; |
170 | char *root_desc; |
171 | char *root_desc; |
171 | char *root_readme; |
172 | char *root_readme; |
172 | char *script_name; |
173 | char *script_name; |
173 | char *section; |
174 | char *section; |
174 | char *virtual_root; |
175 | char *virtual_root; |
175 | int cache_size; |
176 | int cache_size; |
176 | int cache_dynamic_ttl; |
177 | int cache_dynamic_ttl; |
177 | int cache_max_create_time; |
178 | int cache_max_create_time; |
178 | int cache_repo_ttl; |
179 | int cache_repo_ttl; |
179 | int cache_root_ttl; |
180 | int cache_root_ttl; |
180 | int cache_scanrc_ttl; |
181 | int cache_scanrc_ttl; |
181 | int cache_static_ttl; |
182 | int cache_static_ttl; |
182 | int embedded; |
183 | int embedded; |
183 | int enable_filter_overrides; |
184 | int enable_filter_overrides; |
184 | int enable_index_links; |
185 | int enable_index_links; |
185 | int enable_log_filecount; |
186 | int enable_log_filecount; |
186 | int enable_log_linecount; |
187 | int enable_log_linecount; |
187 | int enable_remote_branches; |
188 | int enable_remote_branches; |
188 | int enable_subject_links; |
189 | int enable_subject_links; |
189 | int enable_tree_linenumbers; |
190 | int enable_tree_linenumbers; |
190 | int local_time; |
191 | int local_time; |
191 | int max_atom_items; |
192 | int max_atom_items; |
192 | int max_repo_count; |
193 | int max_repo_count; |
193 | int max_commit_count; |
194 | int max_commit_count; |
194 | int max_lock_attempts; |
195 | int max_lock_attempts; |
195 | int max_msg_len; |
196 | int max_msg_len; |
196 | int max_repodesc_len; |
197 | int max_repodesc_len; |
197 | int max_blob_size; |
198 | int max_blob_size; |
198 | int max_stats; |
199 | int max_stats; |
@@ -234,74 +235,75 @@ struct cgit_environment { |
234 | char *request_method; |
235 | char *request_method; |
235 | char *script_name; |
236 | char *script_name; |
236 | char *server_name; |
237 | char *server_name; |
237 | char *server_port; |
238 | char *server_port; |
238 | }; |
239 | }; |
239 | |
240 | |
240 | struct cgit_context { |
241 | struct cgit_context { |
241 | struct cgit_environment env; |
242 | struct cgit_environment env; |
242 | struct cgit_query qry; |
243 | struct cgit_query qry; |
243 | struct cgit_config cfg; |
244 | struct cgit_config cfg; |
244 | struct cgit_repo *repo; |
245 | struct cgit_repo *repo; |
245 | struct cgit_page page; |
246 | struct cgit_page page; |
246 | }; |
247 | }; |
247 | |
248 | |
248 | struct cgit_snapshot_format { |
249 | struct cgit_snapshot_format { |
249 | const char *suffix; |
250 | const char *suffix; |
250 | const char *mimetype; |
251 | const char *mimetype; |
251 | write_archive_fn_t write_func; |
252 | write_archive_fn_t write_func; |
252 | int bit; |
253 | int bit; |
253 | }; |
254 | }; |
254 | |
255 | |
255 | extern const char *cgit_version; |
256 | extern const char *cgit_version; |
256 | |
257 | |
257 | extern struct cgit_repolist cgit_repolist; |
258 | extern struct cgit_repolist cgit_repolist; |
258 | extern struct cgit_context ctx; |
259 | extern struct cgit_context ctx; |
259 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
260 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
260 | |
261 | |
261 | extern struct cgit_repo *cgit_add_repo(const char *url); |
262 | extern struct cgit_repo *cgit_add_repo(const char *url); |
262 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
263 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
263 | extern void cgit_repo_config_cb(const char *name, const char *value); |
264 | extern void cgit_repo_config_cb(const char *name, const char *value); |
264 | |
265 | |
265 | extern int chk_zero(int result, char *msg); |
266 | extern int chk_zero(int result, char *msg); |
266 | extern int chk_positive(int result, char *msg); |
267 | extern int chk_positive(int result, char *msg); |
267 | extern int chk_non_negative(int result, char *msg); |
268 | extern int chk_non_negative(int result, char *msg); |
268 | |
269 | |
269 | extern char *trim_end(const char *str, char c); |
270 | extern char *trim_end(const char *str, char c); |
270 | extern char *strlpart(char *txt, int maxlen); |
271 | extern char *strlpart(char *txt, int maxlen); |
271 | extern char *strrpart(char *txt, int maxlen); |
272 | extern char *strrpart(char *txt, int maxlen); |
272 | |
273 | |
273 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
274 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
274 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
275 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
275 | int flags, void *cb_data); |
276 | int flags, void *cb_data); |
276 | |
277 | |
277 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
278 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
278 | |
279 | |
279 | extern int cgit_diff_files(const unsigned char *old_sha1, |
280 | extern int cgit_diff_files(const unsigned char *old_sha1, |
280 | const unsigned char *new_sha1, |
281 | const unsigned char *new_sha1, |
281 | unsigned long *old_size, unsigned long *new_size, |
282 | unsigned long *old_size, unsigned long *new_size, |
282 | int *binary, int context, linediff_fn fn); |
283 | int *binary, int context, int ignorews, |
| |
284 | linediff_fn fn); |
283 | |
285 | |
284 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
286 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
285 | const unsigned char *new_sha1, |
287 | const unsigned char *new_sha1, |
286 | filepair_fn fn, const char *prefix); |
288 | filepair_fn fn, const char *prefix, int ignorews); |
287 | |
289 | |
288 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
290 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
289 | |
291 | |
290 | extern char *fmt(const char *format,...); |
292 | extern char *fmt(const char *format,...); |
291 | |
293 | |
292 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
294 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
293 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
295 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
294 | extern void cgit_parse_url(const char *url); |
296 | extern void cgit_parse_url(const char *url); |
295 | |
297 | |
296 | extern const char *cgit_repobasename(const char *reponame); |
298 | extern const char *cgit_repobasename(const char *reponame); |
297 | |
299 | |
298 | extern int cgit_parse_snapshots_mask(const char *str); |
300 | extern int cgit_parse_snapshots_mask(const char *str); |
299 | |
301 | |
300 | extern int cgit_open_filter(struct cgit_filter *filter); |
302 | extern int cgit_open_filter(struct cgit_filter *filter); |
301 | extern int cgit_close_filter(struct cgit_filter *filter); |
303 | extern int cgit_close_filter(struct cgit_filter *filter); |
302 | |
304 | |
303 | extern int readfile(const char *path, char **buf, size_t *size); |
305 | extern int readfile(const char *path, char **buf, size_t *size); |
304 | |
306 | |
305 | extern char *expand_macros(const char *txt); |
307 | extern char *expand_macros(const char *txt); |
306 | |
308 | |
307 | #endif /* CGIT_H */ |
309 | #endif /* CGIT_H */ |
|