summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
Unidiff
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 64ee79c..71c899a 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -91,124 +91,136 @@ static char *repolink(char *title, char *class, char *page, char *head,
91 char *path) 91 char *path)
92{ 92{
93 char *delim = "?"; 93 char *delim = "?";
94 94
95 html("<a"); 95 html("<a");
96 if (title) { 96 if (title) {
97 html(" title='"); 97 html(" title='");
98 html_attr(title); 98 html_attr(title);
99 html("'"); 99 html("'");
100 } 100 }
101 if (class) { 101 if (class) {
102 html(" class='"); 102 html(" class='");
103 html_attr(class); 103 html_attr(class);
104 html("'"); 104 html("'");
105 } 105 }
106 html(" href='"); 106 html(" href='");
107 if (cgit_virtual_root) { 107 if (cgit_virtual_root) {
108 html_attr(cgit_virtual_root); 108 html_attr(cgit_virtual_root);
109 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/') 109 if (cgit_virtual_root[strlen(cgit_virtual_root) - 1] != '/')
110 html("/"); 110 html("/");
111 html_attr(cgit_repo->url); 111 html_attr(cgit_repo->url);
112 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') 112 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
113 html("/"); 113 html("/");
114 html(page); 114 html(page);
115 html("/"); 115 html("/");
116 if (path) 116 if (path)
117 html_attr(path); 117 html_attr(path);
118 } else { 118 } else {
119 html(cgit_script_name); 119 html(cgit_script_name);
120 html("?url="); 120 html("?url=");
121 html_attr(cgit_repo->url); 121 html_attr(cgit_repo->url);
122 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') 122 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
123 html("/"); 123 html("/");
124 html(page); 124 html(page);
125 html("/"); 125 html("/");
126 if (path) 126 if (path)
127 html_attr(path); 127 html_attr(path);
128 delim = "&amp;"; 128 delim = "&amp;";
129 } 129 }
130 if (head && strcmp(head, cgit_repo->defbranch)) { 130 if (head && strcmp(head, cgit_repo->defbranch)) {
131 html(delim); 131 html(delim);
132 html("h="); 132 html("h=");
133 html_attr(head); 133 html_attr(head);
134 delim = "&amp;"; 134 delim = "&amp;";
135 } 135 }
136 return fmt("%s", delim); 136 return fmt("%s", delim);
137} 137}
138 138
139static char *reporevlink(char *page, char *name, char *title, char *class, 139static void reporevlink(char *page, char *name, char *title, char *class,
140 char *head, char *rev, char *path) 140 char *head, char *rev, char *path)
141{ 141{
142 char *delim; 142 char *delim;
143 143
144 delim = repolink(title, class, page, head, path); 144 delim = repolink(title, class, page, head, path);
145 if (rev && strcmp(rev, cgit_query_head)) { 145 if (rev && strcmp(rev, cgit_query_head)) {
146 html(delim); 146 html(delim);
147 html("id="); 147 html("id=");
148 html_attr(rev); 148 html_attr(rev);
149 } 149 }
150 html("'>"); 150 html("'>");
151 html_txt(name); 151 html_txt(name);
152 html("</a>"); 152 html("</a>");
153} 153}
154 154
155void cgit_tree_link(char *name, char *title, char *class, char *head, 155void cgit_tree_link(char *name, char *title, char *class, char *head,
156 char *rev, char *path) 156 char *rev, char *path)
157{ 157{
158 reporevlink("tree", name, title, class, head, rev, path); 158 reporevlink("tree", name, title, class, head, rev, path);
159} 159}
160 160
161void cgit_log_link(char *name, char *title, char *class, char *head, 161void cgit_log_link(char *name, char *title, char *class, char *head,
162 char *rev, char *path) 162 char *rev, char *path)
163{ 163{
164 reporevlink("log", name, title, class, head, rev, path); 164 reporevlink("log", name, title, class, head, rev, path);
165} 165}
166 166
167void cgit_commit_link(char *name, char *title, char *class, char *head,
168 char *rev)
169{
170 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) {
171 name[cgit_max_msg_len] = '\0';
172 name[cgit_max_msg_len - 1] = '.';
173 name[cgit_max_msg_len - 2] = '.';
174 name[cgit_max_msg_len - 3] = '.';
175 }
176 reporevlink("commit", name, title, class, head, rev, NULL);
177}
178
167void cgit_print_date(time_t secs, char *format) 179void cgit_print_date(time_t secs, char *format)
168{ 180{
169 char buf[64]; 181 char buf[64];
170 struct tm *time; 182 struct tm *time;
171 183
172 time = gmtime(&secs); 184 time = gmtime(&secs);
173 strftime(buf, sizeof(buf)-1, format, time); 185 strftime(buf, sizeof(buf)-1, format, time);
174 html_txt(buf); 186 html_txt(buf);
175} 187}
176 188
177void cgit_print_age(time_t t, time_t max_relative, char *format) 189void cgit_print_age(time_t t, time_t max_relative, char *format)
178{ 190{
179 time_t now, secs; 191 time_t now, secs;
180 192
181 time(&now); 193 time(&now);
182 secs = now - t; 194 secs = now - t;
183 195
184 if (secs > max_relative && max_relative >= 0) { 196 if (secs > max_relative && max_relative >= 0) {
185 cgit_print_date(t, format); 197 cgit_print_date(t, format);
186 return; 198 return;
187 } 199 }
188 200
189 if (secs < TM_HOUR * 2) { 201 if (secs < TM_HOUR * 2) {
190 htmlf("<span class='age-mins'>%.0f min.</span>", 202 htmlf("<span class='age-mins'>%.0f min.</span>",
191 secs * 1.0 / TM_MIN); 203 secs * 1.0 / TM_MIN);
192 return; 204 return;
193 } 205 }
194 if (secs < TM_DAY * 2) { 206 if (secs < TM_DAY * 2) {
195 htmlf("<span class='age-hours'>%.0f hours</span>", 207 htmlf("<span class='age-hours'>%.0f hours</span>",
196 secs * 1.0 / TM_HOUR); 208 secs * 1.0 / TM_HOUR);
197 return; 209 return;
198 } 210 }
199 if (secs < TM_WEEK * 2) { 211 if (secs < TM_WEEK * 2) {
200 htmlf("<span class='age-days'>%.0f days</span>", 212 htmlf("<span class='age-days'>%.0f days</span>",
201 secs * 1.0 / TM_DAY); 213 secs * 1.0 / TM_DAY);
202 return; 214 return;
203 } 215 }
204 if (secs < TM_MONTH * 2) { 216 if (secs < TM_MONTH * 2) {
205 htmlf("<span class='age-weeks'>%.0f weeks</span>", 217 htmlf("<span class='age-weeks'>%.0f weeks</span>",
206 secs * 1.0 / TM_WEEK); 218 secs * 1.0 / TM_WEEK);
207 return; 219 return;
208 } 220 }
209 if (secs < TM_YEAR * 2) { 221 if (secs < TM_YEAR * 2) {
210 htmlf("<span class='age-months'>%.0f months</span>", 222 htmlf("<span class='age-months'>%.0f months</span>",
211 secs * 1.0 / TM_MONTH); 223 secs * 1.0 / TM_MONTH);
212 return; 224 return;
213 } 225 }
214 htmlf("<span class='age-years'>%.0f years</span>", 226 htmlf("<span class='age-years'>%.0f years</span>",