Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
gitlab-ce
Commits
21191318
Commit
21191318
authored
Mar 28, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor wall.js. style wall page a bit
parent
583bfac5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
20 deletions
+40
-20
app/assets/javascripts/wall.js.coffee
app/assets/javascripts/wall.js.coffee
+20
-8
app/assets/stylesheets/sections/wall.scss
app/assets/stylesheets/sections/wall.scss
+19
-3
app/views/walls/show.html.haml
app/views/walls/show.html.haml
+1
-1
spec/features/notes_on_merge_requests_spec.rb
spec/features/notes_on_merge_requests_spec.rb
+0
-8
No files found.
app/assets/javascripts/wall.js.coffee
View file @
21191318
...
...
@@ -58,14 +58,26 @@
form
.
show
()
renderNote
:
(
note
)
->
author
=
'<strong class="wall-author">'
+
note
.
author
.
name
+
'</strong>'
body
=
'<span class="wall-text">'
+
linkify
(
sanitize
(
note
.
body
))
+
'</span>'
file
=
''
t
ime
=
'<abbr class="timeago" title="'
+
note
.
created_at
+
'">'
+
note
.
created_at
+
'</time>'
template
=
Wall
.
noteTemplate
()
template
=
template
.
replace
(
'{{author_name}}'
,
note
.
author
.
name
)
template
=
template
.
replace
(
'{{created_at}}'
,
note
.
created_at
)
t
emplate
=
template
.
replace
(
'{{text}}'
,
linkify
(
sanitize
(
note
.
body
)))
if
note
.
attachment
file
=
'<span class="wall-file"><a href="/files/note/'
+
note
.
id
+
'/'
+
note
.
attachment
+
'">'
+
note
.
attachment
+
'</a></span>'
html
=
'<li>'
+
author
+
body
+
file
+
time
+
'</li>'
file
=
'<i class="icon-paper-clip"/><a href="/files/note/'
+
note
.
id
+
'/'
+
note
.
attachment
+
'">'
+
note
.
attachment
+
'</a>'
else
file
=
''
template
=
template
.
replace
(
'{{file}}'
,
file
)
$
(
'ul.notes'
).
append
(
template
)
$
(
'ul.notes'
).
append
(
html
)
noteTemplate
:
->
return
'<li>
<strong class="wall-author">{{author_name}}</strong>
<span class="wall-text">
{{text}}
<span class="wall-file">{{file}}</span>
</span>
<abbr class="timeago" title="{{created_at}}">{{created_at}}</abbr>
</li>'
app/assets/stylesheets/sections/wall.scss
View file @
21191318
...
...
@@ -14,12 +14,28 @@
.notes
{
margin-bottom
:
160px
;
background
:
#FFE
;
border
:
1px
solid
#EED
;
>
li
{
@extend
.clearfix
;
border-bottom
:
1px
solid
#EED
;
padding
:
10px
;
}
.wall-author
{
color
:
#666
;
margin-right
:
10px
;
border-right
:
1px
solid
#CCC
;
padding-right
:
5px
float
:
left
;
width
:
100px
;
text-overflow
:
ellipsis
;
}
.wall-text
{
border-left
:
1px
solid
#CCC
;
margin-left
:
10px
;
padding-left
:
10px
;
float
:
left
;
width
:
80%
;
}
.wall-file
{
...
...
app/views/walls/show.html.haml
View file @
21191318
%div
.wall-page
%ul
.
well-list.
notes
%ul
.notes
-
if
can?
current_user
,
:write_note
,
@project
.note-form-holder
...
...
spec/features/notes_on_merge_requests_spec.rb
View file @
21191318
...
...
@@ -21,11 +21,6 @@ describe "On a merge request", js: true do
it
{
find
(
".js-main-target-form input[type=submit]"
).
value
.
should
==
"Add Comment"
}
it
{
within
(
".js-main-target-form"
)
{
should_not
have_link
(
"Cancel"
)
}
}
# notifiactions
it
{
within
(
".js-main-target-form"
)
{
should
have_unchecked_field
(
"Notify team via email"
)
}
}
it
{
within
(
".js-main-target-form"
)
{
should_not
have_checked_field
(
"Notify commit author"
)
}
}
it
{
within
(
".js-main-target-form"
)
{
should_not
have_unchecked_field
(
"Notify commit author"
)
}
}
describe
"without text"
do
it
{
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview-button"
,
visible:
false
)
}
}
end
...
...
@@ -126,9 +121,6 @@ describe "On a merge request diff", js: true, focus: true do
it
{
should
have_button
(
"Add Comment"
)
}
it
{
should
have_css
(
".js-close-discussion-note-form"
,
text:
"Cancel"
)
}
# notification options
it
{
should
have_unchecked_field
(
"Notify team via email"
)
}
it
"shouldn't add a second form for same row"
do
find
(
"#4735dfc552ad7bf15ca468adc3cad9d05b624490_185_185.line_holder .js-add-diff-note-button"
).
trigger
(
"click"
)
...
...
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