diff options
author | Lars Hjemli | 2007-05-11 12:12:48 +0200 |
---|---|---|
committer | Lars Hjemli | 2007-05-11 12:12:48 +0200 |
commit | ded9393b173853d2e960f9b176aeb0bc4ed35be2 (patch) | |
tree | 5c062b21e85ef0fe243ad900e9f4ffaf2ded0f62 /cgitrc | |
parent | Add submodules.sh and use it during builds (diff) | |
download | cgit-ded9393b173853d2e960f9b176aeb0bc4ed35be2.tar.gz cgit-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 'cgitrc')
-rw-r--r-- | cgitrc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cgitrc b/cgitrc index 3bae642..f217b39 100644 --- a/cgitrc +++ b/cgitrc | |||
@@ -47,6 +47,10 @@ | |||
47 | #logo-link=http://www.kernel.org/pub/software/scm/git/docs/ | 47 | #logo-link=http://www.kernel.org/pub/software/scm/git/docs/ |
48 | 48 | ||
49 | 49 | ||
50 | ## Url loaded when clicking a submodule link | ||
51 | #module-link=./?repo=%s&page=commit&id=%s | ||
52 | |||
53 | |||
50 | ## Number of chars shown of commit subject message (in log view) | 54 | ## Number of chars shown of commit subject message (in log view) |
51 | #max-message-length=60 | 55 | #max-message-length=60 |
52 | 56 | ||
@@ -81,4 +85,5 @@ | |||
81 | #repo.desc=the caching cgi for git | 85 | #repo.desc=the caching cgi for git |
82 | #repo.path=/pub/git/cgit | 86 | #repo.path=/pub/git/cgit |
83 | #repo.owner=Lars Hjemli | 87 | #repo.owner=Lars Hjemli |
84 | #repo.snapshots=1 # override a sitewide snapshot-setting | 88 | #repo.snapshots=1 # override a sitewide snapshot-setting |
89 | #repo.module-link=/git/%s/commit/?id=%s # override the standard module-link | ||