author | Jonathan Bastien-Filiatrault <joe@x2a.org> | 2007-10-26 22:09:06 (UTC) |
---|---|---|
committer | Jonathan Bastien-Filiatrault <joe@x2a.org> | 2007-11-05 23:13:30 (UTC) |
commit | 3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b (patch) (unidiff) | |
tree | 548671b6339e9a1a252ded4d534f11bfcd560043 | |
parent | 72ede12551af320b6d8eade853dbd2cd6f2222cc (diff) | |
download | cgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.zip cgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.tar.gz cgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.tar.bz2 |
Add commit->msg_encoding, allocate msg dynamicly.
-rw-r--r-- | cgit.h | 6 | ||||
-rw-r--r-- | parsing.c | 1 | ||||
-rw-r--r-- | shared.c | 2 | ||||
-rw-r--r-- | ui-shared.c | 2 |
4 files changed, 10 insertions, 1 deletions
@@ -3,138 +3,144 @@ | |||
3 | 3 | ||
4 | 4 | ||
5 | #include <git-compat-util.h> | 5 | #include <git-compat-util.h> |
6 | #include <cache.h> | 6 | #include <cache.h> |
7 | #include <grep.h> | 7 | #include <grep.h> |
8 | #include <object.h> | 8 | #include <object.h> |
9 | #include <tree.h> | 9 | #include <tree.h> |
10 | #include <commit.h> | 10 | #include <commit.h> |
11 | #include <tag.h> | 11 | #include <tag.h> |
12 | #include <diff.h> | 12 | #include <diff.h> |
13 | #include <diffcore.h> | 13 | #include <diffcore.h> |
14 | #include <refs.h> | 14 | #include <refs.h> |
15 | #include <revision.h> | 15 | #include <revision.h> |
16 | #include <log-tree.h> | 16 | #include <log-tree.h> |
17 | #include <archive.h> | 17 | #include <archive.h> |
18 | #include <xdiff/xdiff.h> | 18 | #include <xdiff/xdiff.h> |
19 | 19 | ||
20 | 20 | ||
21 | /* | 21 | /* |
22 | * The valid cgit repo-commands | 22 | * The valid cgit repo-commands |
23 | */ | 23 | */ |
24 | #define CMD_LOG 1 | 24 | #define CMD_LOG 1 |
25 | #define CMD_COMMIT 2 | 25 | #define CMD_COMMIT 2 |
26 | #define CMD_DIFF 3 | 26 | #define CMD_DIFF 3 |
27 | #define CMD_TREE 4 | 27 | #define CMD_TREE 4 |
28 | #define CMD_BLOB 5 | 28 | #define CMD_BLOB 5 |
29 | #define CMD_SNAPSHOT 6 | 29 | #define CMD_SNAPSHOT 6 |
30 | #define CMD_TAG 7 | 30 | #define CMD_TAG 7 |
31 | #define CMD_REFS 8 | 31 | #define CMD_REFS 8 |
32 | 32 | ||
33 | /* | 33 | /* |
34 | * Dateformats used on misc. pages | 34 | * Dateformats used on misc. pages |
35 | */ | 35 | */ |
36 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S" | 36 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S" |
37 | #define FMT_SHORTDATE "%Y-%m-%d" | 37 | #define FMT_SHORTDATE "%Y-%m-%d" |
38 | 38 | ||
39 | 39 | ||
40 | /* | 40 | /* |
41 | * Limits used for relative dates | 41 | * Limits used for relative dates |
42 | */ | 42 | */ |
43 | #define TM_MIN 60 | 43 | #define TM_MIN 60 |
44 | #define TM_HOUR (TM_MIN * 60) | 44 | #define TM_HOUR (TM_MIN * 60) |
45 | #define TM_DAY (TM_HOUR * 24) | 45 | #define TM_DAY (TM_HOUR * 24) |
46 | #define TM_WEEK (TM_DAY * 7) | 46 | #define TM_WEEK (TM_DAY * 7) |
47 | #define TM_YEAR (TM_DAY * 365) | 47 | #define TM_YEAR (TM_DAY * 365) |
48 | #define TM_MONTH (TM_YEAR / 12.0) | 48 | #define TM_MONTH (TM_YEAR / 12.0) |
49 | 49 | ||
50 | 50 | ||
51 | /* | ||
52 | * Default encoding | ||
53 | */ | ||
54 | #define PAGE_ENCODING "UTF-8" | ||
55 | |||
51 | typedef void (*configfn)(const char *name, const char *value); | 56 | typedef void (*configfn)(const char *name, const char *value); |
52 | typedef void (*filepair_fn)(struct diff_filepair *pair); | 57 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
53 | typedef void (*linediff_fn)(char *line, int len); | 58 | typedef void (*linediff_fn)(char *line, int len); |
54 | 59 | ||
55 | struct cacheitem { | 60 | struct cacheitem { |
56 | char *name; | 61 | char *name; |
57 | struct stat st; | 62 | struct stat st; |
58 | int ttl; | 63 | int ttl; |
59 | int fd; | 64 | int fd; |
60 | }; | 65 | }; |
61 | 66 | ||
62 | struct repoinfo { | 67 | struct repoinfo { |
63 | char *url; | 68 | char *url; |
64 | char *name; | 69 | char *name; |
65 | char *path; | 70 | char *path; |
66 | char *desc; | 71 | char *desc; |
67 | char *owner; | 72 | char *owner; |
68 | char *defbranch; | 73 | char *defbranch; |
69 | char *group; | 74 | char *group; |
70 | char *module_link; | 75 | char *module_link; |
71 | char *readme; | 76 | char *readme; |
72 | int snapshots; | 77 | int snapshots; |
73 | int enable_log_filecount; | 78 | int enable_log_filecount; |
74 | int enable_log_linecount; | 79 | int enable_log_linecount; |
75 | }; | 80 | }; |
76 | 81 | ||
77 | struct repolist { | 82 | struct repolist { |
78 | int length; | 83 | int length; |
79 | int count; | 84 | int count; |
80 | struct repoinfo *repos; | 85 | struct repoinfo *repos; |
81 | }; | 86 | }; |
82 | 87 | ||
83 | struct commitinfo { | 88 | struct commitinfo { |
84 | struct commit *commit; | 89 | struct commit *commit; |
85 | char *author; | 90 | char *author; |
86 | char *author_email; | 91 | char *author_email; |
87 | unsigned long author_date; | 92 | unsigned long author_date; |
88 | char *committer; | 93 | char *committer; |
89 | char *committer_email; | 94 | char *committer_email; |
90 | unsigned long committer_date; | 95 | unsigned long committer_date; |
91 | char *subject; | 96 | char *subject; |
92 | char *msg; | 97 | char *msg; |
98 | char *msg_encoding; | ||
93 | }; | 99 | }; |
94 | 100 | ||
95 | struct taginfo { | 101 | struct taginfo { |
96 | char *tagger; | 102 | char *tagger; |
97 | char *tagger_email; | 103 | char *tagger_email; |
98 | int tagger_date; | 104 | int tagger_date; |
99 | char *msg; | 105 | char *msg; |
100 | }; | 106 | }; |
101 | 107 | ||
102 | struct refinfo { | 108 | struct refinfo { |
103 | const char *refname; | 109 | const char *refname; |
104 | struct object *object; | 110 | struct object *object; |
105 | union { | 111 | union { |
106 | struct taginfo *tag; | 112 | struct taginfo *tag; |
107 | struct commitinfo *commit; | 113 | struct commitinfo *commit; |
108 | }; | 114 | }; |
109 | }; | 115 | }; |
110 | 116 | ||
111 | struct reflist { | 117 | struct reflist { |
112 | struct refinfo **refs; | 118 | struct refinfo **refs; |
113 | int alloc; | 119 | int alloc; |
114 | int count; | 120 | int count; |
115 | }; | 121 | }; |
116 | 122 | ||
117 | extern const char *cgit_version; | 123 | extern const char *cgit_version; |
118 | 124 | ||
119 | extern struct repolist cgit_repolist; | 125 | extern struct repolist cgit_repolist; |
120 | extern struct repoinfo *cgit_repo; | 126 | extern struct repoinfo *cgit_repo; |
121 | extern int cgit_cmd; | 127 | extern int cgit_cmd; |
122 | 128 | ||
123 | extern char *cgit_root_title; | 129 | extern char *cgit_root_title; |
124 | extern char *cgit_css; | 130 | extern char *cgit_css; |
125 | extern char *cgit_logo; | 131 | extern char *cgit_logo; |
126 | extern char *cgit_index_header; | 132 | extern char *cgit_index_header; |
127 | extern char *cgit_index_info; | 133 | extern char *cgit_index_info; |
128 | extern char *cgit_logo_link; | 134 | extern char *cgit_logo_link; |
129 | extern char *cgit_module_link; | 135 | extern char *cgit_module_link; |
130 | extern char *cgit_agefile; | 136 | extern char *cgit_agefile; |
131 | extern char *cgit_virtual_root; | 137 | extern char *cgit_virtual_root; |
132 | extern char *cgit_script_name; | 138 | extern char *cgit_script_name; |
133 | extern char *cgit_cache_root; | 139 | extern char *cgit_cache_root; |
134 | extern char *cgit_repo_group; | 140 | extern char *cgit_repo_group; |
135 | 141 | ||
136 | extern int cgit_nocache; | 142 | extern int cgit_nocache; |
137 | extern int cgit_snapshots; | 143 | extern int cgit_snapshots; |
138 | extern int cgit_enable_index_links; | 144 | extern int cgit_enable_index_links; |
139 | extern int cgit_enable_log_filecount; | 145 | extern int cgit_enable_log_filecount; |
140 | extern int cgit_enable_log_linecount; | 146 | extern int cgit_enable_log_linecount; |
@@ -154,96 +154,97 @@ void cgit_parse_url(const char *url) | |||
154 | } | 154 | } |
155 | 155 | ||
156 | cmd = strchr(url, '/'); | 156 | cmd = strchr(url, '/'); |
157 | while (!cgit_repo && cmd) { | 157 | while (!cgit_repo && cmd) { |
158 | cmd[0] = '\0'; | 158 | cmd[0] = '\0'; |
159 | cgit_repo = cgit_get_repoinfo(url); | 159 | cgit_repo = cgit_get_repoinfo(url); |
160 | if (cgit_repo == NULL) { | 160 | if (cgit_repo == NULL) { |
161 | cmd[0] = '/'; | 161 | cmd[0] = '/'; |
162 | cmd = strchr(cmd + 1, '/'); | 162 | cmd = strchr(cmd + 1, '/'); |
163 | continue; | 163 | continue; |
164 | } | 164 | } |
165 | 165 | ||
166 | cgit_query_repo = cgit_repo->url; | 166 | cgit_query_repo = cgit_repo->url; |
167 | p = strchr(cmd + 1, '/'); | 167 | p = strchr(cmd + 1, '/'); |
168 | if (p) { | 168 | if (p) { |
169 | p[0] = '\0'; | 169 | p[0] = '\0'; |
170 | if (p[1]) | 170 | if (p[1]) |
171 | cgit_query_path = trim_end(p + 1, '/'); | 171 | cgit_query_path = trim_end(p + 1, '/'); |
172 | } | 172 | } |
173 | cgit_cmd = cgit_get_cmd_index(cmd + 1); | 173 | cgit_cmd = cgit_get_cmd_index(cmd + 1); |
174 | cgit_query_page = xstrdup(cmd + 1); | 174 | cgit_query_page = xstrdup(cmd + 1); |
175 | return; | 175 | return; |
176 | } | 176 | } |
177 | } | 177 | } |
178 | 178 | ||
179 | char *substr(const char *head, const char *tail) | 179 | char *substr(const char *head, const char *tail) |
180 | { | 180 | { |
181 | char *buf; | 181 | char *buf; |
182 | 182 | ||
183 | buf = xmalloc(tail - head + 1); | 183 | buf = xmalloc(tail - head + 1); |
184 | strncpy(buf, head, tail - head); | 184 | strncpy(buf, head, tail - head); |
185 | buf[tail - head] = '\0'; | 185 | buf[tail - head] = '\0'; |
186 | return buf; | 186 | return buf; |
187 | } | 187 | } |
188 | 188 | ||
189 | struct commitinfo *cgit_parse_commit(struct commit *commit) | 189 | struct commitinfo *cgit_parse_commit(struct commit *commit) |
190 | { | 190 | { |
191 | struct commitinfo *ret; | 191 | struct commitinfo *ret; |
192 | char *p = commit->buffer, *t = commit->buffer; | 192 | char *p = commit->buffer, *t = commit->buffer; |
193 | 193 | ||
194 | ret = xmalloc(sizeof(*ret)); | 194 | ret = xmalloc(sizeof(*ret)); |
195 | ret->commit = commit; | 195 | ret->commit = commit; |
196 | ret->author = NULL; | 196 | ret->author = NULL; |
197 | ret->author_email = NULL; | 197 | ret->author_email = NULL; |
198 | ret->committer = NULL; | 198 | ret->committer = NULL; |
199 | ret->committer_email = NULL; | 199 | ret->committer_email = NULL; |
200 | ret->subject = NULL; | 200 | ret->subject = NULL; |
201 | ret->msg = NULL; | 201 | ret->msg = NULL; |
202 | ret->msg_encoding = NULL; | ||
202 | 203 | ||
203 | if (p == NULL) | 204 | if (p == NULL) |
204 | return ret; | 205 | return ret; |
205 | 206 | ||
206 | if (strncmp(p, "tree ", 5)) | 207 | if (strncmp(p, "tree ", 5)) |
207 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); | 208 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); |
208 | else | 209 | else |
209 | p += 46; // "tree " + hex[40] + "\n" | 210 | p += 46; // "tree " + hex[40] + "\n" |
210 | 211 | ||
211 | while (!strncmp(p, "parent ", 7)) | 212 | while (!strncmp(p, "parent ", 7)) |
212 | p += 48; // "parent " + hex[40] + "\n" | 213 | p += 48; // "parent " + hex[40] + "\n" |
213 | 214 | ||
214 | if (!strncmp(p, "author ", 7)) { | 215 | if (!strncmp(p, "author ", 7)) { |
215 | p += 7; | 216 | p += 7; |
216 | t = strchr(p, '<') - 1; | 217 | t = strchr(p, '<') - 1; |
217 | ret->author = substr(p, t); | 218 | ret->author = substr(p, t); |
218 | p = t; | 219 | p = t; |
219 | t = strchr(t, '>') + 1; | 220 | t = strchr(t, '>') + 1; |
220 | ret->author_email = substr(p, t); | 221 | ret->author_email = substr(p, t); |
221 | ret->author_date = atol(++t); | 222 | ret->author_date = atol(++t); |
222 | p = strchr(t, '\n') + 1; | 223 | p = strchr(t, '\n') + 1; |
223 | } | 224 | } |
224 | 225 | ||
225 | if (!strncmp(p, "committer ", 9)) { | 226 | if (!strncmp(p, "committer ", 9)) { |
226 | p += 9; | 227 | p += 9; |
227 | t = strchr(p, '<') - 1; | 228 | t = strchr(p, '<') - 1; |
228 | ret->committer = substr(p, t); | 229 | ret->committer = substr(p, t); |
229 | p = t; | 230 | p = t; |
230 | t = strchr(t, '>') + 1; | 231 | t = strchr(t, '>') + 1; |
231 | ret->committer_email = substr(p, t); | 232 | ret->committer_email = substr(p, t); |
232 | ret->committer_date = atol(++t); | 233 | ret->committer_date = atol(++t); |
233 | p = strchr(t, '\n') + 1; | 234 | p = strchr(t, '\n') + 1; |
234 | } | 235 | } |
235 | 236 | ||
236 | while (*p && (*p != '\n')) | 237 | while (*p && (*p != '\n')) |
237 | p = strchr(p, '\n') + 1; // skip unknown header fields | 238 | p = strchr(p, '\n') + 1; // skip unknown header fields |
238 | 239 | ||
239 | while (*p == '\n') | 240 | while (*p == '\n') |
240 | p = strchr(p, '\n') + 1; | 241 | p = strchr(p, '\n') + 1; |
241 | 242 | ||
242 | t = strchr(p, '\n'); | 243 | t = strchr(p, '\n'); |
243 | if (t) { | 244 | if (t) { |
244 | if (*t == '\0') | 245 | if (*t == '\0') |
245 | ret->subject = "** empty **"; | 246 | ret->subject = "** empty **"; |
246 | else | 247 | else |
247 | ret->subject = substr(p, t); | 248 | ret->subject = substr(p, t); |
248 | p = t + 1; | 249 | p = t + 1; |
249 | 250 | ||
@@ -220,96 +220,98 @@ void cgit_global_config_cb(const char *name, const char *value) | |||
220 | else if (cgit_repo && !strcmp(name, "repo.readme") && value != NULL) { | 220 | else if (cgit_repo && !strcmp(name, "repo.readme") && value != NULL) { |
221 | if (*value == '/') | 221 | if (*value == '/') |
222 | cgit_repo->readme = xstrdup(value); | 222 | cgit_repo->readme = xstrdup(value); |
223 | else | 223 | else |
224 | cgit_repo->readme = xstrdup(fmt("%s/%s", cgit_repo->path, value)); | 224 | cgit_repo->readme = xstrdup(fmt("%s/%s", cgit_repo->path, value)); |
225 | } else if (!strcmp(name, "include")) | 225 | } else if (!strcmp(name, "include")) |
226 | cgit_read_config(value, cgit_global_config_cb); | 226 | cgit_read_config(value, cgit_global_config_cb); |
227 | } | 227 | } |
228 | 228 | ||
229 | void cgit_querystring_cb(const char *name, const char *value) | 229 | void cgit_querystring_cb(const char *name, const char *value) |
230 | { | 230 | { |
231 | if (!strcmp(name,"r")) { | 231 | if (!strcmp(name,"r")) { |
232 | cgit_query_repo = xstrdup(value); | 232 | cgit_query_repo = xstrdup(value); |
233 | cgit_repo = cgit_get_repoinfo(value); | 233 | cgit_repo = cgit_get_repoinfo(value); |
234 | } else if (!strcmp(name, "p")) { | 234 | } else if (!strcmp(name, "p")) { |
235 | cgit_query_page = xstrdup(value); | 235 | cgit_query_page = xstrdup(value); |
236 | cgit_cmd = cgit_get_cmd_index(value); | 236 | cgit_cmd = cgit_get_cmd_index(value); |
237 | } else if (!strcmp(name, "url")) { | 237 | } else if (!strcmp(name, "url")) { |
238 | cgit_parse_url(value); | 238 | cgit_parse_url(value); |
239 | } else if (!strcmp(name, "qt")) { | 239 | } else if (!strcmp(name, "qt")) { |
240 | cgit_query_grep = xstrdup(value); | 240 | cgit_query_grep = xstrdup(value); |
241 | } else if (!strcmp(name, "q")) { | 241 | } else if (!strcmp(name, "q")) { |
242 | cgit_query_search = xstrdup(value); | 242 | cgit_query_search = xstrdup(value); |
243 | } else if (!strcmp(name, "h")) { | 243 | } else if (!strcmp(name, "h")) { |
244 | cgit_query_head = xstrdup(value); | 244 | cgit_query_head = xstrdup(value); |
245 | cgit_query_has_symref = 1; | 245 | cgit_query_has_symref = 1; |
246 | } else if (!strcmp(name, "id")) { | 246 | } else if (!strcmp(name, "id")) { |
247 | cgit_query_sha1 = xstrdup(value); | 247 | cgit_query_sha1 = xstrdup(value); |
248 | cgit_query_has_sha1 = 1; | 248 | cgit_query_has_sha1 = 1; |
249 | } else if (!strcmp(name, "id2")) { | 249 | } else if (!strcmp(name, "id2")) { |
250 | cgit_query_sha2 = xstrdup(value); | 250 | cgit_query_sha2 = xstrdup(value); |
251 | cgit_query_has_sha1 = 1; | 251 | cgit_query_has_sha1 = 1; |
252 | } else if (!strcmp(name, "ofs")) { | 252 | } else if (!strcmp(name, "ofs")) { |
253 | cgit_query_ofs = atoi(value); | 253 | cgit_query_ofs = atoi(value); |
254 | } else if (!strcmp(name, "path")) { | 254 | } else if (!strcmp(name, "path")) { |
255 | cgit_query_path = trim_end(value, '/'); | 255 | cgit_query_path = trim_end(value, '/'); |
256 | } else if (!strcmp(name, "name")) { | 256 | } else if (!strcmp(name, "name")) { |
257 | cgit_query_name = xstrdup(value); | 257 | cgit_query_name = xstrdup(value); |
258 | } | 258 | } |
259 | } | 259 | } |
260 | 260 | ||
261 | void *cgit_free_commitinfo(struct commitinfo *info) | 261 | void *cgit_free_commitinfo(struct commitinfo *info) |
262 | { | 262 | { |
263 | free(info->author); | 263 | free(info->author); |
264 | free(info->author_email); | 264 | free(info->author_email); |
265 | free(info->committer); | 265 | free(info->committer); |
266 | free(info->committer_email); | 266 | free(info->committer_email); |
267 | free(info->subject); | 267 | free(info->subject); |
268 | free(info->msg); | ||
269 | free(info->msg_encoding); | ||
268 | free(info); | 270 | free(info); |
269 | return NULL; | 271 | return NULL; |
270 | } | 272 | } |
271 | 273 | ||
272 | int hextoint(char c) | 274 | int hextoint(char c) |
273 | { | 275 | { |
274 | if (c >= 'a' && c <= 'f') | 276 | if (c >= 'a' && c <= 'f') |
275 | return 10 + c - 'a'; | 277 | return 10 + c - 'a'; |
276 | else if (c >= 'A' && c <= 'F') | 278 | else if (c >= 'A' && c <= 'F') |
277 | return 10 + c - 'A'; | 279 | return 10 + c - 'A'; |
278 | else if (c >= '0' && c <= '9') | 280 | else if (c >= '0' && c <= '9') |
279 | return c - '0'; | 281 | return c - '0'; |
280 | else | 282 | else |
281 | return -1; | 283 | return -1; |
282 | } | 284 | } |
283 | 285 | ||
284 | char *trim_end(const char *str, char c) | 286 | char *trim_end(const char *str, char c) |
285 | { | 287 | { |
286 | int len; | 288 | int len; |
287 | char *s, *t; | 289 | char *s, *t; |
288 | 290 | ||
289 | if (str == NULL) | 291 | if (str == NULL) |
290 | return NULL; | 292 | return NULL; |
291 | t = (char *)str; | 293 | t = (char *)str; |
292 | len = strlen(t); | 294 | len = strlen(t); |
293 | while(len > 0 && t[len - 1] == c) | 295 | while(len > 0 && t[len - 1] == c) |
294 | len--; | 296 | len--; |
295 | 297 | ||
296 | if (len == 0) | 298 | if (len == 0) |
297 | return NULL; | 299 | return NULL; |
298 | 300 | ||
299 | c = t[len]; | 301 | c = t[len]; |
300 | t[len] = '\0'; | 302 | t[len] = '\0'; |
301 | s = xstrdup(t); | 303 | s = xstrdup(t); |
302 | t[len] = c; | 304 | t[len] = c; |
303 | return s; | 305 | return s; |
304 | } | 306 | } |
305 | 307 | ||
306 | char *strlpart(char *txt, int maxlen) | 308 | char *strlpart(char *txt, int maxlen) |
307 | { | 309 | { |
308 | char *result; | 310 | char *result; |
309 | 311 | ||
310 | if (!txt) | 312 | if (!txt) |
311 | return txt; | 313 | return txt; |
312 | 314 | ||
313 | if (strlen(txt) <= maxlen) | 315 | if (strlen(txt) <= maxlen) |
314 | return txt; | 316 | return txt; |
315 | result = xmalloc(maxlen + 1); | 317 | result = xmalloc(maxlen + 1); |
diff --git a/ui-shared.c b/ui-shared.c index 72a7b44..7c69f60 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -307,97 +307,97 @@ void cgit_print_date(time_t secs, char *format) | |||
307 | time = gmtime(&secs); | 307 | time = gmtime(&secs); |
308 | strftime(buf, sizeof(buf)-1, format, time); | 308 | strftime(buf, sizeof(buf)-1, format, time); |
309 | html_txt(buf); | 309 | html_txt(buf); |
310 | } | 310 | } |
311 | 311 | ||
312 | void cgit_print_age(time_t t, time_t max_relative, char *format) | 312 | void cgit_print_age(time_t t, time_t max_relative, char *format) |
313 | { | 313 | { |
314 | time_t now, secs; | 314 | time_t now, secs; |
315 | 315 | ||
316 | time(&now); | 316 | time(&now); |
317 | secs = now - t; | 317 | secs = now - t; |
318 | 318 | ||
319 | if (secs > max_relative && max_relative >= 0) { | 319 | if (secs > max_relative && max_relative >= 0) { |
320 | cgit_print_date(t, format); | 320 | cgit_print_date(t, format); |
321 | return; | 321 | return; |
322 | } | 322 | } |
323 | 323 | ||
324 | if (secs < TM_HOUR * 2) { | 324 | if (secs < TM_HOUR * 2) { |
325 | htmlf("<span class='age-mins'>%.0f min.</span>", | 325 | htmlf("<span class='age-mins'>%.0f min.</span>", |
326 | secs * 1.0 / TM_MIN); | 326 | secs * 1.0 / TM_MIN); |
327 | return; | 327 | return; |
328 | } | 328 | } |
329 | if (secs < TM_DAY * 2) { | 329 | if (secs < TM_DAY * 2) { |
330 | htmlf("<span class='age-hours'>%.0f hours</span>", | 330 | htmlf("<span class='age-hours'>%.0f hours</span>", |
331 | secs * 1.0 / TM_HOUR); | 331 | secs * 1.0 / TM_HOUR); |
332 | return; | 332 | return; |
333 | } | 333 | } |
334 | if (secs < TM_WEEK * 2) { | 334 | if (secs < TM_WEEK * 2) { |
335 | htmlf("<span class='age-days'>%.0f days</span>", | 335 | htmlf("<span class='age-days'>%.0f days</span>", |
336 | secs * 1.0 / TM_DAY); | 336 | secs * 1.0 / TM_DAY); |
337 | return; | 337 | return; |
338 | } | 338 | } |
339 | if (secs < TM_MONTH * 2) { | 339 | if (secs < TM_MONTH * 2) { |
340 | htmlf("<span class='age-weeks'>%.0f weeks</span>", | 340 | htmlf("<span class='age-weeks'>%.0f weeks</span>", |
341 | secs * 1.0 / TM_WEEK); | 341 | secs * 1.0 / TM_WEEK); |
342 | return; | 342 | return; |
343 | } | 343 | } |
344 | if (secs < TM_YEAR * 2) { | 344 | if (secs < TM_YEAR * 2) { |
345 | htmlf("<span class='age-months'>%.0f months</span>", | 345 | htmlf("<span class='age-months'>%.0f months</span>", |
346 | secs * 1.0 / TM_MONTH); | 346 | secs * 1.0 / TM_MONTH); |
347 | return; | 347 | return; |
348 | } | 348 | } |
349 | htmlf("<span class='age-years'>%.0f years</span>", | 349 | htmlf("<span class='age-years'>%.0f years</span>", |
350 | secs * 1.0 / TM_YEAR); | 350 | secs * 1.0 / TM_YEAR); |
351 | } | 351 | } |
352 | 352 | ||
353 | void cgit_print_docstart(char *title, struct cacheitem *item) | 353 | void cgit_print_docstart(char *title, struct cacheitem *item) |
354 | { | 354 | { |
355 | html("Content-Type: text/html; charset=utf-8\n"); | 355 | html("Content-Type: text/html; charset=" PAGE_ENCODING "\n"); |
356 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); | 356 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); |
357 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + | 357 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + |
358 | ttl_seconds(item->ttl))); | 358 | ttl_seconds(item->ttl))); |
359 | html("\n"); | 359 | html("\n"); |
360 | html(cgit_doctype); | 360 | html(cgit_doctype); |
361 | html("<html>\n"); | 361 | html("<html>\n"); |
362 | html("<head>\n"); | 362 | html("<head>\n"); |
363 | html("<title>"); | 363 | html("<title>"); |
364 | html_txt(title); | 364 | html_txt(title); |
365 | html("</title>\n"); | 365 | html("</title>\n"); |
366 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); | 366 | htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); |
367 | html("<link rel='stylesheet' type='text/css' href='"); | 367 | html("<link rel='stylesheet' type='text/css' href='"); |
368 | html_attr(cgit_css); | 368 | html_attr(cgit_css); |
369 | html("'/>\n"); | 369 | html("'/>\n"); |
370 | html("</head>\n"); | 370 | html("</head>\n"); |
371 | html("<body>\n"); | 371 | html("<body>\n"); |
372 | } | 372 | } |
373 | 373 | ||
374 | void cgit_print_docend() | 374 | void cgit_print_docend() |
375 | { | 375 | { |
376 | html("</td>\n</tr>\n<table>\n</body>\n</html>\n"); | 376 | html("</td>\n</tr>\n<table>\n</body>\n</html>\n"); |
377 | } | 377 | } |
378 | 378 | ||
379 | int print_branch_option(const char *refname, const unsigned char *sha1, | 379 | int print_branch_option(const char *refname, const unsigned char *sha1, |
380 | int flags, void *cb_data) | 380 | int flags, void *cb_data) |
381 | { | 381 | { |
382 | char *name = (char *)refname; | 382 | char *name = (char *)refname; |
383 | html_option(name, name, cgit_query_head); | 383 | html_option(name, name, cgit_query_head); |
384 | return 0; | 384 | return 0; |
385 | } | 385 | } |
386 | 386 | ||
387 | int print_archive_ref(const char *refname, const unsigned char *sha1, | 387 | int print_archive_ref(const char *refname, const unsigned char *sha1, |
388 | int flags, void *cb_data) | 388 | int flags, void *cb_data) |
389 | { | 389 | { |
390 | struct tag *tag; | 390 | struct tag *tag; |
391 | struct taginfo *info; | 391 | struct taginfo *info; |
392 | struct object *obj; | 392 | struct object *obj; |
393 | char buf[256], *url; | 393 | char buf[256], *url; |
394 | unsigned char fileid[20]; | 394 | unsigned char fileid[20]; |
395 | int *header = (int *)cb_data; | 395 | int *header = (int *)cb_data; |
396 | 396 | ||
397 | if (prefixcmp(refname, "refs/archives")) | 397 | if (prefixcmp(refname, "refs/archives")) |
398 | return 0; | 398 | return 0; |
399 | strncpy(buf, refname+14, sizeof(buf)); | 399 | strncpy(buf, refname+14, sizeof(buf)); |
400 | obj = parse_object(sha1); | 400 | obj = parse_object(sha1); |
401 | if (!obj) | 401 | if (!obj) |
402 | return 1; | 402 | return 1; |
403 | if (obj->type == OBJ_TAG) { | 403 | if (obj->type == OBJ_TAG) { |