author | Lars Hjemli <hjemli@gmail.com> | 2007-05-16 08:45:45 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-16 08:46:59 (UTC) |
commit | c1ad6cb77889880ad0189a689840fbfa6e5cbc80 (patch) (unidiff) | |
tree | 352c32898316a388b582385a5fb3c6c534eaa30a /cgitrc | |
parent | f4f1339fe62fb1a28c147567195a86dd99485e25 (diff) | |
download | cgit-c1ad6cb77889880ad0189a689840fbfa6e5cbc80.zip cgit-c1ad6cb77889880ad0189a689840fbfa6e5cbc80.tar.gz cgit-c1ad6cb77889880ad0189a689840fbfa6e5cbc80.tar.bz2 |
Restrict length of repo description on repolist page
If any repo has a very long description, all repos suffer since the
repo-links in the right-most column gets pushed out of sight.
Fix it by introducing max-repodesc-length parameter in cgitrc, and default
to 60 chars.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgitrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -30,48 +30,52 @@ | |||
30 | ## This setting is disabled by default. | 30 | ## This setting is disabled by default. |
31 | #virtual-root=/git | 31 | #virtual-root=/git |
32 | 32 | ||
33 | 33 | ||
34 | ## Set the title printed on the root page | 34 | ## Set the title printed on the root page |
35 | #root-title=Git repository browser | 35 | #root-title=Git repository browser |
36 | 36 | ||
37 | 37 | ||
38 | ## Link to css file | 38 | ## Link to css file |
39 | #css=/cgit/cgit.css | 39 | #css=/cgit/cgit.css |
40 | 40 | ||
41 | 41 | ||
42 | ## Link to logo file | 42 | ## Link to logo file |
43 | #logo=/cgit/git-logo.png | 43 | #logo=/cgit/git-logo.png |
44 | 44 | ||
45 | 45 | ||
46 | ## Url loaded when clicking the logo | 46 | ## Url loaded when clicking the logo |
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 | 50 | ## Url loaded when clicking a submodule link |
51 | #module-link=./?repo=%s&page=commit&id=%s | 51 | #module-link=./?repo=%s&page=commit&id=%s |
52 | 52 | ||
53 | 53 | ||
54 | ## Number of chars shown of repo description (in repolist view) | ||
55 | #max-repodesc-length=60 | ||
56 | |||
57 | |||
54 | ## Number of chars shown of commit subject message (in log view) | 58 | ## Number of chars shown of commit subject message (in log view) |
55 | #max-message-length=60 | 59 | #max-message-length=60 |
56 | 60 | ||
57 | 61 | ||
58 | ## Number of commits per page in log view | 62 | ## Number of commits per page in log view |
59 | #max-commit-count=50 | 63 | #max-commit-count=50 |
60 | 64 | ||
61 | 65 | ||
62 | ## Root of cached output | 66 | ## Root of cached output |
63 | #cache-root=/var/cache/cgit | 67 | #cache-root=/var/cache/cgit |
64 | 68 | ||
65 | 69 | ||
66 | ## Include another config-file | 70 | ## Include another config-file |
67 | #include=/var/cgit/repolist | 71 | #include=/var/cgit/repolist |
68 | 72 | ||
69 | ## | 73 | ## |
70 | ## Time-To-Live settings: specifies how long (in minutes) different pages | 74 | ## Time-To-Live settings: specifies how long (in minutes) different pages |
71 | ## should be cached (0 for instant expiration, -1 for immortal pages) | 75 | ## should be cached (0 for instant expiration, -1 for immortal pages) |
72 | ## | 76 | ## |
73 | 77 | ||
74 | ## ttl for root page | 78 | ## ttl for root page |
75 | #cache-root-ttl=5 | 79 | #cache-root-ttl=5 |
76 | 80 | ||
77 | ## ttl for repo summary page | 81 | ## ttl for repo summary page |