Skip to content

Commit

Permalink
ui-shared: add cgit_tag_link()
Browse files Browse the repository at this point in the history
This function can be used to generate properly escaped links to the tag
page.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
  • Loading branch information
hjemli committed Oct 5, 2008
1 parent 8b5fc6d commit cf61ad4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ui-shared.c
Expand Up @@ -262,6 +262,12 @@ void cgit_summary_link(char *name, char *title, char *class, char *head)
reporevlink(NULL, name, title, class, head, NULL, NULL);
}

void cgit_tag_link(char *name, char *title, char *class, char *head,
char *rev)
{
reporevlink("tag", name, title, class, head, rev, NULL);
}

void cgit_tree_link(char *name, char *title, char *class, char *head,
char *rev, char *path)
{
Expand Down
2 changes: 2 additions & 0 deletions ui-shared.h
Expand Up @@ -11,6 +11,8 @@ extern char *cgit_pageurl(const char *reponame, const char *pagename,
extern void cgit_index_link(char *name, char *title, char *class,
char *pattern, int ofs);
extern void cgit_summary_link(char *name, char *title, char *class, char *head);
extern void cgit_tag_link(char *name, char *title, char *class, char *head,
char *rev);
extern void cgit_tree_link(char *name, char *title, char *class, char *head,
char *rev, char *path);
extern void cgit_plain_link(char *name, char *title, char *class, char *head,
Expand Down

0 comments on commit cf61ad4

Please sign in to comment.