BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
a3692621
Commit
a3692621
authored
Jan 14, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
line numbers for blame
parent
e98d4780
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
10 deletions
+33
-10
tree.scss
app/assets/stylesheets/sections/tree.scss
+12
-0
show.html.haml
app/views/blame/show.html.haml
+21
-10
No files found.
app/assets/stylesheets/sections/tree.scss
View file @
a3692621
...
...
@@ -80,6 +80,18 @@
margin
:
0
;
padding
:
0
;
}
td
.blame-commit
{
background
:
#f9f9f9
;
min-width
:
350px
;
}
td
.blame-numbers
{
pre
{
color
:
#AAA
;
white-space
:
pre
;
}
background
:
#f1f1f1
;
border-left
:
1px
solid
#DDD
;
}
}
}
...
...
app/views/blame/show.html.haml
View file @
a3692621
...
...
@@ -20,16 +20,27 @@
%span
.options
=
render
"tree/blob_actions"
.file_content.blame
%table
-
current_line
=
1
-
@blame
.
each
do
|
commit
,
lines
|
-
commit
=
Commit
.
new
(
commit
)
-
commit
=
CommitDecorator
.
decorate
(
commit
)
-
commit
=
CommitDecorator
.
decorate
(
Commit
.
new
(
commit
))
%tr
%td
.author
=
commit
.
author_link
avatar:
true
,
size:
16
%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
.blame-commit
%span
.commit
=
link_to
commit
.
short_id
(
8
),
project_commit_path
(
@project
,
commit
),
class:
"commit_short_id"
=
commit
.
author_link
avatar:
true
,
size:
16
=
link_to_gfm
truncate
(
commit
.
title
,
length:
20
),
project_commit_path
(
@project
,
commit
.
id
),
class:
"row_title"
%td
.lines.blame-numbers
%pre
-
if
lines
.
empty?
=
current_line
-
current_line
+=
1
-
else
-
lines
.
each
do
|
line
|
=
current_line
-
current_line
+=
1
%td
.lines
=
preserve
do
%pre
=
line
s
.
join
(
"
\n
"
)
%pre
-
lines
.
each
do
|
line
|
=
line
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment