summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c41
1 files changed, 37 insertions, 4 deletions
diff --git a/ui-shared.c b/ui-shared.c
index fd71c12..ca2ee82 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -28,82 +28,113 @@ static char *http_date(time_t t)
28static long ttl_seconds(long ttl) 28static long ttl_seconds(long ttl)
29{ 29{
30 if (ttl<0) 30 if (ttl<0)
31 return 60 * 60 * 24 * 365; 31 return 60 * 60 * 24 * 365;
32 else 32 else
33 return ttl * 60; 33 return ttl * 60;
34} 34}
35 35
36void cgit_print_error(char *msg) 36void 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 42
43char *cgit_rooturl() 43char *cgit_rooturl()
44{ 44{
45 if (cgit_virtual_root) 45 if (cgit_virtual_root)
46 return fmt("%s/", cgit_virtual_root); 46 return fmt("%s/", cgit_virtual_root);
47 else 47 else
48 return cgit_script_name; 48 return cgit_script_name;
49} 49}
50 50
51char *cgit_repourl(const char *reponame) 51char *cgit_repourl(const char *reponame)
52{ 52{
53 if (cgit_virtual_root) { 53 if (cgit_virtual_root) {
54 return fmt("%s/%s/", cgit_virtual_root, reponame); 54 return fmt("%s/%s/", cgit_virtual_root, reponame);
55 } else { 55 } else {
56 return fmt("?r=%s", reponame); 56 return fmt("?r=%s", reponame);
57 } 57 }
58} 58}
59 59
60char *cgit_pageurl(const char *reponame, const char *pagename, 60char *cgit_fileurl(const char *reponame, const char *pagename,
61 const char *query) 61 const char *filename, const char *query)
62{ 62{
63 if (cgit_virtual_root) { 63 if (cgit_virtual_root) {
64 if (query) 64 if (query)
65 return fmt("%s/%s/%s/?%s", cgit_virtual_root, reponame, 65 return fmt("%s/%s/%s/%s?%s", cgit_virtual_root, reponame,
66 pagename, query); 66 pagename, filename?filename:"", query);
67 else 67 else
68 return fmt("%s/%s/%s/", cgit_virtual_root, reponame, 68 return fmt("%s/%s/%s/", cgit_virtual_root, reponame,
69 pagename); 69 pagename);
70 } else { 70 } else {
71 if (query) 71 if (query)
72 return fmt("?r=%s&amp;p=%s&amp;%s", reponame, pagename, query); 72 return fmt("?r=%s&amp;p=%s&amp;%s", reponame, pagename, query);
73 else 73 else
74 return fmt("?r=%s&amp;p=%s", reponame, pagename); 74 return fmt("?r=%s&amp;p=%s", reponame, pagename);
75 } 75 }
76} 76}
77 77
78char *cgit_pageurl(const char *reponame, const char *pagename,
79 const char *query)
80{
81 return cgit_fileurl(reponame,pagename,0,query);
82}
83
84const char *cgit_repobasename(const char *reponame)
85{
86 /* I assume we don't need to store more than one repo basename */
87 static char rvbuf[1024];
88 int p;
89 const char *rv;
90 strncpy(rvbuf,reponame,sizeof(rvbuf));
91 if(rvbuf[sizeof(rvbuf)-1])
92 die("cgit_repobasename: truncated repository name '%s'", reponame);
93 p = strlen(rvbuf)-1;
94 /* strip trailing slashes */
95 while(p && rvbuf[p]=='/') rvbuf[p--]=0;
96 /* strip trailing .git */
97 if(p>=3 && !strncmp(&rvbuf[p-3],".git",4)) {
98 p -= 3; rvbuf[p--] = 0;
99 }
100 /* strip more trailing slashes if any */
101 while( p && rvbuf[p]=='/') rvbuf[p--]=0;
102 /* find last slash in the remaining string */
103 rv = strrchr(rvbuf,'/');
104 if(rv)
105 return ++rv;
106 return rvbuf;
107}
108
78char *cgit_currurl() 109char *cgit_currurl()
79{ 110{
80 if (!cgit_virtual_root) 111 if (!cgit_virtual_root)
81 return cgit_script_name; 112 return cgit_script_name;
82 else if (cgit_query_page) 113 else if (cgit_query_page)
83 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page); 114 return fmt("%s/%s/%s/", cgit_virtual_root, cgit_query_repo, cgit_query_page);
84 else if (cgit_query_repo) 115 else if (cgit_query_repo)
85 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo); 116 return fmt("%s/%s/", cgit_virtual_root, cgit_query_repo);
86 else 117 else
87 return fmt("%s/", cgit_virtual_root); 118 return fmt("%s/", cgit_virtual_root);
88} 119}
89 120
90static char *repolink(char *title, char *class, char *page, char *head, 121static char *repolink(char *title, char *class, char *page, char *head,
91 char *path) 122 char *path)
92{ 123{
93 char *delim = "?"; 124 char *delim = "?";
94 125
95 html("<a"); 126 html("<a");
96 if (title) { 127 if (title) {
97 html(" title='"); 128 html(" title='");
98 html_attr(title); 129 html_attr(title);
99 html("'"); 130 html("'");
100 } 131 }
101 if (class) { 132 if (class) {
102 html(" class='"); 133 html(" class='");
103 html_attr(class); 134 html_attr(class);
104 html("'"); 135 html("'");
105 } 136 }
106 html(" href='"); 137 html(" href='");
107 if (cgit_virtual_root) { 138 if (cgit_virtual_root) {
108 html_attr(cgit_virtual_root); 139 html_attr(cgit_virtual_root);
109 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/') 140 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/')
@@ -363,32 +394,34 @@ void cgit_print_pageheader(char *title, int show_search)
363 html_attr(cgit_currurl()); 394 html_attr(cgit_currurl());
364 html("'>"); 395 html("'>");
365 if (!cgit_virtual_root) { 396 if (!cgit_virtual_root) {
366 if (cgit_query_repo) 397 if (cgit_query_repo)
367 html_hidden("r", cgit_query_repo); 398 html_hidden("r", cgit_query_repo);
368 if (cgit_query_page) 399 if (cgit_query_page)
369 html_hidden("p", cgit_query_page); 400 html_hidden("p", cgit_query_page);
370 } 401 }
371 if (cgit_query_head) 402 if (cgit_query_head)
372 html_hidden("h", cgit_query_head); 403 html_hidden("h", cgit_query_head);
373 if (cgit_query_sha1) 404 if (cgit_query_sha1)
374 html_hidden("id", cgit_query_sha1); 405 html_hidden("id", cgit_query_sha1);
375 if (cgit_query_sha2) 406 if (cgit_query_sha2)
376 html_hidden("id2", cgit_query_sha2); 407 html_hidden("id2", cgit_query_sha2);
377 html("<input type='text' name='q' value='"); 408 html("<input type='text' name='q' value='");
378 html_attr(cgit_query_search); 409 html_attr(cgit_query_search);
379 html("'/></form>"); 410 html("'/></form>");
380 } 411 }
381 html("</td></tr>"); 412 html("</td></tr>");
382 html("<tr><td id='content' colspan='2'>"); 413 html("<tr><td id='content' colspan='2'>");
383} 414}
384 415
385void cgit_print_snapshot_start(const char *mimetype, const char *filename, 416void cgit_print_snapshot_start(const char *mimetype, const char *filename,
386 struct cacheitem *item) 417 struct cacheitem *item)
387{ 418{
388 htmlf("Content-Type: %s\n", mimetype); 419 htmlf("Content-Type: %s\n", mimetype);
389 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename); 420 htmlf("Content-Disposition: inline; filename=\"%s\"\n", filename);
390 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); 421 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
391 htmlf("Expires: %s\n", http_date(item->st.st_mtime + 422 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
392 ttl_seconds(item->ttl))); 423 ttl_seconds(item->ttl)));
393 html("\n"); 424 html("\n");
394} 425}
426
427/* vim:set sw=8: */