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
@@ -153,32 +153,33 @@ struct cgit_config { | |||
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; |