]> source.dussan.org Git - redmine.git/commitdiff
Remove trailing whitespaces from app (#31506).
authorGo MAEDA <maeda@farend.jp>
Thu, 6 Jun 2019 14:47:34 +0000 (14:47 +0000)
committerGo MAEDA <maeda@farend.jp>
Thu, 6 Jun 2019 14:47:34 +0000 (14:47 +0000)
Patch by Marius BALTEANU.

git-svn-id: http://svn.redmine.org/redmine/trunk@18230 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/attachments_controller.rb
app/controllers/previews_controller.rb
app/helpers/members_helper.rb
app/helpers/search_helper.rb
app/helpers/workflows_helper.rb
app/models/mail_handler.rb

index c5f615d2060de298b3e6a9130dfc73a582c30011..5d705844b4ba44bbf9e10b94619041098375c6ff 100644 (file)
@@ -239,7 +239,7 @@ class AttachmentsController < ApplicationController
   def detect_content_type(attachment, is_thumb = false)
     content_type = attachment.content_type
     if content_type.blank? || content_type == "application/octet-stream"
-      content_type = 
+      content_type =
         Redmine::MimeType.of(attachment.filename).presence ||
         "application/octet-stream"
     end
index 716d27caeffb4da62def8bc4d0f79e52b2338ec4..e431ab0de8ff0c19415f6fdc2dcbbd4a382cf406 100644 (file)
@@ -18,7 +18,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 class PreviewsController < ApplicationController
-  before_action :find_project, :except => :text 
+  before_action :find_project, :except => :text
   before_action :find_attachments
 
   def issue
index 369677e3cae7a74545d697f3d54035f4a0b9bf7f..11e843099499cf4e4948b8171a066eaca51280e5 100644 (file)
@@ -36,7 +36,7 @@ module MembersHelper
     s + content_tag('span', links, :class => 'pagination')
   end
 
-  # Returns inheritance information for an inherited member role 
+  # Returns inheritance information for an inherited member role
   def render_role_inheritance(member, role)
     content = member.role_inheritance(role).map do |h|
       if h.is_a?(Project)
@@ -45,7 +45,7 @@ module MembersHelper
         l(:label_inherited_from_group, :name => h.name.to_s)
       end
     end.compact.uniq
-  
+
     if content.present?
       content_tag('span', content.join(", "), :class => "info")
     end
index a8eb3b3d20bfd665430cce85ea678d2c93d35857..5ba88a60be91fe875ead075f13603e7793d11bf4 100644 (file)
@@ -63,7 +63,7 @@ module SearchHelper
                        :all_words => params[:all_words], :scope => params[:scope], t => 1)
     end
     ('<ul>'.html_safe +
-        links.map {|link| content_tag('li', link)}.join(' ').html_safe + 
+        links.map {|link| content_tag('li', link)}.join(' ').html_safe +
         '</ul>'.html_safe) unless links.empty?
   end
 end
index 61381794f97a3b110ec4a39a65234c871066a4f7..c09310acdc23deed74f510a84899f69e9c0e573b 100644 (file)
@@ -21,7 +21,7 @@ module WorkflowsHelper
   def options_for_workflow_select(name, objects, selected, options={})
     option_tags = ''.html_safe
     multiple = false
-    if selected 
+    if selected
       if selected.size == objects.size
         selected = 'all'
       else
@@ -51,7 +51,7 @@ module WorkflowsHelper
     options = [["", ""], [l(:label_readonly), "readonly"]]
     options << [l(:label_required), "required"] unless field_required?(field)
     html_options = {}
-    
+
     if perm = permissions[status.id][name]
       if perm.uniq.size > 1 || perm.size < @roles.size * @trackers.size
         options << [l(:label_no_change_option), "no_change"]
@@ -76,7 +76,7 @@ module WorkflowsHelper
 
   def transition_tag(workflows, old_status, new_status, name)
     w = workflows.select {|w| w.old_status == old_status && w.new_status == new_status}.size
-    
+
     tag_name = "transitions[#{ old_status.try(:id) || 0 }][#{new_status.id}][#{name}]"
     if old_status == new_status
       check_box_tag(tag_name, "1", true,
index 82cbc0790807bb44b8adcaeb1819842e621f7c28..44aed826f40657cbf7c281d93060fa43ae46061d 100755 (executable)
@@ -459,7 +459,7 @@ class MailHandler < ActionMailer::Base
     end
   end
 
-  # Returns the text content of the email. 
+  # Returns the text content of the email.
   # If the value of Setting.mail_handler_preferred_body_part is 'html',
   # it returns text converted from the text/html part of the email.
   # Otherwise, it returns text/plain part.