]> git.proxmox.com Git - pve-manager.git/commitdiff
Add comment header for important classes, idea taken from Workspace.js
authorEmmanuel Kasper <e.kasper@proxmox.com>
Thu, 28 May 2015 09:56:27 +0000 (11:56 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 29 May 2015 07:05:48 +0000 (09:05 +0200)
www/manager5/dc/Config.js
www/manager5/dc/Log.js
www/manager5/dc/Tasks.js
www/manager5/form/ViewSelector.js
www/manager5/panel/StatusPanel.js
www/manager5/tree/ResourceTree.js

index aa9c0f8a84e92e61411d2c176030382f9113b505..d929085a274ee2e0e30e610ecfd00fe23310344e 100644 (file)
@@ -1,3 +1,7 @@
+/*
+ * Main config panel, located in Center of the ViewPort
+ */
+
 Ext.define('PVE.dc.Config', {
     extend: 'PVE.panel.Config',
     alias: 'widget.PVE.dc.Config',
index f3db5d4cf07f65a2091c77f43e837636cda37204..4bd76b778c1ce0afa636eaeb88ad7bd9d188b97f 100644 (file)
@@ -1,3 +1,7 @@
+/* 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', {
     extend: 'Ext.grid.GridPanel',
 
index 25fd51b0836dc267c7c0b22617bdb00bb44d5aab..1e81ef7fae5377e14df30c2c570d1989cb97b6f3 100644 (file)
@@ -1,3 +1,7 @@
+/* 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', {
     extend: 'Ext.grid.GridPanel',
 
index 1a623b862cf398226fa7190be8e4f2e4b0f8a371..74f45075e8eefe7cbadfb5acb55f75c2d5813258 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * Top left combobox, used to select a view of the underneath RessourceTree
+ */
 Ext.define('PVE.form.ViewSelector', {
     extend: 'Ext.form.field.ComboBox',
     alias: ['widget.pveViewSelector'],
index 0c5beb450dfeb96cc2d6be051de8cd15b04000a6..92d4d99e3102f8739e01f64a4dbdff36495c6bb6 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * This class describes the bottom panel
+ */
 Ext.define('PVE.panel.StatusPanel', {
     extend: 'Ext.tab.Panel',
     alias: 'widget.pveStatusPanel',
index ca7691b826952e4361c9afc00d94a6f1b42f805e..48c1da6603026aba4475206fa54c06985dacf72d 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ * Left Treepanel, containing all the ressources we manage in this datacenter: server nodes, server storages, VMs and Containers
+ */
 Ext.define('PVE.tree.ResourceTree', {
     extend: 'Ext.tree.TreePanel',
     alias: ['widget.pveResourceTree'],