summaryrefslogtreecommitdiffabout
path: root/ui-shared.c
authorLars Hjemli <hjemli@gmail.com>2008-10-05 19:18:45 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-10-05 19:18:45 (UTC)
commitcf61ad411c41a774c9671651704bdeb78ccc1036 (patch) (unidiff)
treedd6554d3fb4f726354c2819dc29c947c00459bc1 /ui-shared.c
parent8b5fc6de036cf159ffa61a55158044749bd6f4d9 (diff)
downloadcgit-cf61ad411c41a774c9671651704bdeb78ccc1036.zip
cgit-cf61ad411c41a774c9671651704bdeb78ccc1036.tar.gz
cgit-cf61ad411c41a774c9671651704bdeb78ccc1036.tar.bz2
ui-shared: add cgit_tag_link()
This function can be used to generate properly escaped links to the tag page. 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.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index a959224..9b120ae 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -137,256 +137,262 @@ char *cgit_currurl()
137static void site_url(char *page, char *search, int ofs) 137static void site_url(char *page, char *search, int ofs)
138{ 138{
139 char *delim = "?"; 139 char *delim = "?";
140 140
141 if (ctx.cfg.virtual_root) { 141 if (ctx.cfg.virtual_root) {
142 html_attr(ctx.cfg.virtual_root); 142 html_attr(ctx.cfg.virtual_root);
143 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') 143 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/')
144 html("/"); 144 html("/");
145 } else 145 } else
146 html(ctx.cfg.script_name); 146 html(ctx.cfg.script_name);
147 147
148 if (page) { 148 if (page) {
149 htmlf("?p=%s", page); 149 htmlf("?p=%s", page);
150 delim = "&"; 150 delim = "&";
151 } 151 }
152 if (search) { 152 if (search) {
153 html(delim); 153 html(delim);
154 html("q="); 154 html("q=");
155 html_attr(search); 155 html_attr(search);
156 delim = "&"; 156 delim = "&";
157 } 157 }
158 if (ofs) { 158 if (ofs) {
159 html(delim); 159 html(delim);
160 htmlf("ofs=%d", ofs); 160 htmlf("ofs=%d", ofs);
161 } 161 }
162} 162}
163 163
164static void site_link(char *page, char *name, char *title, char *class, 164static void site_link(char *page, char *name, char *title, char *class,
165 char *search, int ofs) 165 char *search, int ofs)
166{ 166{
167 html("<a"); 167 html("<a");
168 if (title) { 168 if (title) {
169 html(" title='"); 169 html(" title='");
170 html_attr(title); 170 html_attr(title);
171 html("'"); 171 html("'");
172 } 172 }
173 if (class) { 173 if (class) {
174 html(" class='"); 174 html(" class='");
175 html_attr(class); 175 html_attr(class);
176 html("'"); 176 html("'");
177 } 177 }
178 html(" href='"); 178 html(" href='");
179 site_url(page, search, ofs); 179 site_url(page, search, ofs);
180 html("'>"); 180 html("'>");
181 html_txt(name); 181 html_txt(name);
182 html("</a>"); 182 html("</a>");
183} 183}
184 184
185void cgit_index_link(char *name, char *title, char *class, char *pattern, 185void cgit_index_link(char *name, char *title, char *class, char *pattern,
186 int ofs) 186 int ofs)
187{ 187{
188 site_link(NULL, name, title, class, pattern, ofs); 188 site_link(NULL, name, title, class, pattern, ofs);
189} 189}
190 190
191static char *repolink(char *title, char *class, char *page, char *head, 191static char *repolink(char *title, char *class, char *page, char *head,
192 char *path) 192 char *path)
193{ 193{
194 char *delim = "?"; 194 char *delim = "?";
195 195
196 html("<a"); 196 html("<a");
197 if (title) { 197 if (title) {
198 html(" title='"); 198 html(" title='");
199 html_attr(title); 199 html_attr(title);
200 html("'"); 200 html("'");
201 } 201 }
202 if (class) { 202 if (class) {
203 html(" class='"); 203 html(" class='");
204 html_attr(class); 204 html_attr(class);
205 html("'"); 205 html("'");
206 } 206 }
207 html(" href='"); 207 html(" href='");
208 if (ctx.cfg.virtual_root) { 208 if (ctx.cfg.virtual_root) {
209 html_url_path(ctx.cfg.virtual_root); 209 html_url_path(ctx.cfg.virtual_root);
210 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/') 210 if (ctx.cfg.virtual_root[strlen(ctx.cfg.virtual_root) - 1] != '/')
211 html("/"); 211 html("/");
212 html_url_path(ctx.repo->url); 212 html_url_path(ctx.repo->url);
213 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') 213 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
214 html("/"); 214 html("/");
215 if (page) { 215 if (page) {
216 html_url_path(page); 216 html_url_path(page);
217 html("/"); 217 html("/");
218 if (path) 218 if (path)
219 html_url_path(path); 219 html_url_path(path);
220 } 220 }
221 } else { 221 } else {
222 html(ctx.cfg.script_name); 222 html(ctx.cfg.script_name);
223 html("?url="); 223 html("?url=");
224 html_url_arg(ctx.repo->url); 224 html_url_arg(ctx.repo->url);
225 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/') 225 if (ctx.repo->url[strlen(ctx.repo->url) - 1] != '/')
226 html("/"); 226 html("/");
227 if (page) { 227 if (page) {
228 html_url_arg(page); 228 html_url_arg(page);
229 html("/"); 229 html("/");
230 if (path) 230 if (path)
231 html_url_arg(path); 231 html_url_arg(path);
232 } 232 }
233 delim = "&amp;"; 233 delim = "&amp;";
234 } 234 }
235 if (head && strcmp(head, ctx.repo->defbranch)) { 235 if (head && strcmp(head, ctx.repo->defbranch)) {
236 html(delim); 236 html(delim);
237 html("h="); 237 html("h=");
238 html_url_arg(head); 238 html_url_arg(head);
239 delim = "&amp;"; 239 delim = "&amp;";
240 } 240 }
241 return fmt("%s", delim); 241 return fmt("%s", delim);
242} 242}
243 243
244static void reporevlink(char *page, char *name, char *title, char *class, 244static void reporevlink(char *page, char *name, char *title, char *class,
245 char *head, char *rev, char *path) 245 char *head, char *rev, char *path)
246{ 246{
247 char *delim; 247 char *delim;
248 248
249 delim = repolink(title, class, page, head, path); 249 delim = repolink(title, class, page, head, path);
250 if (rev && strcmp(rev, ctx.qry.head)) { 250 if (rev && strcmp(rev, ctx.qry.head)) {
251 html(delim); 251 html(delim);
252 html("id="); 252 html("id=");
253 html_url_arg(rev); 253 html_url_arg(rev);
254 } 254 }
255 html("'>"); 255 html("'>");
256 html_txt(name); 256 html_txt(name);
257 html("</a>"); 257 html("</a>");
258} 258}
259 259
260void cgit_summary_link(char *name, char *title, char *class, char *head) 260void cgit_summary_link(char *name, char *title, char *class, char *head)
261{ 261{
262 reporevlink(NULL, name, title, class, head, NULL, NULL); 262 reporevlink(NULL, name, title, class, head, NULL, NULL);
263} 263}
264 264
265void cgit_tag_link(char *name, char *title, char *class, char *head,
266 char *rev)
267{
268 reporevlink("tag", name, title, class, head, rev, NULL);
269}
270
265void cgit_tree_link(char *name, char *title, char *class, char *head, 271void cgit_tree_link(char *name, char *title, char *class, char *head,
266 char *rev, char *path) 272 char *rev, char *path)
267{ 273{
268 reporevlink("tree", name, title, class, head, rev, path); 274 reporevlink("tree", name, title, class, head, rev, path);
269} 275}
270 276
271void cgit_plain_link(char *name, char *title, char *class, char *head, 277void cgit_plain_link(char *name, char *title, char *class, char *head,
272 char *rev, char *path) 278 char *rev, char *path)
273{ 279{
274 reporevlink("plain", name, title, class, head, rev, path); 280 reporevlink("plain", name, title, class, head, rev, path);
275} 281}
276 282
277void cgit_log_link(char *name, char *title, char *class, char *head, 283void cgit_log_link(char *name, char *title, char *class, char *head,
278 char *rev, char *path, int ofs, char *grep, char *pattern) 284 char *rev, char *path, int ofs, char *grep, char *pattern)
279{ 285{
280 char *delim; 286 char *delim;
281 287
282 delim = repolink(title, class, "log", head, path); 288 delim = repolink(title, class, "log", head, path);
283 if (rev && strcmp(rev, ctx.qry.head)) { 289 if (rev && strcmp(rev, ctx.qry.head)) {
284 html(delim); 290 html(delim);
285 html("id="); 291 html("id=");
286 html_url_arg(rev); 292 html_url_arg(rev);
287 delim = "&"; 293 delim = "&";
288 } 294 }
289 if (grep && pattern) { 295 if (grep && pattern) {
290 html(delim); 296 html(delim);
291 html("qt="); 297 html("qt=");
292 html_url_arg(grep); 298 html_url_arg(grep);
293 delim = "&"; 299 delim = "&";
294 html(delim); 300 html(delim);
295 html("q="); 301 html("q=");
296 html_url_arg(pattern); 302 html_url_arg(pattern);
297 } 303 }
298 if (ofs > 0) { 304 if (ofs > 0) {
299 html(delim); 305 html(delim);
300 html("ofs="); 306 html("ofs=");
301 htmlf("%d", ofs); 307 htmlf("%d", ofs);
302 } 308 }
303 html("'>"); 309 html("'>");
304 html_txt(name); 310 html_txt(name);
305 html("</a>"); 311 html("</a>");
306} 312}
307 313
308void cgit_commit_link(char *name, char *title, char *class, char *head, 314void cgit_commit_link(char *name, char *title, char *class, char *head,
309 char *rev) 315 char *rev)
310{ 316{
311 if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) { 317 if (strlen(name) > ctx.cfg.max_msg_len && ctx.cfg.max_msg_len >= 15) {
312 name[ctx.cfg.max_msg_len] = '\0'; 318 name[ctx.cfg.max_msg_len] = '\0';
313 name[ctx.cfg.max_msg_len - 1] = '.'; 319 name[ctx.cfg.max_msg_len - 1] = '.';
314 name[ctx.cfg.max_msg_len - 2] = '.'; 320 name[ctx.cfg.max_msg_len - 2] = '.';
315 name[ctx.cfg.max_msg_len - 3] = '.'; 321 name[ctx.cfg.max_msg_len - 3] = '.';
316 } 322 }
317 reporevlink("commit", name, title, class, head, rev, NULL); 323 reporevlink("commit", name, title, class, head, rev, NULL);
318} 324}
319 325
320void cgit_refs_link(char *name, char *title, char *class, char *head, 326void cgit_refs_link(char *name, char *title, char *class, char *head,
321 char *rev, char *path) 327 char *rev, char *path)
322{ 328{
323 reporevlink("refs", name, title, class, head, rev, path); 329 reporevlink("refs", name, title, class, head, rev, path);
324} 330}
325 331
326void cgit_snapshot_link(char *name, char *title, char *class, char *head, 332void cgit_snapshot_link(char *name, char *title, char *class, char *head,
327 char *rev, char *archivename) 333 char *rev, char *archivename)
328{ 334{
329 reporevlink("snapshot", name, title, class, head, rev, archivename); 335 reporevlink("snapshot", name, title, class, head, rev, archivename);
330} 336}
331 337
332void cgit_diff_link(char *name, char *title, char *class, char *head, 338void cgit_diff_link(char *name, char *title, char *class, char *head,
333 char *new_rev, char *old_rev, char *path) 339 char *new_rev, char *old_rev, char *path)
334{ 340{
335 char *delim; 341 char *delim;
336 342
337 delim = repolink(title, class, "diff", head, path); 343 delim = repolink(title, class, "diff", head, path);
338 if (new_rev && strcmp(new_rev, ctx.qry.head)) { 344 if (new_rev && strcmp(new_rev, ctx.qry.head)) {
339 html(delim); 345 html(delim);
340 html("id="); 346 html("id=");
341 html_url_arg(new_rev); 347 html_url_arg(new_rev);
342 delim = "&amp;"; 348 delim = "&amp;";
343 } 349 }
344 if (old_rev) { 350 if (old_rev) {
345 html(delim); 351 html(delim);
346 html("id2="); 352 html("id2=");
347 html_url_arg(old_rev); 353 html_url_arg(old_rev);
348 } 354 }
349 html("'>"); 355 html("'>");
350 html_txt(name); 356 html_txt(name);
351 html("</a>"); 357 html("</a>");
352} 358}
353 359
354void cgit_patch_link(char *name, char *title, char *class, char *head, 360void cgit_patch_link(char *name, char *title, char *class, char *head,
355 char *rev) 361 char *rev)
356{ 362{
357 reporevlink("patch", name, title, class, head, rev, NULL); 363 reporevlink("patch", name, title, class, head, rev, NULL);
358} 364}
359 365
360void cgit_object_link(struct object *obj) 366void cgit_object_link(struct object *obj)
361{ 367{
362 char *page, *rev, *name; 368 char *page, *rev, *name;
363 369
364 if (obj->type == OBJ_COMMIT) { 370 if (obj->type == OBJ_COMMIT) {
365 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL, 371 cgit_commit_link(fmt("commit %s", sha1_to_hex(obj->sha1)), NULL, NULL,
366 ctx.qry.head, sha1_to_hex(obj->sha1)); 372 ctx.qry.head, sha1_to_hex(obj->sha1));
367 return; 373 return;
368 } else if (obj->type == OBJ_TREE) 374 } else if (obj->type == OBJ_TREE)
369 page = "tree"; 375 page = "tree";
370 else if (obj->type == OBJ_TAG) 376 else if (obj->type == OBJ_TAG)
371 page = "tag"; 377 page = "tag";
372 else 378 else
373 page = "blob"; 379 page = "blob";
374 rev = sha1_to_hex(obj->sha1); 380 rev = sha1_to_hex(obj->sha1);
375 name = fmt("%s %s", typename(obj->type), rev); 381 name = fmt("%s %s", typename(obj->type), rev);
376 reporevlink(page, name, NULL, NULL, ctx.qry.head, rev, NULL); 382 reporevlink(page, name, NULL, NULL, ctx.qry.head, rev, NULL);
377} 383}
378 384
379void cgit_print_date(time_t secs, char *format, int local_time) 385void cgit_print_date(time_t secs, char *format, int local_time)
380{ 386{
381 char buf[64]; 387 char buf[64];
382 struct tm *time; 388 struct tm *time;
383 389
384 if (!secs) 390 if (!secs)
385 return; 391 return;
386 if(local_time) 392 if(local_time)
387 time = localtime(&secs); 393 time = localtime(&secs);
388 else 394 else
389 time = gmtime(&secs); 395 time = gmtime(&secs);
390 strftime(buf, sizeof(buf)-1, format, time); 396 strftime(buf, sizeof(buf)-1, format, time);
391 html_txt(buf); 397 html_txt(buf);
392} 398}