57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
.block
|
|
= render :partial => "git/shared/navigation"
|
|
|
|
= render :partial => "git/shared/info"
|
|
|
|
- if @commit
|
|
.block
|
|
.content
|
|
.inner
|
|
= render :partial => "git/commits/commits", :object => [@commit]
|
|
|
|
.block
|
|
.content
|
|
.inner
|
|
%h3= render_path
|
|
|
|
.blob_header
|
|
.size #{(@blob.size / 1024.0).round(3)} Kb
|
|
.buttons
|
|
- if @commit_hash
|
|
#{link_to "Raw", raw_commit_path(@project, @commit_hash, @path)} #{link_to "Normal", blob_commit_path(@project, @commit_hash, @path)} #{link_to "History", commits_path(@project, @treeish, @path)}
|
|
- else
|
|
#{link_to "Raw", raw_path(@project, @treeish, @path)} #{link_to "Normal", blob_path(@project, @treeish, @path)} #{link_to "History", commits_path(@project, @treeish, @path)}
|
|
|
|
.clear
|
|
.blame_data
|
|
%table.table.blame
|
|
- index = 1
|
|
- @blame.each do |elem|
|
|
%tr
|
|
%td.message{ :rowspan => elem[1].length }
|
|
.commit
|
|
#{link_to shortest_hash_id(elem[0].id), commit_path(@project, elem[0].id)} by
|
|
#{elem[0].author.to_s.encode_to_default} #{elem[0].author != elem[0].committer ? "(#{elem[0].committer.to_s.encode_to_default})" : "" }
|
|
.message
|
|
%span.date= commit_date(elem[0].committed_date)
|
|
%span.message= short_commit_message(elem[0].message)
|
|
|
|
%td.lines
|
|
= index
|
|
- index += 1
|
|
|
|
%td.code
|
|
%pre
|
|
%div= elem[1].first.encode_to_default
|
|
|
|
- elem[1][1..-1].each do |line|
|
|
%tr
|
|
%td.lines
|
|
= index
|
|
- index += 1
|
|
%td.code
|
|
%pre
|
|
%div= line.encode_to_default
|
|
|
|
- content_for :sidebar, render(:partial => 'git/shared/sidebar')
|