Author: jfthomps
Date: Wed May 9 13:39:05 2012
New Revision: 1336200
URL: http://svn.apache.org/viewvc?rev=1336200&view=rev
Log:
VCL-576
Finalizing for 2.3 release
vm.php: removed a few references to vmkernalnic
Modified:
incubator/vcl/trunk/web/.ht-inc/vm.php
Modified: incubator/vcl/trunk/web/.ht-inc/vm.php
URL:
http://svn.apache.org/viewvc/incubator/vcl/trunk/web/.ht-inc/vm.php?rev=1336200&r1=1336199&r2=1336200&view=diff
==============================================================================
--- incubator/vcl/trunk/web/.ht-inc/vm.php (original)
+++ incubator/vcl/trunk/web/.ht-inc/vm.php Wed May 9 13:39:05 2012
@@ -89,12 +89,6 @@ function editVMInfo() {
print " <div dojoType=\"dijit.TitlePane\"
id=vmprofile></div>\n";
print " </td>\n";
print " </tr>\n";
- /*if(! empty($data['vmkernalnic'])) {
- print " <tr>\n";
- print " <th align=right>VM Kernal NIC:</th>\n";
- print " <td>{$data['vmkernalnic']}</td>\n";
- print " </tr>\n";
- }*/
print "</table><br><br>\n";
print "<div id=movevms class=hidden>\n";
@@ -486,7 +480,6 @@ function vmhostdata() {
/// \b hostname - hostname of computer\n
/// \b vmlimit - maximum number of vm's host can handle\n
/// \b vmprofileid - id of vm profile\n
-/// \b vmkernalnic - name of kernel nic\n
/// \b vmprofiledata - array of data about the vm's profile as returned from
/// getVMProfiles
///
@@ -500,8 +493,7 @@ function getVMHostData($id='') {
. "c.hostname AS name, "
. "c.hostname, "
. "vh.vmlimit, "
- . "vh.vmprofileid, "
- . "vh.vmkernalnic "
+ . "vh.vmprofileid "
. "FROM vmhost vh, "
. "computer c "
. "WHERE vh.computerid = c.id";