mirror of
https://git.zx2c4.com/cgit/
synced 2024-11-12 01:10:27 +00:00
ui-shared.c: add cgit_summary_link()
This function can be used to generate a link to the summary page for the currently active repo. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
44b208aa44
commit
e9d3bd544f
@ -257,6 +257,11 @@ static void reporevlink(char *page, char *name, char *title, char *class,
|
|||||||
html("</a>");
|
html("</a>");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void cgit_summary_link(char *name, char *title, char *class, char *head)
|
||||||
|
{
|
||||||
|
reporevlink(NULL, name, title, class, head, NULL, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
void cgit_tree_link(char *name, char *title, char *class, char *head,
|
void cgit_tree_link(char *name, char *title, char *class, char *head,
|
||||||
char *rev, char *path)
|
char *rev, char *path)
|
||||||
{
|
{
|
||||||
|
@ -10,6 +10,7 @@ extern char *cgit_pageurl(const char *reponame, const char *pagename,
|
|||||||
|
|
||||||
extern void cgit_index_link(char *name, char *title, char *class,
|
extern void cgit_index_link(char *name, char *title, char *class,
|
||||||
char *pattern, int ofs);
|
char *pattern, int ofs);
|
||||||
|
extern void cgit_summary_link(char *name, char *title, char *class, char *head);
|
||||||
extern void cgit_tree_link(char *name, char *title, char *class, char *head,
|
extern void cgit_tree_link(char *name, char *title, char *class, char *head,
|
||||||
char *rev, char *path);
|
char *rev, char *path);
|
||||||
extern void cgit_plain_link(char *name, char *title, char *class, char *head,
|
extern void cgit_plain_link(char *name, char *title, char *class, char *head,
|
||||||
|
Loading…
Reference in New Issue
Block a user