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