author | Lars Hjemli <hjemli@gmail.com> | 2008-08-06 08:53:50 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-08-06 09:21:30 (UTC) |
commit | e5da4bca54574522b28f88cab0dc8ebad9e35a73 (patch) (unidiff) | |
tree | 08e02b9e0962a12040faab27e7841a74a800ddf2 /cgit.h | |
parent | 02a545e63454530c1639014d3239c14ced2022c6 (diff) | |
download | cgit-e5da4bca54574522b28f88cab0dc8ebad9e35a73.zip cgit-e5da4bca54574522b28f88cab0dc8ebad9e35a73.tar.gz cgit-e5da4bca54574522b28f88cab0dc8ebad9e35a73.tar.bz2 |
Implement plain view
This implements a way to access plain blobs by path (similar to the
tree view) instead of by sha1.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -72,168 +72,169 @@ struct commitinfo { | |||
72 | struct commit *commit; | 72 | struct commit *commit; |
73 | char *author; | 73 | char *author; |
74 | char *author_email; | 74 | char *author_email; |
75 | unsigned long author_date; | 75 | unsigned long author_date; |
76 | char *committer; | 76 | char *committer; |
77 | char *committer_email; | 77 | char *committer_email; |
78 | unsigned long committer_date; | 78 | unsigned long committer_date; |
79 | char *subject; | 79 | char *subject; |
80 | char *msg; | 80 | char *msg; |
81 | char *msg_encoding; | 81 | char *msg_encoding; |
82 | }; | 82 | }; |
83 | 83 | ||
84 | struct taginfo { | 84 | struct taginfo { |
85 | char *tagger; | 85 | char *tagger; |
86 | char *tagger_email; | 86 | char *tagger_email; |
87 | int tagger_date; | 87 | int tagger_date; |
88 | char *msg; | 88 | char *msg; |
89 | }; | 89 | }; |
90 | 90 | ||
91 | struct refinfo { | 91 | struct refinfo { |
92 | const char *refname; | 92 | const char *refname; |
93 | struct object *object; | 93 | struct object *object; |
94 | union { | 94 | union { |
95 | struct taginfo *tag; | 95 | struct taginfo *tag; |
96 | struct commitinfo *commit; | 96 | struct commitinfo *commit; |
97 | }; | 97 | }; |
98 | }; | 98 | }; |
99 | 99 | ||
100 | struct reflist { | 100 | struct reflist { |
101 | struct refinfo **refs; | 101 | struct refinfo **refs; |
102 | int alloc; | 102 | int alloc; |
103 | int count; | 103 | int count; |
104 | }; | 104 | }; |
105 | 105 | ||
106 | struct cgit_query { | 106 | struct cgit_query { |
107 | int has_symref; | 107 | int has_symref; |
108 | int has_sha1; | 108 | int has_sha1; |
109 | char *raw; | 109 | char *raw; |
110 | char *repo; | 110 | char *repo; |
111 | char *page; | 111 | char *page; |
112 | char *search; | 112 | char *search; |
113 | char *grep; | 113 | char *grep; |
114 | char *head; | 114 | char *head; |
115 | char *sha1; | 115 | char *sha1; |
116 | char *sha2; | 116 | char *sha2; |
117 | char *path; | 117 | char *path; |
118 | char *name; | 118 | char *name; |
119 | char *mimetype; | 119 | char *mimetype; |
120 | int ofs; | 120 | int ofs; |
121 | }; | 121 | }; |
122 | 122 | ||
123 | struct cgit_config { | 123 | struct cgit_config { |
124 | char *agefile; | 124 | char *agefile; |
125 | char *cache_root; | 125 | char *cache_root; |
126 | char *clone_prefix; | 126 | char *clone_prefix; |
127 | char *css; | 127 | char *css; |
128 | char *favicon; | 128 | char *favicon; |
129 | char *footer; | 129 | char *footer; |
130 | char *index_header; | 130 | char *index_header; |
131 | char *index_info; | 131 | char *index_info; |
132 | char *logo; | 132 | char *logo; |
133 | char *logo_link; | 133 | char *logo_link; |
134 | char *module_link; | 134 | char *module_link; |
135 | char *repo_group; | 135 | char *repo_group; |
136 | char *robots; | 136 | char *robots; |
137 | char *root_title; | 137 | char *root_title; |
138 | char *root_desc; | 138 | char *root_desc; |
139 | char *root_readme; | 139 | char *root_readme; |
140 | char *script_name; | 140 | char *script_name; |
141 | char *virtual_root; | 141 | char *virtual_root; |
142 | int cache_size; | 142 | int cache_size; |
143 | int cache_dynamic_ttl; | 143 | int cache_dynamic_ttl; |
144 | int cache_max_create_time; | 144 | int cache_max_create_time; |
145 | int cache_repo_ttl; | 145 | int cache_repo_ttl; |
146 | int cache_root_ttl; | 146 | int cache_root_ttl; |
147 | int cache_static_ttl; | 147 | int cache_static_ttl; |
148 | int enable_index_links; | 148 | int enable_index_links; |
149 | int enable_log_filecount; | 149 | int enable_log_filecount; |
150 | int enable_log_linecount; | 150 | int enable_log_linecount; |
151 | int local_time; | 151 | int local_time; |
152 | int max_repo_count; | 152 | int max_repo_count; |
153 | int max_commit_count; | 153 | int max_commit_count; |
154 | int max_lock_attempts; | 154 | int max_lock_attempts; |
155 | int max_msg_len; | 155 | int max_msg_len; |
156 | int max_repodesc_len; | 156 | int max_repodesc_len; |
157 | int nocache; | 157 | int nocache; |
158 | int renamelimit; | 158 | int renamelimit; |
159 | int snapshots; | 159 | int snapshots; |
160 | int summary_branches; | 160 | int summary_branches; |
161 | int summary_log; | 161 | int summary_log; |
162 | int summary_tags; | 162 | int summary_tags; |
163 | }; | 163 | }; |
164 | 164 | ||
165 | struct cgit_page { | 165 | struct cgit_page { |
166 | time_t modified; | 166 | time_t modified; |
167 | time_t expires; | 167 | time_t expires; |
168 | size_t size; | ||
168 | char *mimetype; | 169 | char *mimetype; |
169 | char *charset; | 170 | char *charset; |
170 | char *filename; | 171 | char *filename; |
171 | char *title; | 172 | char *title; |
172 | }; | 173 | }; |
173 | 174 | ||
174 | struct cgit_context { | 175 | struct cgit_context { |
175 | struct cgit_query qry; | 176 | struct cgit_query qry; |
176 | struct cgit_config cfg; | 177 | struct cgit_config cfg; |
177 | struct cgit_repo *repo; | 178 | struct cgit_repo *repo; |
178 | struct cgit_page page; | 179 | struct cgit_page page; |
179 | }; | 180 | }; |
180 | 181 | ||
181 | struct cgit_snapshot_format { | 182 | struct cgit_snapshot_format { |
182 | const char *suffix; | 183 | const char *suffix; |
183 | const char *mimetype; | 184 | const char *mimetype; |
184 | write_archive_fn_t write_func; | 185 | write_archive_fn_t write_func; |
185 | int bit; | 186 | int bit; |
186 | }; | 187 | }; |
187 | 188 | ||
188 | extern const char *cgit_version; | 189 | extern const char *cgit_version; |
189 | 190 | ||
190 | extern struct cgit_repolist cgit_repolist; | 191 | extern struct cgit_repolist cgit_repolist; |
191 | extern struct cgit_context ctx; | 192 | extern struct cgit_context ctx; |
192 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; | 193 | extern const struct cgit_snapshot_format cgit_snapshot_formats[]; |
193 | 194 | ||
194 | extern struct cgit_repo *cgit_add_repo(const char *url); | 195 | extern struct cgit_repo *cgit_add_repo(const char *url); |
195 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); | 196 | extern struct cgit_repo *cgit_get_repoinfo(const char *url); |
196 | extern void cgit_repo_config_cb(const char *name, const char *value); | 197 | extern void cgit_repo_config_cb(const char *name, const char *value); |
197 | 198 | ||
198 | extern int chk_zero(int result, char *msg); | 199 | extern int chk_zero(int result, char *msg); |
199 | extern int chk_positive(int result, char *msg); | 200 | extern int chk_positive(int result, char *msg); |
200 | extern int chk_non_negative(int result, char *msg); | 201 | extern int chk_non_negative(int result, char *msg); |
201 | 202 | ||
202 | extern char *trim_end(const char *str, char c); | 203 | extern char *trim_end(const char *str, char c); |
203 | extern char *strlpart(char *txt, int maxlen); | 204 | extern char *strlpart(char *txt, int maxlen); |
204 | extern char *strrpart(char *txt, int maxlen); | 205 | extern char *strrpart(char *txt, int maxlen); |
205 | 206 | ||
206 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); | 207 | extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); |
207 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, | 208 | extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, |
208 | int flags, void *cb_data); | 209 | int flags, void *cb_data); |
209 | 210 | ||
210 | extern void *cgit_free_commitinfo(struct commitinfo *info); | 211 | extern void *cgit_free_commitinfo(struct commitinfo *info); |
211 | 212 | ||
212 | extern int cgit_diff_files(const unsigned char *old_sha1, | 213 | extern int cgit_diff_files(const unsigned char *old_sha1, |
213 | const unsigned char *new_sha1, | 214 | const unsigned char *new_sha1, |
214 | linediff_fn fn); | 215 | linediff_fn fn); |
215 | 216 | ||
216 | extern void cgit_diff_tree(const unsigned char *old_sha1, | 217 | extern void cgit_diff_tree(const unsigned char *old_sha1, |
217 | const unsigned char *new_sha1, | 218 | const unsigned char *new_sha1, |
218 | filepair_fn fn, const char *prefix); | 219 | filepair_fn fn, const char *prefix); |
219 | 220 | ||
220 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); | 221 | extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); |
221 | 222 | ||
222 | extern char *fmt(const char *format,...); | 223 | extern char *fmt(const char *format,...); |
223 | 224 | ||
224 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); | 225 | extern struct commitinfo *cgit_parse_commit(struct commit *commit); |
225 | extern struct taginfo *cgit_parse_tag(struct tag *tag); | 226 | extern struct taginfo *cgit_parse_tag(struct tag *tag); |
226 | extern void cgit_parse_url(const char *url); | 227 | extern void cgit_parse_url(const char *url); |
227 | 228 | ||
228 | extern const char *cgit_repobasename(const char *reponame); | 229 | extern const char *cgit_repobasename(const char *reponame); |
229 | 230 | ||
230 | extern int cgit_parse_snapshots_mask(const char *str); | 231 | extern int cgit_parse_snapshots_mask(const char *str); |
231 | 232 | ||
232 | /* libgit.a either links against or compiles its own implementation of | 233 | /* libgit.a either links against or compiles its own implementation of |
233 | * strcasestr(), and we'd like to reuse it. Simply re-declaring it | 234 | * strcasestr(), and we'd like to reuse it. Simply re-declaring it |
234 | * seems to do the trick. | 235 | * seems to do the trick. |
235 | */ | 236 | */ |
236 | extern char *strcasestr(const char *haystack, const char *needle); | 237 | extern char *strcasestr(const char *haystack, const char *needle); |
237 | 238 | ||
238 | 239 | ||
239 | #endif /* CGIT_H */ | 240 | #endif /* CGIT_H */ |