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
@@ -144,48 +144,49 @@ struct cgit_config { | |||
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; |