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
d8767789
Commit
d8767789
authored
Oct 03, 2013
by
Michael Rasmussen
Committed by
Dietmar Maurer
Oct 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZFS-gui-reworked-so-that-unused-config-is-dropped
Signed-off-by:
Michael Rasmussen
<
mir@datanom.net
>
parent
54338383
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
145 additions
and
0 deletions
+145
-0
ZFSEdit.js
www/manager/storage/ZFSEdit.js
+145
-0
No files found.
www/manager/storage/ZFSEdit.js
0 → 100644
View file @
d8767789
Ext
.
define
(
'
PVE.storage.ZFSInputPanel
'
,
{
extend
:
'
PVE.panel.InputPanel
'
,
onGetValues
:
function
(
values
)
{
var
me
=
this
;
if
(
me
.
create
)
{
values
.
type
=
'
zfs
'
;
values
.
content
=
'
images
'
;
}
else
{
delete
values
.
storage
;
}
values
.
disable
=
values
.
enable
?
0
:
1
;
delete
values
.
enable
;
return
values
;
},
initComponent
:
function
()
{
var
me
=
this
;
me
.
column1
=
[
{
xtype
:
me
.
create
?
'
textfield
'
:
'
displayfield
'
,
name
:
'
storage
'
,
height
:
22
,
// hack: set same height as text fields
value
:
me
.
storageId
||
''
,
fieldLabel
:
'
ID
'
,
vtype
:
'
StorageId
'
,
allowBlank
:
false
},
{
xtype
:
me
.
create
?
'
textfield
'
:
'
displayfield
'
,
name
:
'
portal
'
,
height
:
22
,
// hack: set same height as text fields
value
:
''
,
fieldLabel
:
gettext
(
'
Portal
'
),
allowBlank
:
false
},
{
xtype
:
me
.
create
?
'
textfield
'
:
'
displayfield
'
,
name
:
'
pool
'
,
height
:
22
,
// hack: set same height as text fields
value
:
''
,
fieldLabel
:
gettext
(
'
Pool
'
),
allowBlank
:
false
},
{
xtype
:
me
.
create
?
'
textfield
'
:
'
displayfield
'
,
name
:
'
target
'
,
height
:
22
,
// hack: set same height as text fields
value
:
'
iqn.2010-09.org.openindiana:omnios:....
'
,
fieldLabel
:
gettext
(
'
Target
'
),
allowBlank
:
false
}
];
me
.
column2
=
[
{
xtype
:
'
pvecheckbox
'
,
name
:
'
enable
'
,
checked
:
true
,
uncheckedValue
:
0
,
fieldLabel
:
gettext
(
'
Enable
'
)
},
{
xtype
:
me
.
create
?
'
textfield
'
:
'
displayfield
'
,
name
:
'
blocksize
'
,
height
:
22
,
// hack: set same height as text fields
value
:
'
4k
'
,
fieldLabel
:
gettext
(
'
Block Size
'
),
allowBlank
:
false
},
{
xtype
:
me
.
create
?
'
textfield
'
:
'
displayfield
'
,
name
:
'
iscsiprovider
'
,
height
:
22
,
// hack: set same height as text fields
value
:
'
Comstar
'
,
fieldLabel
:
gettext
(
'
iSCSI Provider
'
),
allowBlank
:
false
}
];
if
(
me
.
create
||
me
.
storageId
!==
'
local
'
)
{
me
.
column2
.
unshift
({
xtype
:
'
PVE.form.NodeSelector
'
,
name
:
'
nodes
'
,
fieldLabel
:
gettext
(
'
Nodes
'
),
emptyText
:
gettext
(
'
All
'
)
+
'
(
'
+
gettext
(
'
No restrictions
'
)
+
'
)
'
,
multiSelect
:
true
,
autoSelect
:
false
});
}
me
.
callParent
();
}
});
Ext
.
define
(
'
PVE.storage.ZFSEdit
'
,
{
extend
:
'
PVE.window.Edit
'
,
initComponent
:
function
()
{
var
me
=
this
;
me
.
create
=
!
me
.
storageId
;
if
(
me
.
create
)
{
me
.
url
=
'
/api2/extjs/storage
'
;
me
.
method
=
'
POST
'
;
}
else
{
me
.
url
=
'
/api2/extjs/storage/
'
+
me
.
storageId
;
me
.
method
=
'
PUT
'
;
}
var
ipanel
=
Ext
.
create
(
'
PVE.storage.ZFSInputPanel
'
,
{
create
:
me
.
create
,
storageId
:
me
.
storageId
});
Ext
.
apply
(
me
,
{
subject
:
'
ZFS Storage
'
,
isAdd
:
true
,
items
:
[
ipanel
]
});
me
.
callParent
();
if
(
!
me
.
create
)
{
me
.
load
({
success
:
function
(
response
,
options
)
{
var
values
=
response
.
result
.
data
;
if
(
values
.
nodes
)
{
values
.
nodes
=
values
.
nodes
.
split
(
'
,
'
);
}
values
.
enable
=
values
.
disable
?
0
:
1
;
ipanel
.
setValues
(
values
);
}
});
}
}
});
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