author | Lars Hjemli <hjemli@gmail.com> | 2008-10-05 19:18:45 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-10-05 19:18:45 (UTC) |
commit | cf61ad411c41a774c9671651704bdeb78ccc1036 (patch) (unidiff) | |
tree | dd6554d3fb4f726354c2819dc29c947c00459bc1 /ui-shared.c | |
parent | 8b5fc6de036cf159ffa61a55158044749bd6f4d9 (diff) | |
download | cgit-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>
-rw-r--r-- | ui-shared.c | 6 |
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 | |||
@@ -233,64 +233,70 @@ static char *repolink(char *title, char *class, char *page, char *head, | |||
233 | delim = "&"; | 233 | delim = "&"; |
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 = "&"; | 239 | delim = "&"; |
240 | } | 240 | } |
241 | return fmt("%s", delim); | 241 | return fmt("%s", delim); |
242 | } | 242 | } |
243 | 243 | ||
244 | static void reporevlink(char *page, char *name, char *title, char *class, | 244 | static 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 | ||
260 | void cgit_summary_link(char *name, char *title, char *class, char *head) | 260 | void 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 | ||
265 | void 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 | |||
265 | void cgit_tree_link(char *name, char *title, char *class, char *head, | 271 | void 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 | ||
271 | void cgit_plain_link(char *name, char *title, char *class, char *head, | 277 | void 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 | ||
277 | void cgit_log_link(char *name, char *title, char *class, char *head, | 283 | void 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); |