diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-05-11 12:12:48 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-11 12:12:48 +0200 |
commit | ded9393b173853d2e960f9b176aeb0bc4ed35be2 (patch) | |
tree | 5c062b21e85ef0fe243ad900e9f4ffaf2ded0f62 /html.c | |
parent | Add submodules.sh and use it during builds (diff) | |
download | cgit-pink-ded9393b173853d2e960f9b176aeb0bc4ed35be2.tar.gz cgit-pink-ded9393b173853d2e960f9b176aeb0bc4ed35be2.zip |
Add submodule links in tree listing
When a submodule occurs in a tree, generate a link to show the module/commit. The link is specified as a sprintf string in /etc/cgitrc, using parameters 'module-link' and 'repo.module-link'. This should probably be extended with repo.module-link.$path. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/html.c b/html.c index c0b2ed4..175b4b6 100644 --- a/html.c +++ b/html.c @@ -158,10 +158,11 @@ void html_filemode(unsigned short mode) html("d"); else if (S_ISLNK(mode)) html("l"); + else if (S_ISDIRLNK(mode)) + html("m"); else html("-"); html_fileperm(mode >> 6); html_fileperm(mode >> 3); html_fileperm(mode); } - |