/** * Load the help page */ function loadHelpPage(){ // Create help tab var tab = new Tab(); tab.init(); $('#content').append(tab.object()); var helpForm = $('
'); helpForm.append( '
' + 'Quick Start' + '
' + '
    ' + '
  1. 1. View defined nodes
    View node definitions by groups in a table.
  2. ' + '
  3. 2. Manage operating system images
    View operating system images defined in xCAT. Copy operating system ISOs into xCAT.
  4. ' + '
  5. 3. Provision nodes
    Create virtual machines. Install an operating system onto virtual machines.
  6. ' + '
  7. 4. Manage and provision storage and networks
    Create network devices. Define storage for systems.
  8. ' + '
' + '
' + '
' + 'Settings' + '
' + '
    ' + '
  1. a. Manage and control user access
  2. ' + '
  3. b. Edit the xCAT database tables
  4. ' + '
' + '
'); tab.add('helpTab', 'Help', helpForm, false); }