Commit 75b3110d authored by Emmanuel Kasper's avatar Emmanuel Kasper Committed by Dietmar Maurer

Add comment header for important classes, idea taken from Workspace.js

parent 52b66d6e
/*
* 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',
......
/* 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',
......
/* 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',
......
/*
* 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'],
......
/*
* 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',
......
/*
* 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'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment