To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / lib / redmine / helpers / diff.rb @ 1568:bc47b68a9487

History | View | Annotate | Download (2.44 KB)

1
# Redmine - project management software
2
# Copyright (C) 2006-2014  Jean-Philippe Lang
3
#
4
# This program is free software; you can redistribute it and/or
5
# modify it under the terms of the GNU General Public License
6
# as published by the Free Software Foundation; either version 2
7
# of the License, or (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17

    
18
require 'diff'
19

    
20
module Redmine
21
  module Helpers
22
    class Diff
23
      include ERB::Util
24
      include ActionView::Helpers::TagHelper
25
      include ActionView::Helpers::TextHelper
26
      attr_reader :diff, :words
27

    
28
      def initialize(content_to, content_from)
29
        @words = content_to.to_s.split(/(\s+)/)
30
        @words = @words.select {|word| word != ' '}
31
        words_from = content_from.to_s.split(/(\s+)/)
32
        words_from = words_from.select {|word| word != ' '}
33
        @diff = words_from.diff @words
34
      end
35

    
36
      def to_html
37
        words = self.words.collect{|word| h(word)}
38
        words_add = 0
39
        words_del = 0
40
        dels = 0
41
        del_off = 0
42
        diff.diffs.each do |diff|
43
          add_at = nil
44
          add_to = nil
45
          del_at = nil
46
          deleted = ""
47
          diff.each do |change|
48
            pos = change[1]
49
            if change[0] == "+"
50
              add_at = pos + dels unless add_at
51
              add_to = pos + dels
52
              words_add += 1
53
            else
54
              del_at = pos unless del_at
55
              deleted << ' ' unless deleted.empty?
56
              deleted << h(change[2])
57
              words_del  += 1
58
            end
59
          end
60
          if add_at
61
            words[add_at] = '<span class="diff_in">'.html_safe + words[add_at]
62
            words[add_to] = words[add_to] + '</span>'.html_safe
63
          end
64
          if del_at
65
            words.insert del_at - del_off + dels + words_add, '<span class="diff_out">'.html_safe + deleted + '</span>'.html_safe
66
            dels += 1
67
            del_off += words_del
68
            words_del = 0
69
          end
70
        end
71
        words.join(' ').html_safe
72
      end
73
    end
74
  end
75
end