-rw-r--r-- | ui-shared.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index e795043..cb8a8df 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -34,16 +34,37 @@ static int ttl_seconds(int ttl) | |||
34 | } | 34 | } |
35 | 35 | ||
36 | void cgit_print_error(char *msg) | 36 | void cgit_print_error(char *msg) |
37 | { | 37 | { |
38 | html("<div class='error'>"); | 38 | html("<div class='error'>"); |
39 | html_txt(msg); | 39 | html_txt(msg); |
40 | html("</div>\n"); | 40 | html("</div>\n"); |
41 | } | 41 | } |
42 | |||
43 | char *cgit_repourl(const char *reponame) | ||
44 | { | ||
45 | if (cgit_virtual_root) { | ||
46 | return fmt("%s/%s/", cgit_virtual_root, reponame); | ||
47 | } else { | ||
48 | return fmt("?r=%s", reponame); | ||
49 | } | ||
50 | } | ||
51 | |||
52 | char *cgit_pageurl(const char *reponame, const char *pagename, | ||
53 | const char *query) | ||
54 | { | ||
55 | if (cgit_virtual_root) { | ||
56 | return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame, | ||
57 | pagename, query); | ||
58 | } else { | ||
59 | return fmt("?r=%s&p=%s&%s", reponame, pagename, query); | ||
60 | } | ||
61 | } | ||
62 | |||
42 | void cgit_print_docstart(char *title, struct cacheitem *item) | 63 | void cgit_print_docstart(char *title, struct cacheitem *item) |
43 | { | 64 | { |
44 | html("Content-Type: text/html; charset=utf-8\n"); | 65 | html("Content-Type: text/html; charset=utf-8\n"); |
45 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); | 66 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); |
46 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + | 67 | htmlf("Expires: %s\n", http_date(item->st.st_mtime + |
47 | ttl_seconds(item->ttl))); | 68 | ttl_seconds(item->ttl))); |
48 | html("\n"); | 69 | html("\n"); |
49 | html(cgit_doctype); | 70 | html(cgit_doctype); |