Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
pve-manager
Commits
f804bc78
Commit
f804bc78
authored
Jul 03, 2015
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
copy window/Migrate.js from manager to manager5
parent
593f5b2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
98 additions
and
0 deletions
+98
-0
Migrate.js
www/manager5/window/Migrate.js
+98
-0
No files found.
www/manager5/window/Migrate.js
0 → 100644
View file @
f804bc78
Ext
.
define
(
'
PVE.window.Migrate
'
,
{
extend
:
'
Ext.window.Window
'
,
resizable
:
false
,
migrate
:
function
(
target
,
online
)
{
var
me
=
this
;
PVE
.
Utils
.
API2Request
({
params
:
{
target
:
target
,
online
:
online
},
url
:
'
/nodes/
'
+
me
.
nodename
+
'
/
'
+
me
.
vmtype
+
'
/
'
+
me
.
vmid
+
"
/migrate
"
,
waitMsgTarget
:
me
,
method
:
'
POST
'
,
failure
:
function
(
response
,
opts
)
{
Ext
.
Msg
.
alert
(
gettext
(
'
Error
'
),
response
.
htmlStatus
);
},
success
:
function
(
response
,
options
)
{
var
upid
=
response
.
result
.
data
;
var
win
=
Ext
.
create
(
'
PVE.window.TaskViewer
'
,
{
upid
:
upid
});
win
.
show
();
me
.
close
();
}
});
},
initComponent
:
function
()
{
var
me
=
this
;
if
(
!
me
.
nodename
)
{
throw
"
no node name specified
"
;
}
if
(
!
me
.
vmid
)
{
throw
"
no VM ID specified
"
;
}
if
(
!
me
.
vmtype
)
{
throw
"
no VM type specified
"
;
}
var
running
=
false
;
var
vmrec
=
PVE
.
data
.
ResourceStore
.
findRecord
(
'
vmid
'
,
me
.
vmid
,
0
,
false
,
false
,
true
);
if
(
vmrec
&&
vmrec
.
data
&&
vmrec
.
data
.
running
)
{
running
=
true
;
}
me
.
formPanel
=
Ext
.
create
(
'
Ext.form.Panel
'
,
{
bodyPadding
:
10
,
border
:
false
,
fieldDefaults
:
{
labelWidth
:
100
,
anchor
:
'
100%
'
},
items
:
[
{
xtype
:
'
PVE.form.NodeSelector
'
,
name
:
'
target
'
,
fieldLabel
:
gettext
(
'
Target node
'
),
allowBlank
:
false
,
onlineValidator
:
true
},
{
xtype
:
'
pvecheckbox
'
,
name
:
'
online
'
,
uncheckedValue
:
0
,
defaultValue
:
0
,
checked
:
running
,
fieldLabel
:
gettext
(
'
Online
'
)
}
]
});
var
form
=
me
.
formPanel
.
getForm
();
var
submitBtn
=
Ext
.
create
(
'
Ext.Button
'
,
{
text
:
gettext
(
'
Migrate
'
),
handler
:
function
()
{
var
values
=
form
.
getValues
();
me
.
migrate
(
values
.
target
,
values
.
online
);
}
});
Ext
.
apply
(
me
,
{
title
:
gettext
(
'
Migrate
'
)
+
'
VM
'
+
me
.
vmid
,
width
:
350
,
modal
:
true
,
layout
:
'
auto
'
,
border
:
false
,
items
:
[
me
.
formPanel
],
buttons
:
[
submitBtn
]
});
me
.
callParent
();
}
});
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