about summary refs log tree commit diff stats
path: root/cgit.h
diff options
context:
space:
mode:
authorMichael Krelin2007-07-21 15:24:07 +0200
committerMichael Krelin2007-07-21 15:24:07 +0200
commit1cb8bedf1e0a4aa73bb8ad3f96bfa7eda50919b3 (patch)
tree471330d2f6ead56437bca3698329792a23ce1334 /cgit.h
parentadded snapshot filename to the link (diff)
downloadcgit-1cb8bedf1e0a4aa73bb8ad3f96bfa7eda50919b3.tar.gz
cgit-1cb8bedf1e0a4aa73bb8ad3f96bfa7eda50919b3.zip
introduce cgit_repobasename
 that shortens reponame stripping any directories and .git suffixes, that is
 turning 'dir/repo.git/' or 'dir/repo/.git/' or alikes into mere 'repo'.

Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h index aabf725..1dbf901 100644 --- a/cgit.h +++ b/cgit.h
@@ -206,6 +206,8 @@ extern char *cgit_fileurl(const char *reponame, const char *pagename,
206extern char *cgit_pageurl(const char *reponame, const char *pagename, 206extern char *cgit_pageurl(const char *reponame, const char *pagename,
207 const char *query); 207 const char *query);
208 208
209extern const char *cgit_repobasename(const char *reponame);
210
209extern void cgit_tree_link(char *name, char *title, char *class, char *head, 211extern void cgit_tree_link(char *name, char *title, char *class, char *head,
210 char *rev, char *path); 212 char *rev, char *path);
211extern void cgit_log_link(char *name, char *title, char *class, char *head, 213extern void cgit_log_link(char *name, char *title, char *class, char *head,