From bf7e1d23030bc503c2b0561464f0358fc9bc6788 Mon Sep 17 00:00:00 2001 From: xq2005 Date: Fri, 15 Jun 2012 09:13:32 +0000 Subject: [PATCH] add more input area to create the setup configure file git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13102 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/js/custom/hmc.js | 61 +++++++++++++++++++++++++++++----------- 1 file changed, 44 insertions(+), 17 deletions(-) diff --git a/xCAT-UI/js/custom/hmc.js b/xCAT-UI/js/custom/hmc.js index 589c397de..a3281f65a 100644 --- a/xCAT-UI/js/custom/hmc.js +++ b/xCAT-UI/js/custom/hmc.js @@ -489,7 +489,7 @@ function powerInitBasicPattern() { var showString = '

' + steps[currentStep] + '

'; showString += ''; - showString += ''; + showString += ''; showString += '' + + ''; - showString += ''; + showString += ''; showString += ''; showString += ''; - showString += ''; + showString += ''; showString += ''; + + '">'; - showString += ''; + showString += ''; showString += ''; showString += ''; - showString += ''; + showString += ''; + + showString += ''; + showString += '' + + '' + + '' + + '' + + ''; showString += '

Frames:

Frames:
Name Range:Vlan2 IP Header:

Drawers:

Drawers:
Name Range:Number of LPARs per Drawer:

Lpars:

Lpars:
Name Range:
Starting IP Adress:

HMCs:

HMCs:
Name Range:Number of Frames per HMC:
Hardware Managment:HMC  '; + showString += '
Starting IP Adress:Hardware Managment:HMC  '; showString += 'DFM
Building Block
Frame amount per BB:CEC amount per BB:
'; $('#discoverContentDiv').append(showString); @@ -603,6 +616,30 @@ function checkBasicPattern(operType) { if (!frameNumPerHmc) { errMessage += 'Input the Frame Number Per HMC.
'; } + + if (!getDiscoverEnv('vlan1ip')){ + errMessage += 'Input the Vlan 1 IP Header.
'; + } + + if (!getDiscoverEnv('vlan2ip')){ + errMessage += 'Input the Vlan 2 IP Header.
'; + } + + if (!getDiscoverEnv('lparstartip')){ + errMessage += 'Input the Lpars\' Starting IP Adress.
'; + } + + if (!getDiscoverEnv('hmcstartip')){ + errMessage += 'Input the HMCs\' Starting IP Adress.
'; + } + + if (!getDiscoverEnv('framepbb')){ + errMessage += 'Input the Frame amount per BB.
'; + } + + if (!getDiscoverEnv('cecpbb')){ + errMessage += 'Input the CEC amount per BB
'; + } // Hardware management type is HMC if ('hmc' == $('#discoverContentDiv :checked').attr('value')) { @@ -628,7 +665,7 @@ function checkBasicPattern(operType) { } } - if ((Number(lparNumPerCec) * cecNum) != lparNum) { + if ((Number(lparNumPerCec) * cecNum) > lparNum) { errMessage += 'The number of Lpars calculate by Name Range should be ' + Number(lparNumPerCec) * cecNum + '("the number of Drawers" * "the number of lpar per drawer")'; @@ -724,16 +761,6 @@ function checkSupernode(operType) { return false; } - var cecArray = expandNR(getDiscoverEnv('cecName')); - if (eceNum != cecArray.length) { - errString += 'The number of CEC calculated from supernode configure is ' - + eceNum + ', but the number ' + 'calculated from CECs\' Name Range is ' + cecArray.length - + '. Reconfigure the supernode please.'; - warnBar = createWarnBar(errString); - $('#supernodeDiv').prepend(warnBar); - return false; - } - $.ajax({ url : 'lib/cmd.php', dataType : 'json',