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
75b3110d
Commit
75b3110d
authored
May 28, 2015
by
Emmanuel Kasper
Committed by
Dietmar Maurer
May 29, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comment header for important classes, idea taken from Workspace.js
parent
52b66d6e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
0 deletions
+21
-0
Config.js
www/manager5/dc/Config.js
+4
-0
Log.js
www/manager5/dc/Log.js
+4
-0
Tasks.js
www/manager5/dc/Tasks.js
+4
-0
ViewSelector.js
www/manager5/form/ViewSelector.js
+3
-0
StatusPanel.js
www/manager5/panel/StatusPanel.js
+3
-0
ResourceTree.js
www/manager5/tree/ResourceTree.js
+3
-0
No files found.
www/manager5/dc/Config.js
View file @
75b3110d
/*
* Main config panel, located in Center of the ViewPort
*/
Ext
.
define
(
'
PVE.dc.Config
'
,
{
Ext
.
define
(
'
PVE.dc.Config
'
,
{
extend
:
'
PVE.panel.Config
'
,
extend
:
'
PVE.panel.Config
'
,
alias
:
'
widget.PVE.dc.Config
'
,
alias
:
'
widget.PVE.dc.Config
'
,
...
...
www/manager5/dc/Log.js
View file @
75b3110d
/* This class defines the "Cluster log" tab of the bottom status panel
* A log entry is a timestamp associated with an action on a cluster
*/
Ext
.
define
(
'
PVE.dc.Log
'
,
{
Ext
.
define
(
'
PVE.dc.Log
'
,
{
extend
:
'
Ext.grid.GridPanel
'
,
extend
:
'
Ext.grid.GridPanel
'
,
...
...
www/manager5/dc/Tasks.js
View file @
75b3110d
/* This class defines the "Tasks" tab of the bottom status panel
* Tasks are jobs with a start, end and log output
*/
Ext
.
define
(
'
PVE.dc.Tasks
'
,
{
Ext
.
define
(
'
PVE.dc.Tasks
'
,
{
extend
:
'
Ext.grid.GridPanel
'
,
extend
:
'
Ext.grid.GridPanel
'
,
...
...
www/manager5/form/ViewSelector.js
View file @
75b3110d
/*
* Top left combobox, used to select a view of the underneath RessourceTree
*/
Ext
.
define
(
'
PVE.form.ViewSelector
'
,
{
Ext
.
define
(
'
PVE.form.ViewSelector
'
,
{
extend
:
'
Ext.form.field.ComboBox
'
,
extend
:
'
Ext.form.field.ComboBox
'
,
alias
:
[
'
widget.pveViewSelector
'
],
alias
:
[
'
widget.pveViewSelector
'
],
...
...
www/manager5/panel/StatusPanel.js
View file @
75b3110d
/*
* This class describes the bottom panel
*/
Ext
.
define
(
'
PVE.panel.StatusPanel
'
,
{
Ext
.
define
(
'
PVE.panel.StatusPanel
'
,
{
extend
:
'
Ext.tab.Panel
'
,
extend
:
'
Ext.tab.Panel
'
,
alias
:
'
widget.pveStatusPanel
'
,
alias
:
'
widget.pveStatusPanel
'
,
...
...
www/manager5/tree/ResourceTree.js
View file @
75b3110d
/*
* Left Treepanel, containing all the ressources we manage in this datacenter: server nodes, server storages, VMs and Containers
*/
Ext
.
define
(
'
PVE.tree.ResourceTree
'
,
{
Ext
.
define
(
'
PVE.tree.ResourceTree
'
,
{
extend
:
'
Ext.tree.TreePanel
'
,
extend
:
'
Ext.tree.TreePanel
'
,
alias
:
[
'
widget.pveResourceTree
'
],
alias
:
[
'
widget.pveResourceTree
'
],
...
...
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