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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
007b0d5e
Commit
007b0d5e
authored
Jan 23, 2018
by
Clement Ho
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ce-to-ee-2018-01-23' into 'master'
CE upstream - Tuesday See merge request gitlab-org/gitlab-ee!4214
parents
79183ff2
927e1ca7
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
69 additions
and
34 deletions
+69
-34
PROCESS.md
PROCESS.md
+27
-3
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+6
-1
app/assets/javascripts/monitoring/monitoring_bundle.js
app/assets/javascripts/monitoring/monitoring_bundle.js
+2
-2
app/assets/javascripts/pages/projects/environments/metrics/index.js
.../javascripts/pages/projects/environments/metrics/index.js
+3
-0
app/views/dashboard/activity.html.haml
app/views/dashboard/activity.html.haml
+1
-3
app/views/dashboard/projects/index.html.haml
app/views/dashboard/projects/index.html.haml
+1
-2
app/views/dashboard/projects/starred.html.haml
app/views/dashboard/projects/starred.html.haml
+1
-2
app/views/projects/_last_push.html.haml
app/views/projects/_last_push.html.haml
+13
-14
app/views/projects/activity.html.haml
app/views/projects/activity.html.haml
+2
-1
app/views/projects/blob/show.html.haml
app/views/projects/blob/show.html.haml
+2
-1
app/views/projects/environments/metrics.html.haml
app/views/projects/environments/metrics.html.haml
+0
-1
app/views/projects/merge_requests/index.html.haml
app/views/projects/merge_requests/index.html.haml
+2
-1
app/views/projects/show.html.haml
app/views/projects/show.html.haml
+3
-1
app/views/projects/tree/show.html.haml
app/views/projects/tree/show.html.haml
+1
-2
changelogs/unreleased/fix-adjust-layout-width-for-fixed-layout.yml
...s/unreleased/fix-adjust-layout-width-for-fixed-layout.yml
+5
-0
No files found.
PROCESS.md
View file @
007b0d5e
...
...
@@ -85,7 +85,8 @@ These types of merge requests for the upcoming release need special consideratio
and a dedicated team with front-end, back-end, and UX.
*
**Small features**
: any other feature request.
**Large features**
must be with a maintainer
**by the 1st**
. This means that:
It is strongly recommended that
**large features**
be with a maintainer
**
by the
1st
**
. This means that:
*
There is a merge request (even if it's WIP).
*
The person (or people, if it needs a frontend and backend maintainer) who will
...
...
@@ -100,14 +101,37 @@ The maintainer can also choose to assign a reviewer to perform an initial
review, but this way the maintainer is unlikely to be surprised by receiving an
MR later in the cycle.
**Small features**
must be with a reviewer (not necessarily maintainer)
**
by the
3rd
**
.
It is strongly recommended that
**small features**
be with a reviewer (not
necessarily a maintainer)
**by the
3rd**
.
Most merge requests from the community do not have a specific release
target. However, if one does and falls into either of the above categories, it's
the reviewer's responsibility to manage the above communication and assignment
on behalf of the community member.
#### What happens if these deadlines are missed?
If a small or large feature is _not_ with a maintainer or reviewer by the
recommended date, this does _not_ mean that maintainers or reviewers will refuse
to review or merge it, or that the feature will definitely not make it in before
the feature freeze.
However, with every day that passes without review, it will become more likely
that the feature will slip, because maintainers and reviewers may not have
enough time to do a thorough review, and developers may not have enough time to
adequately address any feedback that may come back.
A maintainer or reviewer may also determine that it will not be possible to
finish the current scope of the feature in time, but that it is possible to
reduce the scope so that something can still ship this month, with the remaining
scope moving to the next release. The sooner this decision is made, in
conversation with the Product Manager and developer, the more time there is to
extract that which is now out of scope, and to finish that which remains in scope.
For these reasons, it is strongly recommended to follow the guidelines above,
to maximize the chances of your feature making it in before the feature freeze,
and to prevent any last minute surprises.
### On the 7th
Merge requests should still be complete, following the
...
...
app/assets/javascripts/dispatcher.js
View file @
007b0d5e
...
...
@@ -2,7 +2,6 @@
import
notificationsDropdown
from
'
./notifications_dropdown
'
;
import
LineHighlighter
from
'
./line_highlighter
'
;
import
MergeRequest
from
'
./merge_request
'
;
import
initCompareAutocomplete
from
'
./compare_autocomplete
'
;
import
Flash
from
'
./flash
'
;
import
BlobViewer
from
'
./blob/viewer/index
'
;
import
GfmAutoComplete
from
'
./gfm_auto_complete
'
;
...
...
@@ -21,6 +20,7 @@ import SearchAutocomplete from './search_autocomplete';
// EE-only
import
UsersSelect
from
'
./users_select
'
;
import
UserCallout
from
'
./user_callout
'
;
import
initCompareAutocomplete
from
'
./compare_autocomplete
'
;
import
initGeoInfoModal
from
'
ee/init_geo_info_modal
'
;
// eslint-disable-line import/first
import
initGroupAnalytics
from
'
ee/init_group_analytics
'
;
// eslint-disable-line import/first
import
initPathLocks
from
'
ee/path_locks
'
;
// eslint-disable-line import/first
...
...
@@ -89,6 +89,11 @@ import initLDAPGroupsSelect from 'ee/ldap_groups_select'; // eslint-disable-line
.
catch
(
fail
);
shortcut_handler
=
true
;
break
;
case
'
projects:environments:metrics
'
:
import
(
'
./pages/projects/environments/metrics
'
)
.
then
(
callDefault
)
.
catch
(
fail
);
break
;
case
'
projects:merge_requests:index
'
:
import
(
'
./pages/projects/merge_requests/index
'
)
.
then
(
callDefault
)
...
...
app/assets/javascripts/monitoring/monitoring_bundle.js
View file @
007b0d5e
import
Vue
from
'
vue
'
;
import
Dashboard
from
'
./components/dashboard.vue
'
;
document
.
addEventListener
(
'
DOMContentLoaded
'
,
()
=>
new
Vue
({
export
default
()
=>
new
Vue
({
el
:
'
#prometheus-graphs
'
,
render
:
createElement
=>
createElement
(
Dashboard
),
})
)
;
});
app/assets/javascripts/pages/projects/environments/metrics/index.js
0 → 100644
View file @
007b0d5e
import
monitoringBundle
from
'
~/monitoring/monitoring_bundle
'
;
export
default
monitoringBundle
;
app/views/dashboard/activity.html.haml
View file @
007b0d5e
...
...
@@ -7,10 +7,8 @@
-
page_title
"Activity"
-
header_title
"Activity"
,
activity_dashboard_path
.hidden-xs
=
render
"projects/last_push"
%div
{
class:
container_class
}
=
render
"projects/last_push"
=
render
'dashboard/activity_head'
%section
.activities
...
...
app/views/dashboard/projects/index.html.haml
View file @
007b0d5e
...
...
@@ -7,9 +7,8 @@
-
page_title
"Projects"
-
header_title
"Projects"
,
dashboard_projects_path
=
render
"projects/last_push"
%div
{
class:
container_class
}
=
render
"projects/last_push"
-
if
show_projects?
(
@projects
,
params
)
=
render
'dashboard/projects_head'
=
render
'nav'
...
...
app/views/dashboard/projects/starred.html.haml
View file @
007b0d5e
...
...
@@ -4,9 +4,8 @@
-
page_title
"Starred Projects"
-
header_title
"Projects"
,
dashboard_projects_path
=
render
"projects/last_push"
%div
{
class:
container_class
}
=
render
"projects/last_push"
=
render
'dashboard/projects_head'
-
if
params
[
:filter_projects
]
||
any_projects?
(
@projects
)
...
...
app/views/projects/_last_push.html.haml
View file @
007b0d5e
-
event
=
last_push_event
-
if
event
&&
show_last_push_widget?
(
event
)
%div
{
class:
container_class
}
.row-content-block.top-block.hidden-xs.white
.event-last-push
.event-last-push-text
%span
=
s_
(
"LastPushEvent|You pushed to"
)
%strong
=
link_to
event
.
ref_name
,
project_commits_path
(
event
.
project
,
event
.
ref_name
),
class:
'ref-name'
.row-content-block.top-block.hidden-xs.white
.event-last-push
.event-last-push-text
%span
=
s_
(
"LastPushEvent|You pushed to"
)
%strong
=
link_to
event
.
ref_name
,
project_commits_path
(
event
.
project
,
event
.
ref_name
),
class:
'ref-name'
-
if
event
.
project
!=
@project
%span
=
s_
(
"LastPushEvent|at"
)
%strong
=
link_to_project
event
.
project
-
if
event
.
project
!=
@project
%span
=
s_
(
"LastPushEvent|at"
)
%strong
=
link_to_project
event
.
project
#{
time_ago_with_tooltip
(
event
.
created_at
)
}
#{
time_ago_with_tooltip
(
event
.
created_at
)
}
.pull-right
=
link_to
new_mr_path_from_push_event
(
event
),
title:
_
(
"New merge request"
),
class:
"btn btn-info btn-sm"
do
#{
_
(
'Create merge request'
)
}
.pull-right
=
link_to
new_mr_path_from_push_event
(
event
),
title:
_
(
"New merge request"
),
class:
"btn btn-info btn-sm"
do
#{
_
(
'Create merge request'
)
}
app/views/projects/activity.html.haml
View file @
007b0d5e
...
...
@@ -2,6 +2,7 @@
-
page_title
_
(
"Activity"
)
=
render
'projects/last_push'
%div
{
class:
container_class
}
=
render
'projects/last_push'
=
render
'projects/activity'
app/views/projects/blob/show.html.haml
View file @
007b0d5e
...
...
@@ -6,9 +6,10 @@
-
content_for
:page_specific_javascripts
do
=
webpack_bundle_tag
'blob'
=
render
'projects/last_push'
%div
{
class:
container_class
}
=
render
'projects/last_push'
#tree-holder
.tree-holder
=
render
'blob'
,
blob:
@blob
...
...
app/views/projects/environments/metrics.html.haml
View file @
007b0d5e
...
...
@@ -3,7 +3,6 @@
-
content_for
:page_specific_javascripts
do
=
webpack_bundle_tag
'common_vue'
=
webpack_bundle_tag
'common_d3'
=
webpack_bundle_tag
'monitoring'
.prometheus-container
{
class:
container_class
}
.top-area
...
...
app/views/projects/merge_requests/index.html.haml
View file @
007b0d5e
...
...
@@ -10,7 +10,8 @@
=
webpack_bundle_tag
'common_vue'
=
webpack_bundle_tag
'filtered_search'
=
render
'projects/last_push'
%div
{
class:
container_class
}
=
render
'projects/last_push'
-
if
@project
.
merge_requests
.
exists?
%div
{
class:
container_class
}
...
...
app/views/projects/show.html.haml
View file @
007b0d5e
...
...
@@ -7,7 +7,9 @@
=
render
partial:
'flash_messages'
,
locals:
{
project:
@project
}
=
render
"projects/last_push"
%div
{
class:
[
container_class
,
(
"limit-container-width"
unless
fluid_layout
)]
}
=
render
"projects/last_push"
=
render
"home_panel"
-
if
can?
(
current_user
,
:download_code
,
@project
)
...
...
app/views/projects/tree/show.html.haml
View file @
007b0d5e
...
...
@@ -6,7 +6,6 @@
=
content_for
:meta_tags
do
=
auto_discovery_link_tag
(
:atom
,
project_commits_url
(
@project
,
@ref
,
rss_url_options
),
title:
"
#{
@project
.
name
}
:
#{
@ref
}
commits"
)
=
render
'projects/last_push'
%div
{
class:
[(
container_class
),
(
"limit-container-width"
unless
fluid_layout
)]
}
=
render
'projects/last_push'
=
render
'projects/files'
,
commit:
@last_commit
,
project:
@project
,
ref:
@ref
,
content_url:
project_tree_path
(
@project
,
@id
)
changelogs/unreleased/fix-adjust-layout-width-for-fixed-layout.yml
0 → 100644
View file @
007b0d5e
---
title
:
Adjust layout width for fixed layout
merge_request
:
16337
author
:
George Tsiolis
type
:
fixed
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