Changed the class name for each plugin because Javascript gets confused and won't load the pages correctly.
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@6845 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
		@@ -7,7 +7,7 @@ $(document).ready(function(){
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
var blade = function() {
 | 
			
		||||
var bladePlugin = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -18,7 +18,7 @@ var blade = function() {
 | 
			
		||||
 *            Data from HTTP request
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
blade.prototype.loadInventory = function(data) {
 | 
			
		||||
bladePlugin.prototype.loadInventory = function(data) {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -29,7 +29,7 @@ blade.prototype.loadInventory = function(data) {
 | 
			
		||||
 *            Source node to clone
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
blade.prototype.loadClonePage = function(node) {
 | 
			
		||||
bladePlugin.prototype.loadClonePage = function(node) {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -40,7 +40,7 @@ blade.prototype.loadClonePage = function(node) {
 | 
			
		||||
 *            The provision tab ID
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
blade.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
bladePlugin.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
	var errMsg;
 | 
			
		||||
 | 
			
		||||
	// Get the OS image names
 | 
			
		||||
@@ -213,6 +213,6 @@ blade.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
blade.prototype.loadResources = function() {
 | 
			
		||||
bladePlugin.prototype.loadResources = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
@@ -7,7 +7,7 @@ $(document).ready(function(){
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
var fsp = function() {
 | 
			
		||||
var fspPlugin = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -18,7 +18,7 @@ var fsp = function() {
 | 
			
		||||
 *            Data from HTTP request
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
fsp.prototype.loadInventory = function(data) {
 | 
			
		||||
fspPlugin.prototype.loadInventory = function(data) {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -29,7 +29,7 @@ fsp.prototype.loadInventory = function(data) {
 | 
			
		||||
 *            Source node to clone
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
fsp.prototype.loadClonePage = function(node) {
 | 
			
		||||
fspPlugin.prototype.loadClonePage = function(node) {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -40,7 +40,7 @@ fsp.prototype.loadClonePage = function(node) {
 | 
			
		||||
 *            The provision tab ID
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
fsp.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
fspPlugin.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
	var errMsg;
 | 
			
		||||
 | 
			
		||||
	// Get the OS image names
 | 
			
		||||
@@ -213,6 +213,6 @@ fsp.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
fsp.prototype.loadResources = function() {
 | 
			
		||||
fspPlugin.prototype.loadResources = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
@@ -7,7 +7,7 @@ $(document).ready(function(){
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
var hmc = function() {
 | 
			
		||||
var hmcPlugin = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -18,7 +18,7 @@ var hmc = function() {
 | 
			
		||||
 *            Data from HTTP request
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
hmc.prototype.loadInventory = function(data) {
 | 
			
		||||
hmcPlugin.prototype.loadInventory = function(data) {
 | 
			
		||||
	var args = data.msg.split(',');
 | 
			
		||||
 | 
			
		||||
	// Get tab ID
 | 
			
		||||
@@ -63,7 +63,7 @@ hmc.prototype.loadInventory = function(data) {
 | 
			
		||||
 *            Source node to clone
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
hmc.prototype.loadClonePage = function(node) {
 | 
			
		||||
hmcPlugin.prototype.loadClonePage = function(node) {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -74,7 +74,7 @@ hmc.prototype.loadClonePage = function(node) {
 | 
			
		||||
 *            The provision tab ID
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
hmc.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
hmcPlugin.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
	var errMsg;
 | 
			
		||||
 | 
			
		||||
	// Get the OS image names
 | 
			
		||||
@@ -247,6 +247,6 @@ hmc.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
hmc.prototype.loadResources = function() {
 | 
			
		||||
hmcPlugin.prototype.loadResources = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
@@ -7,7 +7,7 @@ $(document).ready(function(){
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
var ipmi = function() {
 | 
			
		||||
var ipmiPlugin = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -18,7 +18,7 @@ var ipmi = function() {
 | 
			
		||||
 *            Data from HTTP request
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
ipmi.prototype.loadInventory = function(data) {
 | 
			
		||||
ipmiPlugin.prototype.loadInventory = function(data) {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -29,7 +29,7 @@ ipmi.prototype.loadInventory = function(data) {
 | 
			
		||||
 *            Source node to clone
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
ipmi.prototype.loadClonePage = function(node) {
 | 
			
		||||
ipmiPlugin.prototype.loadClonePage = function(node) {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -40,7 +40,7 @@ ipmi.prototype.loadClonePage = function(node) {
 | 
			
		||||
 *            The provision tab ID
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
ipmi.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
ipmiPlugin.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
	var errMsg;
 | 
			
		||||
 | 
			
		||||
	// Get the OS image names
 | 
			
		||||
@@ -213,6 +213,6 @@ ipmi.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
ipmi.prototype.loadResources = function() {
 | 
			
		||||
ipmiPlugin.prototype.loadResources = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
@@ -7,7 +7,7 @@ $(document).ready(function(){
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
var ivm = function() {
 | 
			
		||||
var ivmPlugin = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -18,7 +18,7 @@ var ivm = function() {
 | 
			
		||||
 *            Data from HTTP request
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
ivm.prototype.loadInventory = function(data) {
 | 
			
		||||
ivmPlugin.prototype.loadInventory = function(data) {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -29,7 +29,7 @@ ivm.prototype.loadInventory = function(data) {
 | 
			
		||||
 *            Source node to clone
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
ivm.prototype.loadClonePage = function(node) {
 | 
			
		||||
ivmPlugin.prototype.loadClonePage = function(node) {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -40,7 +40,7 @@ ivm.prototype.loadClonePage = function(node) {
 | 
			
		||||
 *            The provision tab ID
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
ivm.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
ivmPlugin.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
	var errMsg;
 | 
			
		||||
 | 
			
		||||
	// Get the OS image names
 | 
			
		||||
@@ -213,6 +213,6 @@ ivm.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
ivm.prototype.loadResources = function() {
 | 
			
		||||
ivmPlugin.prototype.loadResources = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
@@ -8,7 +8,7 @@ $(document).ready(function() {
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
var zvm = function() {
 | 
			
		||||
var zvmPlugin = function() {
 | 
			
		||||
	
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@@ -19,7 +19,7 @@ var zvm = function() {
 | 
			
		||||
 *            Source node to clone
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
zvm.prototype.loadClonePage = function(node) {
 | 
			
		||||
zvmPlugin.prototype.loadClonePage = function(node) {
 | 
			
		||||
	// Get nodes tab
 | 
			
		||||
	var tab = getNodesTab();
 | 
			
		||||
	var newTabId = node + 'CloneTab';
 | 
			
		||||
@@ -279,7 +279,7 @@ zvm.prototype.loadClonePage = function(node) {
 | 
			
		||||
 *            Data from HTTP request
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
zvm.prototype.loadInventory = function(data) {
 | 
			
		||||
zvmPlugin.prototype.loadInventory = function(data) {
 | 
			
		||||
	var args = data.msg.split(',');
 | 
			
		||||
 | 
			
		||||
	// Get tab ID
 | 
			
		||||
@@ -907,7 +907,7 @@ zvm.prototype.loadInventory = function(data) {
 | 
			
		||||
 *            The provision tab ID
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
zvm.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
zvmPlugin.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
	var errMsg;
 | 
			
		||||
 | 
			
		||||
	// Get the OS image names
 | 
			
		||||
@@ -1359,7 +1359,7 @@ zvm.prototype.loadProvisionPage = function(tabId) {
 | 
			
		||||
 * 
 | 
			
		||||
 * @return Nothing
 | 
			
		||||
 */
 | 
			
		||||
zvm.prototype.loadResources = function() {
 | 
			
		||||
zvmPlugin.prototype.loadResources = function() {
 | 
			
		||||
	// Reset resource table
 | 
			
		||||
	setDiskDataTable('');
 | 
			
		||||
	setNetworkDataTable('');
 | 
			
		||||
 
 | 
			
		||||
@@ -112,22 +112,22 @@ function loadMonitorPage() {
 | 
			
		||||
			var plugin;
 | 
			
		||||
			switch(hw) {
 | 
			
		||||
				case "blade":
 | 
			
		||||
		    		plugin = new blade();
 | 
			
		||||
		    		plugin = new bladePlugin();
 | 
			
		||||
		    		break;
 | 
			
		||||
				case "fsp":
 | 
			
		||||
					plugin = new fsp();
 | 
			
		||||
					plugin = new fspPlugin();
 | 
			
		||||
					break;
 | 
			
		||||
				case "hmc":
 | 
			
		||||
					plugin = new hmc();
 | 
			
		||||
					plugin = new hmcPlugin();
 | 
			
		||||
					break;
 | 
			
		||||
				case "ipmi":
 | 
			
		||||
					plugin = new ipmi();
 | 
			
		||||
					plugin = new ipmiPlugin();
 | 
			
		||||
					break;		
 | 
			
		||||
				case "ivm":
 | 
			
		||||
					plugin = new ivm();
 | 
			
		||||
					plugin = new ivmPlugin();
 | 
			
		||||
					break;
 | 
			
		||||
				case "zvm":
 | 
			
		||||
					plugin = new zvm();
 | 
			
		||||
					plugin = new zvmPlugin();
 | 
			
		||||
					break;
 | 
			
		||||
			}
 | 
			
		||||
			
 | 
			
		||||
 
 | 
			
		||||
@@ -287,22 +287,22 @@ function loadNodes(data) {
 | 
			
		||||
			var plugin;
 | 
			
		||||
			switch(mgt) {
 | 
			
		||||
				case "blade":
 | 
			
		||||
		    		plugin = new blade();
 | 
			
		||||
		    		plugin = new bladePlugin();
 | 
			
		||||
		    		break;
 | 
			
		||||
				case "fsp":
 | 
			
		||||
					plugin = new fsp();
 | 
			
		||||
					plugin = new fspPlugin();
 | 
			
		||||
					break;
 | 
			
		||||
				case "hmc":
 | 
			
		||||
					plugin = new hmc();
 | 
			
		||||
					plugin = new hmcPlugin();
 | 
			
		||||
					break;
 | 
			
		||||
				case "ipmi":
 | 
			
		||||
					plugin = new ipmi();
 | 
			
		||||
					plugin = new ipmiPlugin();
 | 
			
		||||
					break;		
 | 
			
		||||
				case "ivm":
 | 
			
		||||
					plugin = new ivm();
 | 
			
		||||
					plugin = new ivmPlugin();
 | 
			
		||||
					break;
 | 
			
		||||
				case "zvm":
 | 
			
		||||
					plugin = new zvm();
 | 
			
		||||
					plugin = new zvmPlugin();
 | 
			
		||||
					break;
 | 
			
		||||
			}
 | 
			
		||||
			
 | 
			
		||||
@@ -613,22 +613,22 @@ function loadNode(e) {
 | 
			
		||||
	var plugin;
 | 
			
		||||
	switch(mgt) {
 | 
			
		||||
		case "blade":
 | 
			
		||||
    		plugin = new blade();
 | 
			
		||||
    		plugin = new bladePlugin();
 | 
			
		||||
    		break;
 | 
			
		||||
		case "fsp":
 | 
			
		||||
			plugin = new fsp();
 | 
			
		||||
			plugin = new fspPlugin();
 | 
			
		||||
			break;
 | 
			
		||||
		case "hmc":
 | 
			
		||||
			plugin = new hmc();
 | 
			
		||||
			plugin = new hmcPlugin();
 | 
			
		||||
			break;
 | 
			
		||||
		case "ipmi":
 | 
			
		||||
			plugin = new ipmi();
 | 
			
		||||
			plugin = new ipmiPlugin();
 | 
			
		||||
			break;		
 | 
			
		||||
		case "ivm":
 | 
			
		||||
			plugin = new ivm();
 | 
			
		||||
			plugin = new ivmPlugin();
 | 
			
		||||
			break;
 | 
			
		||||
		case "zvm":
 | 
			
		||||
			plugin = new zvm();
 | 
			
		||||
			plugin = new zvmPlugin();
 | 
			
		||||
			break;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -102,22 +102,22 @@ function loadProvisionPage() {
 | 
			
		||||
		var plugin;
 | 
			
		||||
		switch(hw) {
 | 
			
		||||
			case "blade":
 | 
			
		||||
	    		plugin = new blade();
 | 
			
		||||
	    		plugin = new bladePlugin();
 | 
			
		||||
	    		break;
 | 
			
		||||
			case "fsp":
 | 
			
		||||
				plugin = new fsp();
 | 
			
		||||
				plugin = new fspPlugin();
 | 
			
		||||
				break;
 | 
			
		||||
			case "hmc":
 | 
			
		||||
				plugin = new hmc();
 | 
			
		||||
				plugin = new hmcPlugin();
 | 
			
		||||
				break;
 | 
			
		||||
			case "ipmi":
 | 
			
		||||
				plugin = new ipmi();
 | 
			
		||||
				plugin = new ipmiPlugin();
 | 
			
		||||
				break;		
 | 
			
		||||
			case "ivm":
 | 
			
		||||
				plugin = new ivm();
 | 
			
		||||
				plugin = new ivmPlugin();
 | 
			
		||||
				break;
 | 
			
		||||
			case "zvm":
 | 
			
		||||
				plugin = new zvm();
 | 
			
		||||
				plugin = new zvmPlugin();
 | 
			
		||||
				break;
 | 
			
		||||
		}
 | 
			
		||||
		
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user