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

show.html.haml « blame « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c3231e23187ae1db990efc3e84324acab0da592 (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
30
31
32
33
34
35
36
37
= render "head"

#tree-holder.tree-holder
  %ul.breadcrumb
    %li
      %span.arrow
      = link_to project_tree_path(@project, @ref) do
        = @project.name
    - @tree.breadcrumbs(6) do |link|
      \/
      %li= link
  .clear

  .file_holder
    .file_title
      %i.icon-file
      %span.file_name
        = @tree.name.force_encoding('utf-8')
        %small= number_to_human_size @tree.size
      %span.options= render "tree/blob_actions"
    .file_content.blame
      %table
        - @blame.each do |commit, lines|
          - commit = Commit.new(commit)
          - commit = CommitDecorator.decorate(commit)
          %tr
            %td.author
              = image_tag gravatar_icon(commit.author_email, 16)
              = commit.author_name
            %td.blame_commit
               
              %code= link_to commit.short_id, project_commit_path(@project, commit)
              = link_to_gfm truncate(commit.title, length: 30), project_commit_path(@project, commit), class: "row_title" rescue "--broken encoding"
            %td.lines
              = preserve do
                %pre
                  = Gitlab::Encode.utf8 lines.join("\n")