Welcome to mirror list, hosted at ThFree Co, Russian Federation.

diff.html.haml « blob « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea6d4df72556a851960cf15c93931f02c9c96251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- if @lines.present?
  - if @form.unfold? && @form.since != 1 && !@form.bottom?
    %tr.line_holder{ id: @form.since }
      = render "projects/diffs/match_line", {line: @match_line,
        line_old: @form.since, line_new: @form.since, bottom: false, new_file: false}

  - @lines.each_with_index do |line, index|
    - line_new = index + @form.since
    - line_old = line_new - @form.offset
    %tr.line_holder
      %td.old_line.diff-line-num{data: {linenumber: line_old}}
        / = link_to raw(line_old), "#"
      %td.new_line.diff-line-num{data: {linenumber: line_old}}
        / = link_to raw(line_new) , "#"
      %td.line_content.noteable_line==#{' ' * @form.indent}#{line}

  - if @form.unfold? && @form.bottom? && @form.to < @blob.loc
    %tr.line_holder{ id: @form.to }
      = render "projects/diffs/match_line", {line: @match_line,
        line_old: @form.to, line_new: @form.to, bottom: true, new_file: false}