From f15f04a20e186c63af25bdff401167cdb389ad95 Mon Sep 17 00:00:00 2001 From: phamt Date: Wed, 23 Nov 2011 18:07:19 +0000 Subject: [PATCH] Renamed Guide page to Help page. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11042 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/help.php | 17 +++++++++++++++++ xCAT-UI/js/help/help.js | 27 +++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 xCAT-UI/help.php create mode 100644 xCAT-UI/js/help/help.js diff --git a/xCAT-UI/help.php b/xCAT-UI/help.php new file mode 100644 index 000000000..d9d5b552c --- /dev/null +++ b/xCAT-UI/help.php @@ -0,0 +1,17 @@ + \ No newline at end of file diff --git a/xCAT-UI/js/help/help.js b/xCAT-UI/js/help/help.js new file mode 100644 index 000000000..c47963ccb --- /dev/null +++ b/xCAT-UI/js/help/help.js @@ -0,0 +1,27 @@ +function loadHelpPage(){ + //create help 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.
  8. ' + + '
' + + '
' + + '
' + + 'Advanced' + + '
    ' + + '
  1. a. Edit the xCAT database tables
  2. ' + + '
  3. b. Update the xCAT RPM on the Management Node
  4. ' + + '
' + + '
'); + tab.add('helpTab', 'Help', helpForm, false); +} \ No newline at end of file