author | Lars Hjemli <hjemli@gmail.com> | 2008-09-01 20:40:55 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-09-01 20:40:55 (UTC) |
commit | d532c4d1612c94347427fa1afda6afb7c34e512a (patch) (unidiff) | |
tree | 53f3f86ba8e78051bee96cb65a6219ef43d9adab /cgit.h | |
parent | 288d502b3d8e7fa916104b486bbb146521e5c716 (diff) | |
parent | 885096c189574b1cf2e0897cc05aadd7b092a677 (diff) | |
download | cgit-d532c4d1612c94347427fa1afda6afb7c34e512a.zip cgit-d532c4d1612c94347427fa1afda6afb7c34e512a.tar.gz cgit-d532c4d1612c94347427fa1afda6afb7c34e512a.tar.bz2 |
Merge branch 'lh/plain'
* lh/plain:
Supply status description to html_status()
ui-tree: link to plain view instead of blob view
Implement plain view
-rw-r--r-- | cgit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -105,128 +105,129 @@ struct reflist { | |||
105 | }; | 105 | }; |
106 | 106 | ||
107 | struct cgit_query { | 107 | struct cgit_query { |
108 | int has_symref; | 108 | int has_symref; |
109 | int has_sha1; | 109 | int has_sha1; |
110 | char *raw; | 110 | char *raw; |
111 | char *repo; | 111 | char *repo; |
112 | char *page; | 112 | char *page; |
113 | char *search; | 113 | char *search; |
114 | char *grep; | 114 | char *grep; |
115 | char *head; | 115 | char *head; |
116 | char *sha1; | 116 | char *sha1; |
117 | char *sha2; | 117 | char *sha2; |
118 | char *path; | 118 | char *path; |
119 | char *name; | 119 | char *name; |
120 | char *mimetype; | 120 | char *mimetype; |
121 | int ofs; | 121 | int ofs; |
122 | }; | 122 | }; |
123 | 123 | ||
124 | struct cgit_config { | 124 | struct cgit_config { |
125 | char *agefile; | 125 | char *agefile; |
126 | char *cache_root; | 126 | char *cache_root; |
127 | char *clone_prefix; | 127 | char *clone_prefix; |
128 | char *css; | 128 | char *css; |
129 | char *favicon; | 129 | char *favicon; |
130 | char *footer; | 130 | char *footer; |
131 | char *index_header; | 131 | char *index_header; |
132 | char *index_info; | 132 | char *index_info; |
133 | char *logo; | 133 | char *logo; |
134 | char *logo_link; | 134 | char *logo_link; |
135 | char *module_link; | 135 | char *module_link; |
136 | char *repo_group; | 136 | char *repo_group; |
137 | char *robots; | 137 | char *robots; |
138 | char *root_title; | 138 | char *root_title; |
139 | char *root_desc; | 139 | char *root_desc; |
140 | char *root_readme; | 140 | char *root_readme; |
141 | char *script_name; | 141 | char *script_name; |
142 | char *virtual_root; | 142 | char *virtual_root; |
143 | int cache_size; | 143 | int cache_size; |
144 | int cache_dynamic_ttl; | 144 | int cache_dynamic_ttl; |
145 | int cache_max_create_time; | 145 | int cache_max_create_time; |
146 | int cache_repo_ttl; | 146 | int cache_repo_ttl; |
147 | int cache_root_ttl; | 147 | int cache_root_ttl; |
148 | int cache_static_ttl; | 148 | int cache_static_ttl; |
149 | int enable_index_links; | 149 | int enable_index_links; |
150 | int enable_log_filecount; | 150 | int enable_log_filecount; |
151 | int enable_log_linecount; | 151 | int enable_log_linecount; |
152 | int local_time; | 152 | int local_time; |
153 | int max_repo_count; | 153 | int max_repo_count; |
154 | int max_commit_count; | 154 | int max_commit_count; |
155 | int max_lock_attempts; | 155 | int max_lock_attempts; |
156 | int max_msg_len; | 156 | int max_msg_len; |
157 | int max_repodesc_len; | 157 | int max_repodesc_len; |
158 | int nocache; | 158 | int nocache; |
159 | int renamelimit; | 159 | int renamelimit; |
160 | int snapshots; | 160 | int snapshots; |
161 | int summary_branches; | 161 | int summary_branches; |
162 | int summary_log; | 162 | int summary_log; |
163 | int summary_tags; | 163 | int summary_tags; |
164 | }; | 164 | }; |
165 | 165 | ||
166 | struct cgit_page { | 166 | struct cgit_page { |
167 | time_t modified; | 167 | time_t modified; |
168 | time_t expires; | 168 | time_t expires; |
169 | size_t size; | ||
169 | char *mimetype; | 170 | char *mimetype; |
170 | char *charset; | 171 | char *charset; |
171 | char *filename; | 172 | char *filename; |
172 | char *title; | 173 | char *title; |
173 | }; | 174 | }; |
174 | 175 | ||
175 | struct cgit_context { | 176 | struct cgit_context { |
176 | struct cgit_query qry; | 177 | struct cgit_query qry; |
177 | struct cgit_config cfg; | 178 | struct cgit_config cfg; |
178 | struct cgit_repo *repo; | 179 | struct cgit_repo *repo; |
179 | struct cgit_page page; | 180 | struct cgit_page page; |
180 | }; | 181 | }; |
181 | 182 | ||
182 | struct cgit_snapshot_format { | 183 | struct cgit_snapshot_format { |
183 | const char *suffix; | 184 | const char *suffix; |
184 | const char *mimetype; | 185 | const char *mimetype; |
185 | write_archive_fn_t write_func; | 186 | write_archive_fn_t write_func; |
186 | int bit; | 187 | int bit; |
187 | }; | 188 | }; |
188 | 189 | ||
189 | extern const char *cgit_version; | 190 | extern const char *cgit_version; |
190 | 191 | ||
191 | extern struct cgit_repolist cgit_repolist; | 192 | extern struct cgit_repolist cgit_repolist; |
192 | extern struct cgit_context ctx; | 193 | extern struct cgit_context ctx; |
193 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; | 194 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
194 | 195 | ||
195 | extern struct cgit_repo *cgit_add_repo(const char *url); | 196 | extern struct cgit_repo *cgit_add_repo(const char *url); |
196 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); | 197 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
197 | extern void cgit_repo_config_cb(const char *name, const char *value); | 198 | extern void cgit_repo_config_cb(const char *name, const char *value); |
198 | 199 | ||
199 | extern int chk_zero(int result, char *msg); | 200 | extern int chk_zero(int result, char *msg); |
200 | extern int chk_positive(int result, char *msg); | 201 | extern int chk_positive(int result, char *msg); |
201 | extern int chk_non_negative(int result, char *msg); | 202 | extern int chk_non_negative(int result, char *msg); |
202 | 203 | ||
203 | extern char *trim_end(const char *str, char c); | 204 | extern char *trim_end(const char *str, char c); |
204 | extern char *strlpart(char *txt, int maxlen); | 205 | extern char *strlpart(char *txt, int maxlen); |
205 | extern char *strrpart(char *txt, int maxlen); | 206 | extern char *strrpart(char *txt, int maxlen); |
206 | 207 | ||
207 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); | 208 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
208 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, | 209 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
209 | int flags, void *cb_data); | 210 | int flags, void *cb_data); |
210 | 211 | ||
211 | extern void *cgit_free_commitinfo(struct commitinfo *info); | 212 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
212 | 213 | ||
213 | extern int cgit_diff_files(const unsigned char *old_sha1, | 214 | extern int cgit_diff_files(const unsigned char *old_sha1, |
214 | const unsigned char *new_sha1, | 215 | const unsigned char *new_sha1, |
215 | linediff_fn fn); | 216 | linediff_fn fn); |
216 | 217 | ||
217 | extern void cgit_diff_tree(const unsigned char *old_sha1, | 218 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
218 | const unsigned char *new_sha1, | 219 | const unsigned char *new_sha1, |
219 | filepair_fn fn, const char *prefix); | 220 | filepair_fn fn, const char *prefix); |
220 | 221 | ||
221 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); | 222 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
222 | 223 | ||
223 | extern char *fmt(const char *format,...); | 224 | extern char *fmt(const char *format,...); |
224 | 225 | ||
225 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); | 226 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
226 | extern struct taginfo *cgit_parse_tag(struct tag *tag); | 227 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
227 | extern void cgit_parse_url(const char *url); | 228 | extern void cgit_parse_url(const char *url); |
228 | 229 | ||
229 | extern const char *cgit_repobasename(const char *reponame); | 230 | extern const char *cgit_repobasename(const char *reponame); |
230 | 231 | ||
231 | extern int cgit_parse_snapshots_mask(const char *str); | 232 | extern int cgit_parse_snapshots_mask(const char *str); |
232 | 233 | ||