2007-11-24 17:44:09 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Main page of the xCAT web interface
|
|
|
|
|
|
|
|
$TOPDIR = '..';
|
|
|
|
require_once "$TOPDIR/lib/functions.php";
|
|
|
|
if (isAIX()) { $aixDisabled = 'disabled'; }
|
|
|
|
|
|
|
|
require_once("$TOPDIR/lib/GroupNodeTable.class.php");
|
|
|
|
|
2007-12-03 18:16:38 +00:00
|
|
|
insertHeader('Groups', array('groups.css'),
|
|
|
|
array("$TOPDIR/lib/GroupNodeTableUpdater.js","$TOPDIR/js/prototype.js","$TOPDIR/js/scriptaculous.js?load=effects"),
|
|
|
|
array('machines','groups'));
|
2007-11-24 17:44:09 +00:00
|
|
|
|
|
|
|
echo "<div id=content align=center>\n";
|
|
|
|
|
2007-12-11 19:44:21 +00:00
|
|
|
insertButtons(
|
|
|
|
array('label' => 'Attributes', 'onclick' => ''),
|
|
|
|
array('label' => 'Create Group', 'onclick' => ''),
|
|
|
|
array('label' => 'Ping', 'onclick' => ''),
|
2007-11-24 17:44:09 +00:00
|
|
|
//'Updatenode',
|
2007-12-11 19:44:21 +00:00
|
|
|
array('label' => 'Run Cmd', 'onclick' => ''),
|
|
|
|
array('label' => 'Copy Files', 'onclick' => ''),
|
|
|
|
array('label' => 'Sync Files', 'onclick' => '')
|
|
|
|
);
|
|
|
|
insertButtons(
|
2007-11-24 17:44:09 +00:00
|
|
|
//'Soft Maint',
|
2007-12-11 19:44:21 +00:00
|
|
|
array('label' => 'HW Ctrl', 'onclick' => ''),
|
|
|
|
array('label' => 'RSA/MM/FSP', 'onclick' => ''),
|
|
|
|
array('label' => 'Deploy', 'onclick' => ''),
|
|
|
|
array('label' => 'Diagnose', 'onclick' => ''),
|
|
|
|
array('label' => 'Remove', 'onclick' => '')
|
|
|
|
);
|
2007-11-24 17:44:09 +00:00
|
|
|
/*
|
|
|
|
array(
|
|
|
|
'name=propButton value="Attributes"',
|
|
|
|
'name=defineButton value="Create Like"',
|
|
|
|
'name=createGroupButton value="Create Group"',
|
|
|
|
'name=pingNodesButton value="Ping"',
|
|
|
|
//'name=updateButton value="Updatenode"',
|
|
|
|
'name=runcmdButton value="Run Cmd"',
|
|
|
|
'name=copyFilesButton value="Copy Files"'
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
//'name=softMaintButton value="Soft Maint" onclick="this.form.nodesNeeded=1;"',
|
|
|
|
'name=hwctrlButton value="HW Ctrl"',
|
|
|
|
'name=rsaButton value="RSA/MM/FSP" onclick="this.form.nodesNeeded=1;"',
|
|
|
|
'name=installButton value="Install"',
|
|
|
|
'name=perfmonButton value="Perf Mon"',
|
|
|
|
//'name=webminButton value="Webmin" onclick="this.form.nodesNeeded=1;"',
|
|
|
|
'name=diagButton value="Diagnose" onclick="this.form.nodesNeeded=1;"',
|
|
|
|
'name=removeButton value="Remove"'
|
|
|
|
),
|
|
|
|
*/
|
|
|
|
|
|
|
|
echo '<form name="nodelist" class=ContentForm>';
|
|
|
|
|
|
|
|
GroupNodeTable::insertGroupTableHeader();
|
|
|
|
|
|
|
|
// Get the names and status of the groups
|
|
|
|
$groups = getGroupStatus();
|
|
|
|
|
|
|
|
// Print the HTML for each of them
|
|
|
|
foreach($groups as $group => $status) {
|
|
|
|
//echo "<p>$group status is $status</p>";
|
|
|
|
echo GroupNodeTable::insertGroupTableRow($group, $status);
|
|
|
|
}
|
|
|
|
|
|
|
|
GroupNodeTable::insertGroupTableFooter();
|
|
|
|
|
|
|
|
echo <<<EOS
|
|
|
|
<!-- <SCRIPT language="JavaScript"> XCATEvent.doExpandNodes(); </SCRIPT> -->
|
|
|
|
</form>
|
|
|
|
<table>
|
|
|
|
<tr><td><img src="$TOPDIR/images/green-ball-m.gif"></td><td align=left>Node is good (Status is ready/pbs/sshd)</td></tr>
|
|
|
|
<tr><td><img src="$TOPDIR/images/red-ball-m.gif"></td><td align=left>Node is bad (Status is 'noping')</td></tr>
|
|
|
|
<tr><td><img src="$TOPDIR/images/yellow-ball-m.gif"></td><td align=left>Other status (unknown/node unavailable...)</td></tr>
|
|
|
|
</table>
|
|
|
|
<p id=disclaimer>This interface is still under construction and not yet ready for use.</p>
|
|
|
|
</div>
|
|
|
|
</BODY>
|
|
|
|
</HTML>
|
|
|
|
EOS;
|
|
|
|
?>
|