diff options
author | Jakub Narebski <jnareb@gmail.com> | 2007-05-15 01:55:44 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-14 17:26:46 -0700 |
commit | b4b20b2164e433fead84beb526b713a889fc31df (patch) | |
tree | e70021ba54090268028d9c57e4c7def12104a56e /gitweb | |
parent | 870e0d61d30a943dc050a67574f3f32faff226db (diff) | |
download | git-b4b20b2164e433fead84beb526b713a889fc31df.tar.gz git-b4b20b2164e433fead84beb526b713a889fc31df.tar.xz |
gitweb: Add a few comments about %feature hash
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 12c2e6685..7b520f5fc 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -98,10 +98,13 @@ our %feature = ( # 'override' => allow-override (boolean), # 'default' => [ default options...] (array reference)} # - # if feature is overridable (it means that allow-override has true value, + # if feature is overridable (it means that allow-override has true value), # then feature-sub will be called with default options as parameters; # return value of feature-sub indicates if to enable specified feature # + # if there is no 'sub' key (no feature-sub), then feature cannot be + # overriden + # # use gitweb_check_feature(<feature>) to check if <feature> is enabled # Enable the 'blame' blob view, showing the last commit that modified @@ -134,6 +137,7 @@ our %feature = ( # Enable text search, which will list the commits which match author, # committer or commit text to a given string. Enabled by default. + # Project specific override is not supported. 'search' => { 'override' => 0, 'default' => [1]}, |