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
28b0208e
Commit
28b0208e
authored
Apr 26, 2016
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring, mainly UI stuff to follow other import actions
parent
4037a738
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
76 additions
and
16 deletions
+76
-16
app/controllers/import/gitlab_projects_controller.rb
app/controllers/import/gitlab_projects_controller.rb
+3
-4
app/views/import/gitlab_projects/new.html.haml
app/views/import/gitlab_projects/new.html.haml
+17
-0
app/views/import/gitlab_projects/status.html.haml
app/views/import/gitlab_projects/status.html.haml
+55
-0
app/views/projects/_project_import_form.html.haml
app/views/projects/_project_import_form.html.haml
+0
-8
app/views/projects/new.html.haml
app/views/projects/new.html.haml
+1
-3
config/routes.rb
config/routes.rb
+0
-1
No files found.
app/controllers/import/gitlab_project_controller.rb
→
app/controllers/import/gitlab_project
s
_controller.rb
View file @
28b0208e
class
Import::GitlabProjectController
<
Import
::
BaseController
class
Import::GitlabProject
s
Controller
<
Import
::
BaseController
before_action
:verify_gitlab_project_import_enabled
before_action
:gitlab_project_auth
,
except: :callback
#
before_action :gitlab_project_auth, except: :callback
rescue_from
OAuth
::
Error
,
with: :gitlab_project_unauthorized
#TODO permissions stuff
def
callback
def
new
redirect_to
status_import_gitlab_project_url
end
def
status
...
...
app/views/import/gitlab_projects/new.html.haml
0 → 100644
View file @
28b0208e
-
page_title
"FogBugz Import"
-
header_title
"Projects"
,
root_path
%h3
.page-title
%i
.fa.fa-bug
Import projects from FogBugz
%hr
=
form_tag
status_import_gitlab_project_url
,
class:
'form-horizontal'
do
%p
To get started you add your project export file below.
.form-group
=
label_tag
:file
,
class:
'control-label'
do
%span
GitLab export file
.col-sm-10
=
file_field_tag
:file
,
class:
''
.form-actions
=
submit_tag
'Continue to the next step'
,
class:
'btn btn-create'
app/views/import/gitlab_projects/status.html.haml
0 → 100644
View file @
28b0208e
-
page_title
"Gitlab_project import"
-
header_title
"Projects"
,
root_path
%h3
.page-title
%i
.icon-gitlab.icon-gitlab-big
Import Gitlab projects
%p
.light
Select projects you want to import.
%hr
%p
=
button_tag
class:
"btn btn-import btn-success js-import-all"
do
Import all projects
=
icon
(
"spinner spin"
,
class:
"loading-icon"
)
.table-responsive
%table
.table.import-jobs
%colgroup
.import-jobs-from-col
%colgroup
.import-jobs-to-col
%colgroup
.import-jobs-status-col
%thead
%tr
%th
From Gitlab_project.org
%th
To GitLab
%th
Status
%tbody
-
@already_added_projects
.
each
do
|
project
|
%tr
{
id:
"project_#{project.id}"
,
class:
"#{project_status_css_class(project.import_status)}"
}
%td
=
link_to
project
.
import_source
,
"https://gitlab_project.org/
#{
project
.
import_source
}
"
,
target:
"_blank"
%td
=
link_to
project
.
path_with_namespace
,
[
project
.
namespace
.
becomes
(
Namespace
),
project
]
%td
.job-status
-
if
project
.
import_status
==
'finished'
%span
%i
.fa.fa-check
done
-
elsif
project
.
import_status
==
'started'
%i
.fa.fa-spinner.fa-spin
started
-
else
=
project
.
human_import_status_name
-
@repos
.
each
do
|
repo
|
%tr
{
id:
"repo_#{repo.id}"
}
%td
=
link_to
repo
.
full_name
,
"https://gitlab_project.org/
#{
repo
.
full_name
}
"
,
target:
"_blank"
%td
.import-target
=
repo
.
full_name
%td
.import-actions.job-status
=
button_tag
class:
"btn btn-import js-add-to-import"
do
Import
=
icon
(
"spinner spin"
,
class:
"loading-icon"
)
:javascript
new
ImporterStatus
(
"
#{
jobs_import_gitlab_project_path
}
"
,
"
#{
import_gitlab_project_path
}
"
);
app/views/projects/_project_import_form.html.haml
deleted
100644 → 0
View file @
4037a738
.form-group.import-url-data
=
f
.
label
:import_url
,
class:
'control-label'
do
%span
GitLab export file
.col-sm-10
=
f
.
file_field
:file
,
class:
''
.well.prepend-top-20
The project must have a valid Gitlab export format
\ No newline at end of file
app/views/projects/new.html.haml
View file @
28b0208e
...
...
@@ -91,14 +91,12 @@
%span
Repo by URL
-
if
gitlab_project_import_enabled?
=
link_to
"#"
,
class:
'btn import_gitlab_project'
,
onclick:
'$(".js-toggle-content2").toggle();
'
do
=
link_to
new_import_gitlab_project_path
,
class:
'btn import_gitlab_project
'
do
%i
.fa.fa-gitlab
%span
GitLab project
.js-toggle-content.hide
=
render
"shared/import_form"
,
f:
f
.js-toggle-content2.hide
=
render
"project_import_form"
,
f:
f
.prepend-botton-10
...
...
config/routes.rb
View file @
28b0208e
...
...
@@ -159,7 +159,6 @@ Rails.application.routes.draw do
resource
:gitlab_project
,
only:
[
:create
,
:new
],
controller: :gitlab_projects
do
get
:status
get
:callback
get
:jobs
end
end
...
...
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