Class: WikiAnnotate

Inherits:
Object
  • Object
show all
Defined in:
app/models/wiki_page.rb

Instance Attribute Summary

Instance Method Summary

Constructor Details

- (WikiAnnotate) initialize(content)

A new instance of WikiAnnotate



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# File 'app/models/wiki_page.rb', line 160

def initialize(content)
  @content = content
  current = content
  current_lines = current.text.split(/\r?\n/)
  @lines = current_lines.collect {|t| [nil, nil, t]}
  positions = []
  current_lines.size.times {|i| positions << i}
  while (current.previous)
    d = current.previous.text.split(/\r?\n/).diff(current.text.split(/\r?\n/)).diffs.flatten
    d.each_slice(3) do |s|
      sign, line = s[0], s[1]
      if sign == '+' && positions[line] && positions[line] != -1
        if @lines[positions[line]][0].nil?
          @lines[positions[line]][0] = current.version
          @lines[positions[line]][1] = current.author
        end
      end
    end
    d.each_slice(3) do |s|
      sign, line = s[0], s[1]
      if sign == '-'
        positions.insert(line, -1)
      else
        positions[line] = nil
      end
    end
    positions.compact!
    # Stop if every line is annotated
    break unless @lines.detect { |line| line[0].nil? }
    current = current.previous
  end
  @lines.each { |line| line[0] ||= current.version }
end

Instance Attribute Details

- (Object) content (readonly)

Returns the value of attribute content



158
159
160
# File 'app/models/wiki_page.rb', line 158

def content
  @content
end

- (Object) lines (readonly)

Returns the value of attribute lines



158
159
160
# File 'app/models/wiki_page.rb', line 158

def lines
  @lines
end