summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
authorLars Hjemli <hjemli@gmail.com>2007-07-22 21:42:55 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-07-22 21:44:57 (UTC)
commit4e9107abfe8d3edff17826875b417bcf40dc7390 (patch) (unidiff)
tree96cfafa9b8838f34e1363ee3019eae64a6229b30 /ui-shared.c
parent71ebcbe23ab548e5c0ad40aa8be5741654ed3201 (diff)
downloadcgit-4e9107abfe8d3edff17826875b417bcf40dc7390.zip
cgit-4e9107abfe8d3edff17826875b417bcf40dc7390.tar.gz
cgit-4e9107abfe8d3edff17826875b417bcf40dc7390.tar.bz2
Add ui-tag.c
This file implements the tag-command, i.e. printing of annotated tags. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-shared.c') (more/less context) (ignore whitespace changes)
-rw-r--r--ui-shared.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index d4376ce..fd71c12 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -93,256 +93,280 @@ static char *repolink(char *title, char *class, char *page, char *head,
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 if (page) { 114 if (page) {
115 html(page); 115 html(page);
116 html("/"); 116 html("/");
117 if (path) 117 if (path)
118 html_attr(path); 118 html_attr(path);
119 } 119 }
120 } else { 120 } else {
121 html(cgit_script_name); 121 html(cgit_script_name);
122 html("?url="); 122 html("?url=");
123 html_attr(cgit_repo->url); 123 html_attr(cgit_repo->url);
124 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/') 124 if (cgit_repo->url[strlen(cgit_repo->url) - 1] != '/')
125 html("/"); 125 html("/");
126 if (page) { 126 if (page) {
127 html(page); 127 html(page);
128 html("/"); 128 html("/");
129 if (path) 129 if (path)
130 html_attr(path); 130 html_attr(path);
131 } 131 }
132 delim = "&amp;"; 132 delim = "&amp;";
133 } 133 }
134 if (head && strcmp(head, cgit_repo->defbranch)) { 134 if (head && strcmp(head, cgit_repo->defbranch)) {
135 html(delim); 135 html(delim);
136 html("h="); 136 html("h=");
137 html_attr(head); 137 html_attr(head);
138 delim = "&amp;"; 138 delim = "&amp;";
139 } 139 }
140 return fmt("%s", delim); 140 return fmt("%s", delim);
141} 141}
142 142
143static void reporevlink(char *page, char *name, char *title, char *class, 143static void reporevlink(char *page, char *name, char *title, char *class,
144 char *head, char *rev, char *path) 144 char *head, char *rev, char *path)
145{ 145{
146 char *delim; 146 char *delim;
147 147
148 delim = repolink(title, class, page, head, path); 148 delim = repolink(title, class, page, head, path);
149 if (rev && strcmp(rev, cgit_query_head)) { 149 if (rev && strcmp(rev, cgit_query_head)) {
150 html(delim); 150 html(delim);
151 html("id="); 151 html("id=");
152 html_attr(rev); 152 html_attr(rev);
153 } 153 }
154 html("'>"); 154 html("'>");
155 html_txt(name); 155 html_txt(name);
156 html("</a>"); 156 html("</a>");
157} 157}
158 158
159void cgit_tree_link(char *name, char *title, char *class, char *head, 159void cgit_tree_link(char *name, char *title, char *class, char *head,
160 char *rev, char *path) 160 char *rev, char *path)
161{ 161{
162 reporevlink("tree", name, title, class, head, rev, path); 162 reporevlink("tree", name, title, class, head, rev, path);
163} 163}
164 164
165void cgit_log_link(char *name, char *title, char *class, char *head, 165void cgit_log_link(char *name, char *title, char *class, char *head,
166 char *rev, char *path, int ofs) 166 char *rev, char *path, int ofs)
167{ 167{
168 char *delim; 168 char *delim;
169 169
170 delim = repolink(title, class, "log", head, path); 170 delim = repolink(title, class, "log", head, path);
171 if (rev && strcmp(rev, cgit_query_head)) { 171 if (rev && strcmp(rev, cgit_query_head)) {
172 html(delim); 172 html(delim);
173 html("id="); 173 html("id=");
174 html_attr(rev); 174 html_attr(rev);
175 delim = "&"; 175 delim = "&";
176 } 176 }
177 if (ofs > 0) { 177 if (ofs > 0) {
178 html(delim); 178 html(delim);
179 html("ofs="); 179 html("ofs=");
180 htmlf("%d", ofs); 180 htmlf("%d", ofs);
181 } 181 }
182 html("'>"); 182 html("'>");
183 html_txt(name); 183 html_txt(name);
184 html("</a>"); 184 html("</a>");
185} 185}
186 186
187void cgit_commit_link(char *name, char *title, char *class, char *head, 187void cgit_commit_link(char *name, char *title, char *class, char *head,
188 char *rev) 188 char *rev)
189{ 189{
190 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) { 190 if (strlen(name) > cgit_max_msg_len && cgit_max_msg_len >= 15) {
191 name[cgit_max_msg_len] = '\0'; 191 name[cgit_max_msg_len] = '\0';
192 name[cgit_max_msg_len - 1] = '.'; 192 name[cgit_max_msg_len - 1] = '.';
193 name[cgit_max_msg_len - 2] = '.'; 193 name[cgit_max_msg_len - 2] = '.';
194 name[cgit_max_msg_len - 3] = '.'; 194 name[cgit_max_msg_len - 3] = '.';
195 } 195 }
196 reporevlink("commit", name, title, class, head, rev, NULL); 196 reporevlink("commit", name, title, class, head, rev, NULL);
197} 197}
198 198
199void cgit_diff_link(char *name, char *title, char *class, char *head, 199void cgit_diff_link(char *name, char *title, char *class, char *head,
200 char *new_rev, char *old_rev, char *path) 200 char *new_rev, char *old_rev, char *path)
201{ 201{
202 char *delim; 202 char *delim;
203 203
204 delim = repolink(title, class, "diff", head, path); 204 delim = repolink(title, class, "diff", head, path);
205 if (new_rev && strcmp(new_rev, cgit_query_head)) { 205 if (new_rev && strcmp(new_rev, cgit_query_head)) {
206 html(delim); 206 html(delim);
207 html("id="); 207 html("id=");
208 html_attr(new_rev); 208 html_attr(new_rev);
209 delim = "&amp;"; 209 delim = "&amp;";
210 } 210 }
211 if (old_rev) { 211 if (old_rev) {
212 html(delim); 212 html(delim);
213 html("id2="); 213 html("id2=");
214 html_attr(old_rev); 214 html_attr(old_rev);
215 } 215 }
216 html("'>"); 216 html("'>");
217 html_txt(name); 217 html_txt(name);
218 html("</a>"); 218 html("</a>");
219} 219}
220 220
221void cgit_object_link(struct object *obj)
222{
223 char *page, *arg, *url;
224
225 if (obj->type == OBJ_COMMIT) {
226 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
227 cgit_query_head, sha1_to_hex(obj->sha1));
228 return;
229 } else if (obj->type == OBJ_TREE) {
230 page = "tree";
231 arg = "id";
232 } else {
233 page = "blob";
234 arg = "id";
235 }
236
237 url = cgit_pageurl(cgit_query_repo, page,
238 fmt("%s=%s", arg, sha1_to_hex(obj->sha1)));
239 html_link_open(url, NULL, NULL);
240 htmlf("%s %s", typename(obj->type),
241 sha1_to_hex(obj->sha1));
242 html_link_close();
243}
244
221void cgit_print_date(time_t secs, char *format) 245void cgit_print_date(time_t secs, char *format)
222{ 246{
223 char buf[64]; 247 char buf[64];
224 struct tm *time; 248 struct tm *time;
225 249
226 time = gmtime(&secs); 250 time = gmtime(&secs);
227 strftime(buf, sizeof(buf)-1, format, time); 251 strftime(buf, sizeof(buf)-1, format, time);
228 html_txt(buf); 252 html_txt(buf);
229} 253}
230 254
231void cgit_print_age(time_t t, time_t max_relative, char *format) 255void cgit_print_age(time_t t, time_t max_relative, char *format)
232{ 256{
233 time_t now, secs; 257 time_t now, secs;
234 258
235 time(&now); 259 time(&now);
236 secs = now - t; 260 secs = now - t;
237 261
238 if (secs > max_relative && max_relative >= 0) { 262 if (secs > max_relative && max_relative >= 0) {
239 cgit_print_date(t, format); 263 cgit_print_date(t, format);
240 return; 264 return;
241 } 265 }
242 266
243 if (secs < TM_HOUR * 2) { 267 if (secs < TM_HOUR * 2) {
244 htmlf("<span class='age-mins'>%.0f min.</span>", 268 htmlf("<span class='age-mins'>%.0f min.</span>",
245 secs * 1.0 / TM_MIN); 269 secs * 1.0 / TM_MIN);
246 return; 270 return;
247 } 271 }
248 if (secs < TM_DAY * 2) { 272 if (secs < TM_DAY * 2) {
249 htmlf("<span class='age-hours'>%.0f hours</span>", 273 htmlf("<span class='age-hours'>%.0f hours</span>",
250 secs * 1.0 / TM_HOUR); 274 secs * 1.0 / TM_HOUR);
251 return; 275 return;
252 } 276 }
253 if (secs < TM_WEEK * 2) { 277 if (secs < TM_WEEK * 2) {
254 htmlf("<span class='age-days'>%.0f days</span>", 278 htmlf("<span class='age-days'>%.0f days</span>",
255 secs * 1.0 / TM_DAY); 279 secs * 1.0 / TM_DAY);
256 return; 280 return;
257 } 281 }
258 if (secs < TM_MONTH * 2) { 282 if (secs < TM_MONTH * 2) {
259 htmlf("<span class='age-weeks'>%.0f weeks</span>", 283 htmlf("<span class='age-weeks'>%.0f weeks</span>",
260 secs * 1.0 / TM_WEEK); 284 secs * 1.0 / TM_WEEK);
261 return; 285 return;
262 } 286 }
263 if (secs < TM_YEAR * 2) { 287 if (secs < TM_YEAR * 2) {
264 htmlf("<span class='age-months'>%.0f months</span>", 288 htmlf("<span class='age-months'>%.0f months</span>",
265 secs * 1.0 / TM_MONTH); 289 secs * 1.0 / TM_MONTH);
266 return; 290 return;
267 } 291 }
268 htmlf("<span class='age-years'>%.0f years</span>", 292 htmlf("<span class='age-years'>%.0f years</span>",
269 secs * 1.0 / TM_YEAR); 293 secs * 1.0 / TM_YEAR);
270} 294}
271 295
272void cgit_print_docstart(char *title, struct cacheitem *item) 296void cgit_print_docstart(char *title, struct cacheitem *item)
273{ 297{
274 html("Content-Type: text/html; charset=utf-8\n"); 298 html("Content-Type: text/html; charset=utf-8\n");
275 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); 299 htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
276 htmlf("Expires: %s\n", http_date(item->st.st_mtime + 300 htmlf("Expires: %s\n", http_date(item->st.st_mtime +
277 ttl_seconds(item->ttl))); 301 ttl_seconds(item->ttl)));
278 html("\n"); 302 html("\n");
279 html(cgit_doctype); 303 html(cgit_doctype);
280 html("<html>\n"); 304 html("<html>\n");
281 html("<head>\n"); 305 html("<head>\n");
282 html("<title>"); 306 html("<title>");
283 html_txt(title); 307 html_txt(title);
284 html("</title>\n"); 308 html("</title>\n");
285 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version); 309 htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
286 html("<link rel='stylesheet' type='text/css' href='"); 310 html("<link rel='stylesheet' type='text/css' href='");
287 html_attr(cgit_css); 311 html_attr(cgit_css);
288 html("'/>\n"); 312 html("'/>\n");
289 html("</head>\n"); 313 html("</head>\n");
290 html("<body>\n"); 314 html("<body>\n");
291} 315}
292 316
293void cgit_print_docend() 317void cgit_print_docend()
294{ 318{
295 html("</td></tr></table>"); 319 html("</td></tr></table>");
296 html("</body>\n</html>\n"); 320 html("</body>\n</html>\n");
297} 321}
298 322
299void cgit_print_pageheader(char *title, int show_search) 323void cgit_print_pageheader(char *title, int show_search)
300{ 324{
301 html("<table id='layout'>"); 325 html("<table id='layout'>");
302 html("<tr><td id='header'><a href='"); 326 html("<tr><td id='header'><a href='");
303 html_attr(cgit_rooturl()); 327 html_attr(cgit_rooturl());
304 html("'>"); 328 html("'>");
305 html_txt(cgit_root_title); 329 html_txt(cgit_root_title);
306 html("</a></td><td id='logo'>"); 330 html("</a></td><td id='logo'>");
307 html("<a href='"); 331 html("<a href='");
308 html_attr(cgit_logo_link); 332 html_attr(cgit_logo_link);
309 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo); 333 htmlf("'><img src='%s' alt='logo'/></a>", cgit_logo);
310 html("</td></tr>"); 334 html("</td></tr>");
311 html("<tr><td id='crumb'>"); 335 html("<tr><td id='crumb'>");
312 if (cgit_query_repo) { 336 if (cgit_query_repo) {
313 html_txt(cgit_repo->name); 337 html_txt(cgit_repo->name);
314 html(" ("); 338 html(" (");
315 html_txt(cgit_query_head); 339 html_txt(cgit_query_head);
316 html(") : &nbsp;"); 340 html(") : &nbsp;");
317 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head, 341 reporevlink(NULL, "summary", NULL, NULL, cgit_query_head,
318 NULL, NULL); 342 NULL, NULL);
319 html(" "); 343 html(" ");
320 cgit_log_link("log", NULL, NULL, cgit_query_head, 344 cgit_log_link("log", NULL, NULL, cgit_query_head,
321 cgit_query_sha1, cgit_query_path, 0); 345 cgit_query_sha1, cgit_query_path, 0);
322 html(" "); 346 html(" ");
323 cgit_tree_link("tree", NULL, NULL, cgit_query_head, 347 cgit_tree_link("tree", NULL, NULL, cgit_query_head,
324 cgit_query_sha1, NULL); 348 cgit_query_sha1, NULL);
325 html(" "); 349 html(" ");
326 cgit_commit_link("commit", NULL, NULL, cgit_query_head, 350 cgit_commit_link("commit", NULL, NULL, cgit_query_head,
327 cgit_query_sha1); 351 cgit_query_sha1);
328 html(" "); 352 html(" ");
329 cgit_diff_link("diff", NULL, NULL, cgit_query_head, 353 cgit_diff_link("diff", NULL, NULL, cgit_query_head,
330 cgit_query_sha1, cgit_query_sha2, 354 cgit_query_sha1, cgit_query_sha2,
331 cgit_query_path); 355 cgit_query_path);
332 } else { 356 } else {
333 html_txt("Index of repositories"); 357 html_txt("Index of repositories");
334 } 358 }
335 html("</td>"); 359 html("</td>");
336 html("<td id='search'>"); 360 html("<td id='search'>");
337 if (show_search) { 361 if (show_search) {
338 html("<form method='get' action='"); 362 html("<form method='get' action='");
339 html_attr(cgit_currurl()); 363 html_attr(cgit_currurl());
340 html("'>"); 364 html("'>");
341 if (!cgit_virtual_root) { 365 if (!cgit_virtual_root) {
342 if (cgit_query_repo) 366 if (cgit_query_repo)
343 html_hidden("r", cgit_query_repo); 367 html_hidden("r", cgit_query_repo);
344 if (cgit_query_page) 368 if (cgit_query_page)
345 html_hidden("p", cgit_query_page); 369 html_hidden("p", cgit_query_page);
346 } 370 }
347 if (cgit_query_head) 371 if (cgit_query_head)
348 html_hidden("h", cgit_query_head); 372 html_hidden("h", cgit_query_head);