diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-06-17 01:23:08 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-06-17 01:39:05 +0200 |
commit | 44947bfcdc0d6e8c7d673bea0538cbf2a182f289 (patch) | |
tree | 3f65d6842738a8314ed72d5575a0b523061556b7 /cgit.h | |
parent | ui-tree: make blob viewer generate valid html (diff) | |
download | cgit-pink-44947bfcdc0d6e8c7d673bea0538cbf2a182f289.tar.gz cgit-pink-44947bfcdc0d6e8c7d673bea0538cbf2a182f289.zip |
Add and use cgit_tree_link()
This creates a new function used to generate links to 'tree' page and uses the function everywhere a link to the 'tree' page is generated. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | cgit.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h index b93e2e8..9a19c97 100644 --- a/cgit.h +++ b/cgit.h @@ -201,6 +201,9 @@ extern char *cgit_repourl(const char *reponame); extern char *cgit_pageurl(const char *reponame, const char *pagename, const char *query); +extern void cgit_tree_link(char *name, char *title, char *class, char *head, + char *rev, char *path); + extern void cgit_print_error(char *msg); extern void cgit_print_date(time_t secs, char *format); extern void cgit_print_age(time_t t, time_t max_relative, char *format); |