From e1857b577f1b3c7642ca1d752fbf8eaf8ed5e591 Mon Sep 17 00:00:00 2001 From: phamt Date: Wed, 27 Jul 2011 20:29:31 +0000 Subject: [PATCH] Synched xCAT-UI 2.6 branch with trunk. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.6@10177 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/js/guide/guide.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 xCAT-UI/js/guide/guide.js diff --git a/xCAT-UI/js/guide/guide.js b/xCAT-UI/js/guide/guide.js new file mode 100644 index 000000000..a6c7ccf3d --- /dev/null +++ b/xCAT-UI/js/guide/guide.js @@ -0,0 +1,16 @@ +function loadGuidePage(){ + //create guide tab + var tab = new Tab(); + tab.init(); + $('#content').append(tab.object()); + + //add the help content + var helpForm = $('
'); + helpForm.append('
Quick Start
    ' + + '
  1. 1. Discover hardware
    Discover all hardware in the cluster. Define them in the xCAT database. Initialize your cluster.
  2. ' + + '
  3. 2. Verify defined nodes
    View nodes definition by groups in a table or graphical style.
  4. ' + + '
  5. 3. Install compute nodes
    Copy useful files from DVD into harddisk. Create Linux image. Install compute nodes in stateful, stateless and statelite style.
  6. ' + + '
  7. 4. Monitor Cluster
    Monitor your xCAT cluster using one or more third party monitoring software such as Ganglia, RMC, etc.
' + + '
Advanced
  1. a. Edit the xCAT database tables
  2. b. Update the xCAT RPM on the Management Node
'); + tab.add('monitorTab', 'Guide', helpForm, false); +} \ No newline at end of file