欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

通过redmine repository看代码的一个问题

程序员文章站 2022-05-19 17:51:47
...

通过redmine repository看代码,有时候按review按钮,可是浏览器却弹出download画面, 导致不能和看DIFF一样直接在线观看,非常不方便。

 

经过google搜索, 有人回答原因如下。

 

ruby中如果string中有超过30%ascii码或者回车换行符以外的字符的话, 就会被认为是二进制数据,导致不能在网页中直接打开,而显示了Download画面。

 

 

解决方法

 

参照以下DIFF文件

Index: app/controllers/repositories_controller.rb
===================================================================
--- app/controllers/repositories_controller.rb    (revision 1709)
+++ app/controllers/repositories_controller.rb    (working copy)
@@ -102,7 +102,7 @@

     @content = @repository.cat(@path, @rev)
     show_error_not_found and return unless @content
-    if 'raw' == params[:format] || @content.is_binary_data?
+    if 'raw' == params[:format] || @content.include?("\x00")
       # Force the download if it's a binary file
       send_data @content, :filename => @path.split('/').last
     else