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
7054afa3
Commit
7054afa3
authored
Sep 22, 2017
by
Annabel Dunstone Gray
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'remove-redundant-icons' into 'master'
Removed old icons from project page Closes #36567 See merge request gitlab-org/gitlab-ce!14185
parents
17251d04
8ceaafae
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
3 additions
and
29 deletions
+3
-29
pipelines_actions.vue
...ts/javascripts/pipelines/components/pipelines_actions.vue
+1
-2
pipelines_artifacts.vue
.../javascripts/pipelines/components/pipelines_artifacts.vue
+1
-5
_download.html.haml
app/views/projects/buttons/_download.html.haml
+0
-5
_dropdown.html.haml
app/views/projects/buttons/_dropdown.html.haml
+0
-8
_old_tree_header.html.haml
app/views/projects/tree/_old_tree_header.html.haml
+0
-8
pipelines_artifacts_spec.js
spec/javascripts/pipelines/pipelines_artifacts_spec.js
+1
-1
No files found.
app/assets/javascripts/pipelines/components/pipelines_actions.vue
View file @
7054afa3
...
...
@@ -69,8 +69,7 @@
@
click=
"onClickAction(action.path)"
:class=
"
{ disabled: isActionDisabled(action) }"
:disabled="isActionDisabled(action)">
<span
v-html=
"playIconSvg"
></span>
<span>
{{
action
.
name
}}
</span>
{{
action
.
name
}}
</button>
</li>
</ul>
...
...
app/assets/javascripts/pipelines/components/pipelines_artifacts.vue
View file @
7054afa3
...
...
@@ -39,11 +39,7 @@
rel=
"nofollow"
download
:href=
"artifact.path"
>
<i
class=
"fa fa-download"
aria-hidden=
"true"
>
</i>
<span>
Download
{{
artifact
.
name
}}
artifacts
</span>
Download
{{
artifact
.
name
}}
artifacts
</a>
</li>
</ul>
...
...
app/views/projects/buttons/_download.html.haml
View file @
7054afa3
...
...
@@ -11,19 +11,15 @@
#{
_
(
'Source code'
)
}
%li
=
link_to
archive_project_repository_path
(
project
,
ref:
ref
,
format:
'zip'
),
rel:
'nofollow'
,
download:
''
do
%i
.fa.fa-download
%span
=
_
(
'Download zip'
)
%li
=
link_to
archive_project_repository_path
(
project
,
ref:
ref
,
format:
'tar.gz'
),
rel:
'nofollow'
,
download:
''
do
%i
.fa.fa-download
%span
=
_
(
'Download tar.gz'
)
%li
=
link_to
archive_project_repository_path
(
project
,
ref:
ref
,
format:
'tar.bz2'
),
rel:
'nofollow'
,
download:
''
do
%i
.fa.fa-download
%span
=
_
(
'Download tar.bz2'
)
%li
=
link_to
archive_project_repository_path
(
project
,
ref:
ref
,
format:
'tar'
),
rel:
'nofollow'
,
download:
''
do
%i
.fa.fa-download
%span
=
_
(
'Download tar'
)
-
if
pipeline
&&
pipeline
.
latest_builds_with_artifacts
.
any?
...
...
@@ -36,6 +32,5 @@
-
pipeline
.
latest_builds_with_artifacts
.
each
do
|
job
|
%li
=
link_to
latest_succeeded_project_artifacts_path
(
project
,
"
#{
ref
}
/download"
,
job:
job
.
name
),
rel:
'nofollow'
,
download:
''
do
%i
.fa.fa-download
%span
#{
s_
(
'DownloadArtifacts|Download'
)
}
'
#{
job
.
name
}
'
app/views/projects/buttons/_dropdown.html.haml
View file @
7054afa3
...
...
@@ -11,19 +11,16 @@
-
if
can_create_issue
%li
=
link_to
new_project_issue_path
(
@project
)
do
=
icon
(
'exclamation-circle fw'
)
#{
_
(
'New issue'
)
}
-
if
merge_project
%li
=
link_to
project_new_merge_request_path
(
merge_project
)
do
=
icon
(
'tasks fw'
)
#{
_
(
'New merge request'
)
}
-
if
can_create_snippet
%li
=
link_to
new_project_snippet_path
(
@project
)
do
=
icon
(
'file-text-o fw'
)
#{
_
(
'New snippet'
)
}
-
if
can_create_issue
||
merge_project
||
can_create_snippet
...
...
@@ -32,20 +29,16 @@
-
if
can?
(
current_user
,
:push_code
,
@project
)
%li
=
link_to
project_new_blob_path
(
@project
,
@project
.
default_branch
||
'master'
)
do
=
icon
(
'file fw'
)
#{
_
(
'New file'
)
}
%li
=
link_to
new_project_branch_path
(
@project
)
do
=
icon
(
'code-fork fw'
)
#{
_
(
'New branch'
)
}
%li
=
link_to
new_project_tag_path
(
@project
)
do
=
icon
(
'tags fw'
)
#{
_
(
'New tag'
)
}
-
elsif
current_user
&&
current_user
.
already_forked?
(
@project
)
%li
=
link_to
project_new_blob_path
(
@project
,
@project
.
default_branch
||
'master'
)
do
=
icon
(
'file fw'
)
#{
_
(
'New file'
)
}
-
elsif
can?
(
current_user
,
:fork_project
,
@project
)
%li
...
...
@@ -55,5 +48,4 @@
-
fork_path
=
project_forks_path
(
@project
,
namespace_key:
current_user
.
namespace
.
id
,
continue:
continue_params
)
=
link_to
fork_path
,
method: :post
do
=
icon
(
'file fw'
)
#{
_
(
'New file'
)
}
app/views/projects/tree/_old_tree_header.html.haml
View file @
7054afa3
...
...
@@ -20,15 +20,12 @@
-
if
can_edit_tree?
%li
=
link_to
project_new_blob_path
(
@project
,
@id
)
do
=
icon
(
'pencil fw'
)
#{
_
(
'New file'
)
}
%li
=
link_to
'#modal-upload-blob'
,
{
'data-target'
=>
'#modal-upload-blob'
,
'data-toggle'
=>
'modal'
}
do
=
icon
(
'file fw'
)
#{
_
(
'Upload file'
)
}
%li
=
link_to
'#modal-create-new-dir'
,
{
'data-target'
=>
'#modal-create-new-dir'
,
'data-toggle'
=>
'modal'
}
do
=
icon
(
'folder fw'
)
#{
_
(
'New directory'
)
}
-
elsif
can?
(
current_user
,
:fork_project
,
@project
)
%li
...
...
@@ -38,7 +35,6 @@
-
fork_path
=
project_forks_path
(
@project
,
namespace_key:
current_user
.
namespace
.
id
,
continue:
continue_params
)
=
link_to
fork_path
,
method: :post
do
=
icon
(
'pencil fw'
)
#{
_
(
'New file'
)
}
%li
-
continue_params
=
{
to:
request
.
fullpath
,
...
...
@@ -47,7 +43,6 @@
-
fork_path
=
project_forks_path
(
@project
,
namespace_key:
current_user
.
namespace
.
id
,
continue:
continue_params
)
=
link_to
fork_path
,
method: :post
do
=
icon
(
'file fw'
)
#{
_
(
'Upload file'
)
}
%li
-
continue_params
=
{
to:
request
.
fullpath
,
...
...
@@ -56,15 +51,12 @@
-
fork_path
=
project_forks_path
(
@project
,
namespace_key:
current_user
.
namespace
.
id
,
continue:
continue_params
)
=
link_to
fork_path
,
method: :post
do
=
icon
(
'folder fw'
)
#{
_
(
'New directory'
)
}
%li
.divider
%li
=
link_to
new_project_branch_path
(
@project
)
do
=
icon
(
'code-fork fw'
)
#{
_
(
'New branch'
)
}
%li
=
link_to
new_project_tag_path
(
@project
)
do
=
icon
(
'tags fw'
)
#{
_
(
'New tag'
)
}
spec/javascripts/pipelines/pipelines_artifacts_spec.js
View file @
7054afa3
...
...
@@ -34,7 +34,7 @@ describe('Pipelines Artifacts dropdown', () => {
).
toEqual
(
artifacts
[
0
].
path
);
expect
(
component
.
$el
.
querySelector
(
'.dropdown-menu li a
span
'
).
textContent
,
component
.
$el
.
querySelector
(
'.dropdown-menu li a'
).
textContent
,
).
toContain
(
artifacts
[
0
].
name
);
});
});
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