On Thu, 26 Nov 2009, Jakub Narebski wrote: > On Thu, 26 Nov 2009, Junio C Hamano wrote: > > A follow-up patch to add a gitweb configuration switch that disables the > > non-working view by default but allows site owners to enable it in order > > to help improving the feature would be a sensible thing to do. As long as > > that patch is solidly done we can merge the whole thing to 'master' in the > > upcoming release. > > But if it is already in 'next', then I'll try to come up with patch which > makes JavaScript-ing links (replacing links with JavaScript to equivalent > actions utilizing JavaScript, currently only 'blame' -> 'blame_incremental') > configurable. Here it is. I am a bit ambiguous about *naming* of this feature (and whether it should be overridable), that's why it is marked as RFC. Also the subject of this commit could have been better, I think... -- >8 -- Let gitweb turn some links (like 'blame' links) into linking to actions which require JavaScript (like 'blame_incremental' action) only if 'javascript-actions' feature is enabled. This means that links to such actions would be present only if both JavaScript is enabled and 'javascript-actions' feature is enabled. Signed-off-by: Jakub Narebski <jnareb@xxxxxxxxx> --- gitweb/gitweb.perl | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index a80cbd3..0ab47e1 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -432,6 +432,13 @@ our %feature = ( 'timed' => { 'override' => 0, 'default' => [0]}, + + # Enable turning some links into links to actions which require + # JavaScript to run (like 'blame_incremental'). Enabled by default. + # Project specific override is currently not supported. + 'javascript-actions' => { + 'override' => 0, + 'default' => [1]}, ); sub gitweb_get_feature { @@ -3326,7 +3333,7 @@ sub git_footer_html { qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!. qq! "!. href() .qq!");\n!. qq!</script>\n!; - } else { + } elsif (gitweb_check_feature('javascript-actions')) { print qq!<script type="text/javascript">\n!. qq!window.onload = fixLinks;\n!. qq!</script>\n!; -- 1.6.5.3 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html