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
4fbbef92
Commit
4fbbef92
authored
May 05, 2015
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
copy dc/Config.js from manager to manager5
parent
0ceb2f21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
106 additions
and
0 deletions
+106
-0
Config.js
www/manager5/dc/Config.js
+106
-0
No files found.
www/manager5/dc/Config.js
0 → 100644
View file @
4fbbef92
Ext
.
define
(
'
PVE.dc.Config
'
,
{
extend
:
'
PVE.panel.Config
'
,
alias
:
'
widget.PVE.dc.Config
'
,
initComponent
:
function
()
{
var
me
=
this
;
var
caps
=
Ext
.
state
.
Manager
.
get
(
'
GuiCap
'
);
me
.
items
=
[];
Ext
.
apply
(
me
,
{
title
:
gettext
(
"
Datacenter
"
),
hstateid
:
'
dctab
'
});
if
(
caps
.
dc
[
'
Sys.Audit
'
])
{
me
.
items
.
push
([
{
title
:
gettext
(
'
Summary
'
),
xtype
:
'
pveDcSummary
'
,
itemId
:
'
summary
'
},
{
xtype
:
'
pveDcOptionView
'
,
title
:
gettext
(
'
Options
'
),
itemId
:
'
options
'
}
]);
}
if
(
caps
.
storage
[
'
Datastore.Allocate
'
]
||
caps
.
dc
[
'
Sys.Audit
'
])
{
me
.
items
.
push
({
xtype
:
'
pveStorageView
'
,
title
:
gettext
(
'
Storage
'
),
itemId
:
'
storage
'
});
}
if
(
caps
.
dc
[
'
Sys.Audit
'
])
{
me
.
items
.
push
({
xtype
:
'
pveDcBackupView
'
,
title
:
gettext
(
'
Backup
'
),
itemId
:
'
backup
'
});
}
me
.
items
.
push
({
xtype
:
'
pveUserView
'
,
title
:
gettext
(
'
Users
'
),
itemId
:
'
users
'
});
if
(
caps
.
dc
[
'
Sys.Audit
'
])
{
me
.
items
.
push
([
{
xtype
:
'
pveGroupView
'
,
title
:
gettext
(
'
Groups
'
),
itemId
:
'
groups
'
},
{
xtype
:
'
pvePoolView
'
,
title
:
gettext
(
'
Pools
'
),
itemId
:
'
pools
'
},
{
xtype
:
'
pveACLView
'
,
title
:
gettext
(
'
Permissions
'
),
itemId
:
'
permissions
'
},
{
xtype
:
'
pveRoleView
'
,
title
:
gettext
(
'
Roles
'
),
itemId
:
'
roles
'
},
{
xtype
:
'
pveAuthView
'
,
title
:
gettext
(
'
Authentication
'
),
itemId
:
'
domains
'
},
{
xtype
:
'
pveHAPanel
'
,
title
:
'
HA
'
,
phstateid
:
me
.
hstateid
,
itemId
:
'
ha
'
},
{
xtype
:
'
pveFirewallPanel
'
,
title
:
gettext
(
'
Firewall
'
),
base_url
:
'
/cluster/firewall
'
,
fwtype
:
'
dc
'
,
phstateid
:
me
.
hstateid
,
itemId
:
'
firewall
'
}
]);
me
.
items
.
push
({
xtype
:
'
pveDcSupport
'
,
title
:
gettext
(
'
Support
'
),
itemId
:
'
support
'
});
}
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