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
828f6daf
Commit
828f6daf
authored
Jun 02, 2015
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove UBC GUI
parent
5762504d
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
79 deletions
+0
-79
Nodes.pm
PVE/API2/Nodes.pm
+0
-1
Makefile
www/manager/Makefile
+0
-1
BCFailCnt.js
www/manager/node/BCFailCnt.js
+0
-66
Config.js
www/manager/node/Config.js
+0
-11
No files found.
PVE/API2/Nodes.pm
View file @
828f6daf
...
...
@@ -144,7 +144,6 @@ __PACKAGE__->register_method ({
{
name
=>
'
qemu
'
},
{
name
=>
'
lxc
'
},
{
name
=>
'
vzdump
'
},
{
name
=>
'
ubcfailcnt
'
},
{
name
=>
'
network
'
},
{
name
=>
'
aplinfo
'
},
{
name
=>
'
startall
'
},
...
...
www/manager/Makefile
View file @
828f6daf
...
...
@@ -103,7 +103,6 @@ JSSRC= \
node/TimeView.js
\
node/TimeEdit.js
\
node/StatusView.js
\
node/BCFailCnt.js
\
node/Summary.js
\
node/ServiceView.js
\
node/NetworkEdit.js
\
...
...
www/manager/node/BCFailCnt.js
deleted
100644 → 0
View file @
5762504d
/*jslint confusion: true */
Ext
.
define
(
'
PVE.node.BCFailCnt
'
,
{
extend
:
'
Ext.grid.GridPanel
'
,
alias
:
[
'
widget.pveNodeBCFailCnt
'
],
initComponent
:
function
()
{
var
me
=
this
;
var
nodename
=
me
.
pveSelNode
.
data
.
node
;
if
(
!
nodename
)
{
throw
"
no node name specified
"
;
}
var
store
=
new
Ext
.
data
.
Store
({
model
:
'
pve-openvz-ubc
'
,
proxy
:
{
type
:
'
pve
'
,
url
:
'
/api2/json/nodes/
'
+
nodename
+
'
/ubcfailcnt
'
},
sorters
:
[
{
property
:
'
id
'
,
direction
:
'
ASC
'
}
]
});
var
reload
=
function
()
{
store
.
load
();
};
Ext
.
applyIf
(
me
,
{
store
:
store
,
stateful
:
false
,
columns
:
[
{
header
:
'
Container
'
,
width
:
100
,
dataIndex
:
'
id
'
},
{
header
:
'
failcnt
'
,
flex
:
1
,
dataIndex
:
'
failcnt
'
}
],
listeners
:
{
show
:
reload
,
itemdblclick
:
function
(
v
,
record
)
{
var
ws
=
me
.
up
(
'
pveStdWorkspace
'
);
ws
.
selectById
(
'
openvz/
'
+
record
.
data
.
id
);
}
}
});
me
.
callParent
();
}
},
function
()
{
Ext
.
define
(
'
pve-openvz-ubc
'
,
{
extend
:
"
Ext.data.Model
"
,
fields
:
[
'
id
'
,
{
name
:
'
failcnt
'
,
type
:
'
number
'
}
]
});
});
www/manager/node/Config.js
View file @
828f6daf
...
...
@@ -181,17 +181,6 @@ Ext.define('PVE.node.Config', {
}
]);
if
(
caps
.
nodes
[
'
Sys.Audit
'
])
{
me
.
items
.
push
([
{
title
:
'
UBC
'
,
itemId
:
'
ubc
'
,
xtype
:
'
pveNodeBCFailCnt
'
}
]);
}
me
.
items
.
push
([
{
title
:
gettext
(
'
Subscription
'
),
...
...
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