diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-04-29 17:52:00 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-04-29 17:52:00 -0700 |
commit | 55375e94736ba47a264ec0437fc723b2ed80919c (patch) | |
tree | bc29bdc4b6a88a94f2f46c021f12c9e10f5b77ca /Documentation/gitweb.conf.txt | |
parent | 070d5271e464d7256f675c4259b230bf11aa2ffc (diff) | |
parent | 0ebe7827b6f00797ab850e8ebc28f0fa22f1df55 (diff) | |
download | git-55375e94736ba47a264ec0437fc723b2ed80919c.tar.gz git-55375e94736ba47a264ec0437fc723b2ed80919c.tar.xz |
Merge branch 'kk/gitweb-omit-expensive'
"gitweb" learned to optionally omit output of fields that are expensive
to generate.
By Kacper Kornet
* kk/gitweb-omit-expensive:
gitweb: Option to not display information about owner
gitweb: Option to omit column with time of the last change
Diffstat (limited to 'Documentation/gitweb.conf.txt')
-rw-r--r-- | Documentation/gitweb.conf.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/gitweb.conf.txt b/Documentation/gitweb.conf.txt index 7aba497b7..4b8d1b1d4 100644 --- a/Documentation/gitweb.conf.txt +++ b/Documentation/gitweb.conf.txt @@ -499,6 +499,13 @@ $maxload:: Set `$maxload` to undefined value (`undef`) to turn this feature off. The default value is 300. +$omit_age_column:: + If true, omit the column with date of the most current commit on the + projects list page. It can save a bit of I/O and a fork per repository. + +$omit_owner:: + If true prevents displaying information about repository owner. + $per_request_config:: If this is set to code reference, it will be run once for each request. You can set parts of configuration that change per session this way. |