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

_diff.html.haml « discussions « notes « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 711aa39101b865a3c1008ba8b89c40b1d68f74e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- diff = note.diff
- if diff
  .diff-file
    .diff-header
      %span
        - if diff.deleted_file
          = diff.old_path
        - else
          = diff.new_path
          - if diff.a_mode && diff.b_mode && diff.a_mode != diff.b_mode
            %span.file-mode= "#{diff.a_mode} → #{diff.b_mode}"
    .diff-content
      %table
        - note.truncated_diff_lines.each do |line|
          - line_code = generate_line_code(note.file_path, line)
          %tr.line_holder{ id: line_code }
            - if line.type == "match"
              %td.old_line= "..."
              %td.new_line= "..."
              %td.line_content.matched= line.text
            - else
              %td.old_line{class: line.type == "new" ? "new" : "old"}
                = raw(line.type == "new" ? " " : line.old_pos)
              %td.new_line{class: line.type == "new" ? "new" : "old"}
                = raw(line.type == "old" ? " " : line.new_pos)
              %td.line_content{class: "noteable_line #{line.type} #{line_code}", "line_code" => line_code}= raw diff_line_content(line.text)

              - if line_code == note.line_code
                = render "projects/notes/diff_notes_with_reply", notes: discussion_notes