]>
git.cameronkatri.com Git - cgit.git/blob - ui-shared.c
1 /* ui-shared.c: common web output functions
3 * Copyright (C) 2006 Lars Hjemli
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
11 const char cgit_doctype
[] =
12 "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n"
13 " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
15 static char *http_date(time_t t
)
17 static char day
[][4] =
18 {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
19 static char month
[][4] =
20 {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
21 "Jul", "Aug", "Sep", "Oct", "Now", "Dec"};
22 struct tm
*tm
= gmtime(&t
);
23 return fmt("%s, %02d %s %04d %02d:%02d:%02d GMT", day
[tm
->tm_wday
],
24 tm
->tm_mday
, month
[tm
->tm_mon
], 1900+tm
->tm_year
,
25 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
28 static long ttl_seconds(long ttl
)
31 return 60 * 60 * 24 * 365;
36 void cgit_print_error(char *msg
)
38 html("<div class='error'>");
43 char *cgit_repourl(const char *reponame
)
45 if (cgit_virtual_root
) {
46 return fmt("%s/%s/", cgit_virtual_root
, reponame
);
48 return fmt("?r=%s", reponame
);
52 char *cgit_pageurl(const char *reponame
, const char *pagename
,
55 if (cgit_virtual_root
) {
56 return fmt("%s/%s/%s/?%s", cgit_virtual_root
, reponame
,
59 return fmt("?r=%s&p=%s&%s", reponame
, pagename
, query
);
65 if (!cgit_virtual_root
)
67 else if (cgit_query_page
)
68 return fmt("%s/%s/%s/", cgit_virtual_root
, cgit_query_repo
, cgit_query_page
);
69 else if (cgit_query_repo
)
70 return fmt("%s/%s/", cgit_virtual_root
, cgit_query_repo
);
72 return fmt("%s/", cgit_virtual_root
);
76 void cgit_print_date(unsigned long secs
)
82 strftime(buf
, sizeof(buf
), "%Y-%m-%d %H:%M:%S", time
);
87 void cgit_print_docstart(char *title
, struct cacheitem
*item
)
89 html("Content-Type: text/html; charset=utf-8\n");
90 htmlf("Last-Modified: %s\n", http_date(item
->st
.st_mtime
));
91 htmlf("Expires: %s\n", http_date(item
->st
.st_mtime
+
92 ttl_seconds(item
->ttl
)));
100 htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version
);
101 html("<link rel='stylesheet' type='text/css' href='");
108 void cgit_print_docend()
110 html("</td></tr></table>");
111 html("</body>\n</html>\n");
114 void cgit_print_pageheader(char *title
, int show_search
)
116 html("<table id='layout'><tr><td id='header'>");
117 htmlf("<a href='%s'>", cgit_logo_link
);
118 htmlf("<img id='logo' src='%s'/>\n", cgit_logo
);
121 html("<form method='get' href='");
122 html_attr(cgit_currurl());
124 if (!cgit_virtual_root
) {
126 html_hidden("r", cgit_query_repo
);
128 html_hidden("p", cgit_query_page
);
131 html_hidden("h", cgit_query_head
);
133 html_hidden("id", cgit_query_sha1
);
135 html_hidden("id2", cgit_query_sha2
);
136 html("<input type='text' name='q' value='");
137 html_attr(cgit_query_search
);
141 htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo
));
145 html("</td></tr><tr><td id='content'>");