-rw-r--r-- | ui-shared.c | 76 |
1 files changed, 40 insertions, 36 deletions
diff --git a/ui-shared.c b/ui-shared.c index 8827fff..7d7fff0 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -28,5 +28,5 @@ static char *http_date(time_t t) | |||
28 | } | 28 | } |
29 | 29 | ||
30 | void cgit_print_error(char *msg) | 30 | void cgit_print_error(const char *msg) |
31 | { | 31 | { |
32 | html("<div class='error'>"); | 32 | html("<div class='error'>"); |
@@ -134,5 +134,5 @@ char *cgit_currurl() | |||
134 | } | 134 | } |
135 | 135 | ||
136 | static void site_url(char *page, char *search, int ofs) | 136 | static void site_url(const char *page, const char *search, int ofs) |
137 | { | 137 | { |
138 | char *delim = "?"; | 138 | char *delim = "?"; |
@@ -161,6 +161,6 @@ static void site_url(char *page, char *search, int ofs) | |||
161 | } | 161 | } |
162 | 162 | ||
163 | static void site_link(char *page, char *name, char *title, char *class, | 163 | static void site_link(const char *page, const char *name, const char *title, |
164 | char *search, int ofs) | 164 | const char *class, const char *search, int ofs) |
165 | { | 165 | { |
166 | html("<a"); | 166 | html("<a"); |
@@ -182,12 +182,12 @@ static void site_link(char *page, char *name, char *title, char *class, | |||
182 | } | 182 | } |
183 | 183 | ||
184 | void cgit_index_link(char *name, char *title, char *class, char *pattern, | 184 | void cgit_index_link(const char *name, const char *title, const char *class, |
185 | int ofs) | 185 | const char *pattern, int ofs) |
186 | { | 186 | { |
187 | site_link(NULL, name, title, class, pattern, ofs); | 187 | site_link(NULL, name, title, class, pattern, ofs); |
188 | } | 188 | } |
189 | 189 | ||
190 | static char *repolink(char *title, char *class, char *page, char *head, | 190 | static char *repolink(const char *title, const char *class, const char *page, |
191 | char *path) | 191 | const char *head, const char *path) |
192 | { | 192 | { |
193 | char *delim = "?"; | 193 | char *delim = "?"; |
@@ -241,6 +241,7 @@ static char *repolink(char *title, char *class, char *page, char *head, | |||
241 | } | 241 | } |
242 | 242 | ||
243 | static void reporevlink(char *page, char *name, char *title, char *class, | 243 | static void reporevlink(const char *page, const char *name, const char *title, |
244 | char *head, char *rev, char *path) | 244 | const char *class, const char *head, const char *rev, |
245 | const char *path) | ||
245 | { | 246 | { |
246 | char *delim; | 247 | char *delim; |
@@ -257,30 +258,31 @@ static void reporevlink(char *page, char *name, char *title, char *class, | |||
257 | } | 258 | } |
258 | 259 | ||
259 | void cgit_summary_link(char *name, char *title, char *class, char *head) | 260 | void cgit_summary_link(const char *name, const char *title, const char *class, |
261 | const char *head) | ||
260 | { | 262 | { |
261 | reporevlink(NULL, name, title, class, head, NULL, NULL); | 263 | reporevlink(NULL, name, title, class, head, NULL, NULL); |
262 | } | 264 | } |
263 | 265 | ||
264 | void cgit_tag_link(char *name, char *title, char *class, char *head, | 266 | void cgit_tag_link(const char *name, const char *title, const char *class, |
265 | char *rev) | 267 | const char *head, const char *rev) |
266 | { | 268 | { |
267 | reporevlink("tag", name, title, class, head, rev, NULL); | 269 | reporevlink("tag", name, title, class, head, rev, NULL); |
268 | } | 270 | } |
269 | 271 | ||
270 | void cgit_tree_link(char *name, char *title, char *class, char *head, | 272 | void cgit_tree_link(const char *name, const char *title, const char *class, |
271 | char *rev, char *path) | 273 | const char *head, const char *rev, const char *path) |
272 | { | 274 | { |
273 | reporevlink("tree", name, title, class, head, rev, path); | 275 | reporevlink("tree", name, title, class, head, rev, path); |
274 | } | 276 | } |
275 | 277 | ||
276 | void cgit_plain_link(char *name, char *title, char *class, char *head, | 278 | void cgit_plain_link(const char *name, const char *title, const char *class, |
277 | char *rev, char *path) | 279 | const char *head, const char *rev, const char *path) |
278 | { | 280 | { |
279 | reporevlink("plain", name, title, class, head, rev, path); | 281 | reporevlink("plain", name, title, class, head, rev, path); |
280 | } | 282 | } |
281 | 283 | ||
282 | void cgit_log_link(char *name, char *title, char *class, char *head, | 284 | void cgit_log_link(const char *name, const char *title, const char *class, |
283 | char *rev, char *path, int ofs, char *grep, char *pattern, | 285 | const char *head, const char *rev, const char *path, |
284 | int showmsg) | 286 | int ofs, const char *grep, const char *pattern, int showmsg) |
285 | { | 287 | { |
286 | char *delim; | 288 | char *delim; |
@@ -317,6 +319,6 @@ void cgit_log_link(char *name, char *title, char *class, char *head, | |||
317 | } | 319 | } |
318 | 320 | ||
319 | void cgit_commit_link(char *name, char *title, char *class, char *head, | 321 | void cgit_commit_link(char *name, const char *title, const char *class, |
320 | char *rev, int toggle_ssdiff) | 322 | const char *head, const char *rev, int toggle_ssdiff) |
321 | { | 323 | { |
322 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { | 324 | if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { |
@@ -345,19 +347,20 @@ void cgit_commit_link(char *name, char *title, char *class, char *head, | |||
345 | } | 347 | } |
346 | 348 | ||
347 | void cgit_refs_link(char *name, char *title, char *class, char *head, | 349 | void cgit_refs_link(const char *name, const char *title, const char *class, |
348 | char *rev, char *path) | 350 | const char *head, const char *rev, const char *path) |
349 | { | 351 | { |
350 | reporevlink("refs", name, title, class, head, rev, path); | 352 | reporevlink("refs", name, title, class, head, rev, path); |
351 | } | 353 | } |
352 | 354 | ||
353 | void cgit_snapshot_link(char *name, char *title, char *class, char *head, | 355 | void cgit_snapshot_link(const char *name, const char *title, const char *class, |
354 | char *rev, char *archivename) | 356 | const char *head, const char *rev, |
357 | const char *archivename) | ||
355 | { | 358 | { |
356 | reporevlink("snapshot", name, title, class, head, rev, archivename); | 359 | reporevlink("snapshot", name, title, class, head, rev, archivename); |
357 | } | 360 | } |
358 | 361 | ||
359 | void cgit_diff_link(char *name, char *title, char *class, char *head, | 362 | void cgit_diff_link(const char *name, const char *title, const char *class, |
360 | char *new_rev, char *old_rev, char *path, | 363 | const char *head, const char *new_rev, const char *old_rev, |
361 | int toggle_ssdiff) | 364 | const char *path, int toggle_ssdiff) |
362 | { | 365 | { |
363 | char *delim; | 366 | char *delim; |
@@ -385,12 +388,12 @@ void cgit_diff_link(char *name, char *title, char *class, char *head, | |||
385 | } | 388 | } |
386 | 389 | ||
387 | void cgit_patch_link(char *name, char *title, char *class, char *head, | 390 | void cgit_patch_link(const char *name, const char *title, const char *class, |
388 | char *rev) | 391 | const char *head, const char *rev) |
389 | { | 392 | { |
390 | reporevlink("patch", name, title, class, head, rev, NULL); | 393 | reporevlink("patch", name, title, class, head, rev, NULL); |
391 | } | 394 | } |
392 | 395 | ||
393 | void cgit_stats_link(char *name, char *title, char *class, char *head, | 396 | void cgit_stats_link(const char *name, const char *title, const char *class, |
394 | char *path) | 397 | const char *head, const char *path) |
395 | { | 398 | { |
396 | reporevlink("stats", name, title, class, head, NULL, path); | 399 | reporevlink("stats", name, title, class, head, NULL, path); |
@@ -418,5 +421,5 @@ void cgit_object_link(struct object *obj) | |||
418 | } | 421 | } |
419 | 422 | ||
420 | void cgit_print_date(time_t secs, char *format, int local_time) | 423 | void cgit_print_date(time_t secs, const char *format, int local_time) |
421 | { | 424 | { |
422 | char buf[64]; | 425 | char buf[64]; |
@@ -433,5 +436,5 @@ void cgit_print_date(time_t secs, char *format, int local_time) | |||
433 | } | 436 | } |
434 | 437 | ||
435 | void cgit_print_age(time_t t, time_t max_relative, char *format) | 438 | void cgit_print_age(time_t t, time_t max_relative, const char *format) |
436 | { | 439 | { |
437 | time_t now, secs; | 440 | time_t now, secs; |
@@ -612,5 +615,6 @@ int print_archive_ref(const char *refname, const unsigned char *sha1, | |||
612 | } | 615 | } |
613 | 616 | ||
614 | void cgit_add_hidden_formfields(int incl_head, int incl_search, char *page) | 617 | void cgit_add_hidden_formfields(int incl_head, int incl_search, |
618 | const char *page) | ||
615 | { | 619 | { |
616 | char *url; | 620 | char *url; |