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
Jérome Perrin
gitlab-ce
Commits
a02216de
Commit
a02216de
authored
Feb 24, 2016
by
James Lopez
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into fix/project-wiki-ending
parents
595c5266
fe6f17ce
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
71 additions
and
44 deletions
+71
-44
CHANGELOG
CHANGELOG
+18
-0
app/assets/javascripts/activities.js.coffee
app/assets/javascripts/activities.js.coffee
+5
-13
app/assets/stylesheets/framework/blocks.scss
app/assets/stylesheets/framework/blocks.scss
+1
-1
app/assets/stylesheets/framework/files.scss
app/assets/stylesheets/framework/files.scss
+1
-1
app/assets/stylesheets/framework/jquery.scss
app/assets/stylesheets/framework/jquery.scss
+2
-2
app/assets/stylesheets/framework/lists.scss
app/assets/stylesheets/framework/lists.scss
+1
-1
app/assets/stylesheets/framework/timeline.scss
app/assets/stylesheets/framework/timeline.scss
+2
-2
app/assets/stylesheets/framework/tw_bootstrap_variables.scss
app/assets/stylesheets/framework/tw_bootstrap_variables.scss
+1
-1
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+1
-1
app/assets/stylesheets/pages/profile.scss
app/assets/stylesheets/pages/profile.scss
+15
-6
app/assets/stylesheets/pages/tree.scss
app/assets/stylesheets/pages/tree.scss
+1
-1
app/views/users/show.html.haml
app/views/users/show.html.haml
+14
-12
features/dashboard/event_filters.feature
features/dashboard/event_filters.feature
+9
-3
No files found.
CHANGELOG
View file @
a02216de
Please view this file on the master branch, on stable branches it's out of date.
v 8.6.0 (unreleased)
- Improve the formatting for the user page bio (Connor Shea)
v 8.5.1
- Fix group projects styles
- Show Crowd login tab when sign in is disabled and Crowd is enabled (Peter Hudec)
- Fix issue pushing to projects ending with .wiki
- Fix a set of small UI glitches in project, profile, and wiki pages
- Restrict permissions on public/uploads
- Fix the merge request side-by-side view after loading diff results
- Fix the look of tooltip for the "Revert" button
- Add when the Builds & Runners API changes got introduced
- Fix error 500 on some merged merge requests
- Fix an issue causing the content of the issuable sidebar to disappear
- Fix error 500 when trying to mark an already done todo as "done"
- Fix an issue where MRs weren't sortable
- Issues can now be dragged & dropped into empty milestone lists. This is also
possible with MRs
- Changed padding & background color for highlighted notes
- Re-add the newrelic_rpm gem which was removed without any deprecation or warning (Stan Hu)
- Update sentry-raven gem to 0.15.6
v 8.5.0
- Fix duplicate "me" in tooltip of the "thumbsup" awards Emoji (Stan Hu)
...
...
app/assets/javascripts/activities.js.coffee
View file @
a02216de
class
@
Activities
constructor
:
->
Pager
.
init
20
,
true
$
(
".event-filter
a"
).
bind
"click"
,
(
event
)
=>
$
(
".event-filter
-link"
).
on
"click"
,
(
event
)
=>
event
.
preventDefault
()
@
toggleFilter
(
$
(
event
.
currentTarget
))
@
reloadActivities
()
...
...
@@ -12,18 +12,10 @@ class @Activities
toggleFilter
:
(
sender
)
->
sender
.
closest
(
'li'
).
toggl
eClass
"active"
$
(
'.event-filter .active'
).
remov
eClass
"active"
event_filters
=
$
.
cookie
(
"event_filter"
)
filter
=
sender
.
attr
(
"id"
).
split
(
"_"
)[
0
]
if
event_filters
event_filters
=
event_filters
.
split
(
","
)
else
event_filters
=
new
Array
()
$
.
cookie
"event_filter"
,
(
if
event_filters
isnt
filter
then
filter
else
""
),
{
path
:
'/'
}
index
=
event_filters
.
indexOf
(
filter
)
if
index
is
-
1
event_filters
.
push
filter
else
event_filters
.
splice
index
,
1
$
.
cookie
"event_filter"
,
event_filters
.
join
(
","
),
{
path
:
'/'
}
if
event_filters
isnt
filter
sender
.
closest
(
'li'
).
toggleClass
"active"
app/assets/stylesheets/framework/blocks.scss
View file @
a02216de
...
...
@@ -66,7 +66,7 @@
}
.oneline
{
line-height
:
42
px
;
line-height
:
35
px
;
}
>
p
:last-child
{
...
...
app/assets/stylesheets/framework/files.scss
View file @
a02216de
...
...
@@ -158,7 +158,7 @@
}
&
:hover
{
background
:
$hover
;
background
:
$
row-
hover
;
}
}
}
...
...
app/assets/stylesheets/framework/jquery.scss
View file @
a02216de
...
...
@@ -48,8 +48,8 @@
.ui-state-hover
,
.ui-state-focus
{
border
:
1px
solid
$hover
;
background
:
$hover
;
border
:
1px
solid
$
row-
hover
;
background
:
$
row-
hover
;
color
:
#333
;
}
}
...
...
app/assets/stylesheets/framework/lists.scss
View file @
a02216de
...
...
@@ -38,7 +38,7 @@
&
.smoke
{
background-color
:
$background-color
;
}
&
:hover
{
background
:
$hover
;
background
:
$
row-
hover
;
}
&
:last-child
{
...
...
app/assets/stylesheets/framework/timeline.scss
View file @
a02216de
...
...
@@ -5,13 +5,13 @@
padding
:
0
;
.timeline-entry
{
padding
:
$gl-padding
0
;
padding
:
$gl-padding
$gl-btn-padding
;
border-color
:
$table-border-color
;
color
:
$gl-gray
;
border-bottom
:
1px
solid
$border-white-light
;
&
:target
{
background
:
$hover
;
background
:
$
row-
hover
;
}
&
:last-child
{
...
...
app/assets/stylesheets/framework/tw_bootstrap_variables.scss
View file @
a02216de
...
...
@@ -70,7 +70,7 @@ $pagination-bg: #fff;
$pagination-border
:
$border-color
;
$pagination-hover-color
:
$gl-gray
;
$pagination-hover-bg
:
$hover
;
$pagination-hover-bg
:
$
row-
hover
;
$pagination-hover-border
:
$border-color
;
$pagination-active-color
:
$blue-dark
;
...
...
app/assets/stylesheets/framework/variables.scss
View file @
a02216de
$
hover
:
#faf9f9
;
$
row-hover
:
#f4f8fe
;
$gl-text-color
:
#54565B
;
$gl-text-green
:
#4A2
;
$gl-text-red
:
#D12F19
;
...
...
app/assets/stylesheets/pages/profile.scss
View file @
a02216de
...
...
@@ -51,9 +51,17 @@
.profile-link-holder
{
display
:
inline
;
a
{
color
:
$blue-dark
;
text-decoration
:
none
;
}
}
// Middle dot divider between each element in a list of items.
.middle-dot-divider
{
&
:after
{
content
:
"\00B7"
;
padding
:
0
px
6px
;
content
:
"\00B7"
;
// Middle Dot
padding
:
0
6px
;
font-weight
:
bold
;
}
...
...
@@ -63,9 +71,10 @@
padding
:
0
;
}
}
}
a
{
color
:
$blue-dark
;
text-decoration
:
none
;
}
.profile-user-bio
{
// Limits the width of the user bio for readability.
max-width
:
750px
;
margin
:
auto
;
}
app/assets/stylesheets/pages/tree.scss
View file @
a02216de
...
...
@@ -21,7 +21,7 @@
&
:hover
{
td
{
background
:
$hover
;
background
:
$
row-
hover
;
}
cursor
:
pointer
;
}
...
...
app/views/users/show.html.haml
View file @
a02216de
...
...
@@ -35,35 +35,37 @@
=
@user
.
name
.cover-desc
%span
@
#{
@user
.
username
}
.
-
if
@user
.
bio
.
present?
%span
#{
@user
.
bio
}
.
%span
%span
.middle-dot-divider
@
#{
@user
.
username
}
%span
.middle-dot-divider
Member since
#{
@user
.
created_at
.
to_s
(
:medium
)
}
-
if
@user
.
bio
.
present?
.cover-desc
%p
.profile-user-bio
=
@user
.
bio
.cover-desc
-
unless
@user
.
public_email
.
blank?
.profile-link-holder
.profile-link-holder
.middle-dot-divider
=
link_to
@user
.
public_email
,
"mailto:
#{
@user
.
public_email
}
"
-
unless
@user
.
skype
.
blank?
.profile-link-holder
.profile-link-holder
.middle-dot-divider
=
link_to
"skype:
#{
@user
.
skype
}
"
,
title:
"Skype"
do
=
icon
(
'skype'
)
-
unless
@user
.
linkedin
.
blank?
.profile-link-holder
.profile-link-holder
.middle-dot-divider
=
link_to
"https://www.linkedin.com/in/
#{
@user
.
linkedin
}
"
,
title:
"LinkedIn"
do
=
icon
(
'linkedin-square'
)
-
unless
@user
.
twitter
.
blank?
.profile-link-holder
.profile-link-holder
.middle-dot-divider
=
link_to
"https://twitter.com/
#{
@user
.
twitter
}
"
,
title:
"Twitter"
do
=
icon
(
'twitter-square'
)
-
unless
@user
.
website_url
.
blank?
.profile-link-holder
.profile-link-holder
.middle-dot-divider
=
link_to
@user
.
short_website_url
,
@user
.
full_website_url
-
unless
@user
.
location
.
blank?
.profile-link-holder
.profile-link-holder
.middle-dot-divider
=
icon
(
'map-marker'
)
=
@user
.
location
...
...
features/dashboard/event_filters.feature
View file @
a02216de
...
...
@@ -43,10 +43,16 @@ Feature: Event Filters
And
I should not see new member event
When
I click
"team"
event filter
And
I visit dashboard activity page
Then
I should see push event
Then
I should
not
see push event
And
I should see new member event
And
I should not see merge request event
When
I click
"push"
event filter
Then
I should not see push event
And
I should see new member event
And
I visit dashboard activity page
Then
I should see push event
And
I should not see new member event
And
I should not see merge request event
When
I click
"merge"
event filter
And
I visit dashboard activity page
Then
I should see merge request event
And
I should not see push event
And
I should not see new member event
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