|
diff --git a/cgit.h b/cgit.h index d0fff1f..f9cf0df 100644 --- a/ cgit.h+++ b/ cgit.h |
|
@@ -90,175 +90,176 @@ struct taginfo { |
90 | char *tagger_email; |
90 | char *tagger_email; |
91 | unsigned long tagger_date; |
91 | unsigned long tagger_date; |
92 | char *msg; |
92 | char *msg; |
93 | }; |
93 | }; |
94 | |
94 | |
95 | struct refinfo { |
95 | struct refinfo { |
96 | const char *refname; |
96 | const char *refname; |
97 | struct object *object; |
97 | struct object *object; |
98 | union { |
98 | union { |
99 | struct taginfo *tag; |
99 | struct taginfo *tag; |
100 | struct commitinfo *commit; |
100 | struct commitinfo *commit; |
101 | }; |
101 | }; |
102 | }; |
102 | }; |
103 | |
103 | |
104 | struct reflist { |
104 | struct reflist { |
105 | struct refinfo **refs; |
105 | struct refinfo **refs; |
106 | int alloc; |
106 | int alloc; |
107 | int count; |
107 | int count; |
108 | }; |
108 | }; |
109 | |
109 | |
110 | struct cgit_query { |
110 | struct cgit_query { |
111 | int has_symref; |
111 | int has_symref; |
112 | int has_sha1; |
112 | int has_sha1; |
113 | char *raw; |
113 | char *raw; |
114 | char *repo; |
114 | char *repo; |
115 | char *page; |
115 | char *page; |
116 | char *search; |
116 | char *search; |
117 | char *grep; |
117 | char *grep; |
118 | char *head; |
118 | char *head; |
119 | char *sha1; |
119 | char *sha1; |
120 | char *sha2; |
120 | char *sha2; |
121 | char *path; |
121 | char *path; |
122 | char *name; |
122 | char *name; |
123 | char *mimetype; |
123 | char *mimetype; |
124 | char *url; |
124 | char *url; |
125 | char *period; |
125 | char *period; |
126 | int ofs; |
126 | int ofs; |
127 | int nohead; |
127 | int nohead; |
128 | char *sort; |
128 | char *sort; |
129 | int showmsg; |
129 | int showmsg; |
130 | }; |
130 | }; |
131 | |
131 | |
132 | struct cgit_filter { |
132 | struct cgit_filter { |
133 | char *cmd; |
133 | char *cmd; |
134 | char **argv; |
134 | char **argv; |
135 | int old_stdout; |
135 | int old_stdout; |
136 | int pipe_fh[2]; |
136 | int pipe_fh[2]; |
137 | int pid; |
137 | int pid; |
138 | int exitstatus; |
138 | int exitstatus; |
139 | }; |
139 | }; |
140 | |
140 | |
141 | struct cgit_config { |
141 | struct cgit_config { |
142 | char *agefile; |
142 | char *agefile; |
143 | char *cache_root; |
143 | char *cache_root; |
144 | char *clone_prefix; |
144 | char *clone_prefix; |
145 | char *css; |
145 | char *css; |
146 | char *favicon; |
146 | char *favicon; |
147 | char *footer; |
147 | char *footer; |
148 | char *head_include; |
148 | char *head_include; |
149 | char *header; |
149 | char *header; |
150 | char *index_header; |
150 | char *index_header; |
151 | char *index_info; |
151 | char *index_info; |
152 | char *logo; |
152 | char *logo; |
153 | char *logo_link; |
153 | char *logo_link; |
154 | char *module_link; |
154 | char *module_link; |
155 | char *repo_group; |
155 | char *repo_group; |
156 | char *robots; |
156 | char *robots; |
157 | char *root_title; |
157 | char *root_title; |
158 | char *root_desc; |
158 | char *root_desc; |
159 | char *root_readme; |
159 | char *root_readme; |
160 | char *script_name; |
160 | char *script_name; |
161 | char *virtual_root; |
161 | char *virtual_root; |
162 | int cache_size; |
162 | int cache_size; |
163 | int cache_dynamic_ttl; |
163 | int cache_dynamic_ttl; |
164 | int cache_max_create_time; |
164 | int cache_max_create_time; |
165 | int cache_repo_ttl; |
165 | int cache_repo_ttl; |
166 | int cache_root_ttl; |
166 | int cache_root_ttl; |
167 | int cache_static_ttl; |
167 | int cache_static_ttl; |
168 | int embedded; |
168 | int embedded; |
169 | int enable_index_links; |
169 | int enable_index_links; |
170 | int enable_log_filecount; |
170 | int enable_log_filecount; |
171 | int enable_log_linecount; |
171 | int enable_log_linecount; |
172 | int local_time; |
172 | int local_time; |
173 | int max_repo_count; |
173 | int max_repo_count; |
174 | int max_commit_count; |
174 | int max_commit_count; |
175 | int max_lock_attempts; |
175 | int max_lock_attempts; |
176 | int max_msg_len; |
176 | int max_msg_len; |
177 | int max_repodesc_len; |
177 | int max_repodesc_len; |
178 | int max_stats; |
178 | int max_stats; |
179 | int nocache; |
179 | int nocache; |
180 | int noheader; |
180 | int noheader; |
181 | int renamelimit; |
181 | int renamelimit; |
182 | int snapshots; |
182 | int snapshots; |
183 | int summary_branches; |
183 | int summary_branches; |
184 | int summary_log; |
184 | int summary_log; |
185 | int summary_tags; |
185 | int summary_tags; |
| |
186 | struct cgit_filter *source_filter; |
186 | }; |
187 | }; |
187 | |
188 | |
188 | struct cgit_page { |
189 | struct cgit_page { |
189 | time_t modified; |
190 | time_t modified; |
190 | time_t expires; |
191 | time_t expires; |
191 | size_t size; |
192 | size_t size; |
192 | char *mimetype; |
193 | char *mimetype; |
193 | char *charset; |
194 | char *charset; |
194 | char *filename; |
195 | char *filename; |
195 | char *etag; |
196 | char *etag; |
196 | char *title; |
197 | char *title; |
197 | int status; |
198 | int status; |
198 | char *statusmsg; |
199 | char *statusmsg; |
199 | }; |
200 | }; |
200 | |
201 | |
201 | struct cgit_context { |
202 | struct cgit_context { |
202 | struct cgit_query qry; |
203 | struct cgit_query qry; |
203 | struct cgit_config cfg; |
204 | struct cgit_config cfg; |
204 | struct cgit_repo *repo; |
205 | struct cgit_repo *repo; |
205 | struct cgit_page page; |
206 | struct cgit_page page; |
206 | }; |
207 | }; |
207 | |
208 | |
208 | struct cgit_snapshot_format { |
209 | struct cgit_snapshot_format { |
209 | const char *suffix; |
210 | const char *suffix; |
210 | const char *mimetype; |
211 | const char *mimetype; |
211 | write_archive_fn_t write_func; |
212 | write_archive_fn_t write_func; |
212 | int bit; |
213 | int bit; |
213 | }; |
214 | }; |
214 | |
215 | |
215 | extern const char *cgit_version; |
216 | extern const char *cgit_version; |
216 | |
217 | |
217 | extern struct cgit_repolist cgit_repolist; |
218 | extern struct cgit_repolist cgit_repolist; |
218 | extern struct cgit_context ctx; |
219 | extern struct cgit_context ctx; |
219 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
220 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
220 | |
221 | |
221 | extern struct cgit_repo *cgit_add_repo(const char *url); |
222 | extern struct cgit_repo *cgit_add_repo(const char *url); |
222 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
223 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
223 | extern void cgit_repo_config_cb(const char *name, const char *value); |
224 | extern void cgit_repo_config_cb(const char *name, const char *value); |
224 | |
225 | |
225 | extern int chk_zero(int result, char *msg); |
226 | extern int chk_zero(int result, char *msg); |
226 | extern int chk_positive(int result, char *msg); |
227 | extern int chk_positive(int result, char *msg); |
227 | extern int chk_non_negative(int result, char *msg); |
228 | extern int chk_non_negative(int result, char *msg); |
228 | |
229 | |
229 | extern char *trim_end(const char *str, char c); |
230 | extern char *trim_end(const char *str, char c); |
230 | extern char *strlpart(char *txt, int maxlen); |
231 | extern char *strlpart(char *txt, int maxlen); |
231 | extern char *strrpart(char *txt, int maxlen); |
232 | extern char *strrpart(char *txt, int maxlen); |
232 | |
233 | |
233 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
234 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
234 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
235 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
235 | int flags, void *cb_data); |
236 | int flags, void *cb_data); |
236 | |
237 | |
237 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
238 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
238 | |
239 | |
239 | extern int cgit_diff_files(const unsigned char *old_sha1, |
240 | extern int cgit_diff_files(const unsigned char *old_sha1, |
240 | const unsigned char *new_sha1, |
241 | const unsigned char *new_sha1, |
241 | unsigned long *old_size, unsigned long *new_size, |
242 | unsigned long *old_size, unsigned long *new_size, |
242 | int *binary, linediff_fn fn); |
243 | int *binary, linediff_fn fn); |
243 | |
244 | |
244 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
245 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
245 | const unsigned char *new_sha1, |
246 | const unsigned char *new_sha1, |
246 | filepair_fn fn, const char *prefix); |
247 | filepair_fn fn, const char *prefix); |
247 | |
248 | |
248 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
249 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
249 | |
250 | |
250 | extern char *fmt(const char *format,...); |
251 | extern char *fmt(const char *format,...); |
251 | |
252 | |
252 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
253 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
253 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
254 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
254 | extern void cgit_parse_url(const char *url); |
255 | extern void cgit_parse_url(const char *url); |
255 | |
256 | |
256 | extern const char *cgit_repobasename(const char *reponame); |
257 | extern const char *cgit_repobasename(const char *reponame); |
257 | |
258 | |
258 | extern int cgit_parse_snapshots_mask(const char *str); |
259 | extern int cgit_parse_snapshots_mask(const char *str); |
259 | |
260 | |
260 | extern int cgit_open_filter(struct cgit_filter *filter); |
261 | extern int cgit_open_filter(struct cgit_filter *filter); |
261 | extern int cgit_close_filter(struct cgit_filter *filter); |
262 | extern int cgit_close_filter(struct cgit_filter *filter); |
262 | |
263 | |
263 | |
264 | |
264 | #endif /* CGIT_H */ |
265 | #endif /* CGIT_H */ |
|