summaryrefslogtreecommitdiffabout
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
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 (more/less context) (show whitespace changes)
-rw-r--r--ui-shared.c6
-rw-r--r--ui-shared.h2
2 files changed, 8 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
@@ -217,96 +217,102 @@ static char *repolink(char *title, char *class, char *page, char *head,
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';
diff --git a/ui-shared.h b/ui-shared.h
index 0cd5ed1..3c8a6d0 100644
--- a/ui-shared.h
+++ b/ui-shared.h
@@ -1,44 +1,46 @@
1#ifndef UI_SHARED_H 1#ifndef UI_SHARED_H
2#define UI_SHARED_H 2#define UI_SHARED_H
3 3
4extern char *cgit_hosturl(); 4extern char *cgit_hosturl();
5extern char *cgit_repourl(const char *reponame); 5extern char *cgit_repourl(const char *reponame);
6extern char *cgit_fileurl(const char *reponame, const char *pagename, 6extern char *cgit_fileurl(const char *reponame, const char *pagename,
7 const char *filename, const char *query); 7 const char *filename, const char *query);
8extern char *cgit_pageurl(const char *reponame, const char *pagename, 8extern char *cgit_pageurl(const char *reponame, const char *pagename,
9 const char *query); 9 const char *query);
10 10
11extern void cgit_index_link(char *name, char *title, char *class, 11extern void cgit_index_link(char *name, char *title, char *class,
12 char *pattern, int ofs); 12 char *pattern, int ofs);
13extern void cgit_summary_link(char *name, char *title, char *class, char *head); 13extern void cgit_summary_link(char *name, char *title, char *class, char *head);
14extern void cgit_tag_link(char *name, char *title, char *class, char *head,
15 char *rev);
14extern void cgit_tree_link(char *name, char *title, char *class, char *head, 16extern void cgit_tree_link(char *name, char *title, char *class, char *head,
15 char *rev, char *path); 17 char *rev, char *path);
16extern void cgit_plain_link(char *name, char *title, char *class, char *head, 18extern void cgit_plain_link(char *name, char *title, char *class, char *head,
17 char *rev, char *path); 19 char *rev, char *path);
18extern void cgit_log_link(char *name, char *title, char *class, char *head, 20extern void cgit_log_link(char *name, char *title, char *class, char *head,
19 char *rev, char *path, int ofs, char *grep, 21 char *rev, char *path, int ofs, char *grep,
20 char *pattern); 22 char *pattern);
21extern void cgit_commit_link(char *name, char *title, char *class, char *head, 23extern void cgit_commit_link(char *name, char *title, char *class, char *head,
22 char *rev); 24 char *rev);
23extern void cgit_patch_link(char *name, char *title, char *class, char *head, 25extern void cgit_patch_link(char *name, char *title, char *class, char *head,
24 char *rev); 26 char *rev);
25extern void cgit_refs_link(char *name, char *title, char *class, char *head, 27extern void cgit_refs_link(char *name, char *title, char *class, char *head,
26 char *rev, char *path); 28 char *rev, char *path);
27extern void cgit_snapshot_link(char *name, char *title, char *class, 29extern void cgit_snapshot_link(char *name, char *title, char *class,
28 char *head, char *rev, char *archivename); 30 char *head, char *rev, char *archivename);
29extern void cgit_diff_link(char *name, char *title, char *class, char *head, 31extern void cgit_diff_link(char *name, char *title, char *class, char *head,
30 char *new_rev, char *old_rev, char *path); 32 char *new_rev, char *old_rev, char *path);
31extern void cgit_object_link(struct object *obj); 33extern void cgit_object_link(struct object *obj);
32 34
33extern void cgit_print_error(char *msg); 35extern void cgit_print_error(char *msg);
34extern void cgit_print_date(time_t secs, char *format, int local_time); 36extern void cgit_print_date(time_t secs, char *format, int local_time);
35extern void cgit_print_age(time_t t, time_t max_relative, char *format); 37extern void cgit_print_age(time_t t, time_t max_relative, char *format);
36extern void cgit_print_http_headers(struct cgit_context *ctx); 38extern void cgit_print_http_headers(struct cgit_context *ctx);
37extern void cgit_print_docstart(struct cgit_context *ctx); 39extern void cgit_print_docstart(struct cgit_context *ctx);
38extern void cgit_print_docend(); 40extern void cgit_print_docend();
39extern void cgit_print_pageheader(struct cgit_context *ctx); 41extern void cgit_print_pageheader(struct cgit_context *ctx);
40extern void cgit_print_filemode(unsigned short mode); 42extern void cgit_print_filemode(unsigned short mode);
41extern void cgit_print_snapshot_links(const char *repo, const char *head, 43extern void cgit_print_snapshot_links(const char *repo, const char *head,
42 const char *hex, int snapshots); 44 const char *hex, int snapshots);
43 45
44#endif /* UI_SHARED_H */ 46#endif /* UI_SHARED_H */