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
f03c43e8
Commit
f03c43e8
authored
Apr 08, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
8d8d9273
0a112328
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
app/views/ci/status/_dropdown_graph_badge.html.haml
app/views/ci/status/_dropdown_graph_badge.html.haml
+2
-2
doc/development/ee_features.md
doc/development/ee_features.md
+5
-0
No files found.
app/views/ci/status/_dropdown_graph_badge.html.haml
View file @
f03c43e8
...
@@ -6,12 +6,12 @@
...
@@ -6,12 +6,12 @@
-
tooltip
=
"
#{
subject
.
name
}
-
#{
status
.
status_tooltip
}
"
-
tooltip
=
"
#{
subject
.
name
}
-
#{
status
.
status_tooltip
}
"
-
if
status
.
has_details?
-
if
status
.
has_details?
=
link_to
status
.
details_path
,
class:
'mini-pipeline-graph-dropdown-item'
,
data:
{
toggle:
'tooltip'
,
title:
tooltip
,
container:
'body'
}
do
=
link_to
status
.
details_path
,
class:
'mini-pipeline-graph-dropdown-item
d-flex
'
,
data:
{
toggle:
'tooltip'
,
title:
tooltip
,
container:
'body'
}
do
%span
{
class:
klass
}=
sprite_icon
(
status
.
icon
)
%span
{
class:
klass
}=
sprite_icon
(
status
.
icon
)
%span
.ci-build-text.text-truncate.mw-70p.gl-pl-1
=
subject
.
name
%span
.ci-build-text.text-truncate.mw-70p.gl-pl-1
=
subject
.
name
-
else
-
else
.menu-item.mini-pipeline-graph-dropdown-item
{
data:
{
toggle:
'tooltip'
,
title:
tooltip
,
container:
'body'
}
}
.menu-item.mini-pipeline-graph-dropdown-item
.d-flex
{
data:
{
toggle:
'tooltip'
,
title:
tooltip
,
container:
'body'
}
}
%span
{
class:
klass
}=
sprite_icon
(
status
.
icon
)
%span
{
class:
klass
}=
sprite_icon
(
status
.
icon
)
%span
.ci-build-text.text-truncate.mw-70p.gl-pl-1
=
subject
.
name
%span
.ci-build-text.text-truncate.mw-70p.gl-pl-1
=
subject
.
name
...
...
doc/development/ee_features.md
View file @
f03c43e8
...
@@ -19,6 +19,11 @@ CE specs should remain untouched as much as possible and extra specs
...
@@ -19,6 +19,11 @@ CE specs should remain untouched as much as possible and extra specs
should be added for EE. Licensed features can be stubbed using the
should be added for EE. Licensed features can be stubbed using the
spec helper
`stub_licensed_features`
in
`EE::LicenseHelpers`
.
spec helper
`stub_licensed_features`
in
`EE::LicenseHelpers`
.
You can force Webpack to act as CE by either deleting the
`ee/`
directory or by
setting the
[
`IS_GITLAB_EE` environment variable
](
https://gitlab.com/gitlab-org/gitlab-ee/blob/master/config/helpers/is_ee_env.js
)
to something that evaluates as
`false`
. The same works for running tests
(for example
`IS_GITLAB_EE=0 yarn jest`
).
[
ee-as-ce
]:
https://gitlab.com/gitlab-org/gitlab-ee/issues/2500
[
ee-as-ce
]:
https://gitlab.com/gitlab-org/gitlab-ee/issues/2500
## Separation of EE code
## Separation of EE code
...
...
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