Magellan Linux

Diff of /alx-src/tags/alx-web-0_7_0_20171218_1/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 8004 by niro, Wed Dec 16 15:17:38 2015 UTC revision 8005 by niro, Wed Dec 16 15:21:22 2015 UTC
# Line 119  echo '</form>'; Line 119  echo '</form>';
119    
120    
121  echo '<table border="1" id="mytab">';  echo '<table border="1" id="mytab">';
122  echo '<thead><tr style="font-weight:bold;background-color:#d5e5ff"><th>edit</th><th colspan=3>serial</th><th width=170>hostname</th><th width=100>ip</th><th width=100>mac</th><th width=100>boot</th><th width=100>last connected</th>';  echo '<thead><tr style="font-weight:bold;background-color:#d5e5ff"><th>edit</th><th colspan=3>serial</th><th width=170>hostname</th><th width=100>ip</th><th width=100>mac</th><th width=100>last connected</th>';
123  //always enable showversion atm  //always enable showversion atm
124  $showversion = "on";  $showversion = "on";
125  if($showversion=='on') echo '<th colspan=2>version</th>';  if($showversion=='on') echo '<th colspan=3>version</th>';
126  echo '<th width=150>up/down</th></tr></thead><tbody>';  echo '<th width=150>up/down</th></tr></thead><tbody>';
127    
128  foreach($comps as $c)  foreach($comps as $c)
# Line 148  foreach($comps as $c) Line 148  foreach($comps as $c)
148    
149   echo '<td><nobr>'.$c['ip'].'</nobr></td>';   echo '<td><nobr>'.$c['ip'].'</nobr></td>';
150   echo '<td><nobr>'.$c['mac'].'</nobr></td>';   echo '<td><nobr>'.$c['mac'].'</nobr></td>';
  echo '<td><nobr>'.$c['netboot'].'</nobr></td>';  
151   if($c['mtime']) { echo '<td><nobr>'.date('Y-m-d, H:i:s',$c['mtime']).'</nobr></td>'; }   if($c['mtime']) { echo '<td><nobr>'.date('Y-m-d, H:i:s',$c['mtime']).'</nobr></td>'; }
152   //if($c['mtime']) { echo '<td><nobr>'.$c['mtime'].'</nobr></td>'; }   //if($c['mtime']) { echo '<td><nobr>'.$c['mtime'].'</nobr></td>'; }
153   else echo '<td></td>';   else echo '<td></td>';
# Line 160  foreach($comps as $c) Line 159  foreach($comps as $c)
159   $alxver = $alxinfo[os];   $alxver = $alxinfo[os];
160   $alxutils = $alxinfo[utils];   $alxutils = $alxinfo[utils];
161    
162     //netboot state
163     if($c['netboot'] == 1) $bootmethod = 'Netboot (PXE)';
164     else $bootmethod = 'Local Disk';
165    
166  // if( $alxver == '')  // if( $alxver == '')
167  // {  // {
168  // if($c['online'])  // if($c['online'])
# Line 173  foreach($comps as $c) Line 176  foreach($comps as $c)
176   if($alxver == '') $alxver='unknown';   if($alxver == '') $alxver='unknown';
177   if($alxutils == '') $alxutils='unknown';   if($alxutils == '') $alxutils='unknown';
178    
179     echo '<td>'.$bootmethod.'</td>';
180   echo '<td>'.$alxver.'</td>';   echo '<td>'.$alxver.'</td>';
181   echo '<td>'.$alxutils.'</td>';   echo '<td>'.$alxutils.'</td>';
182   }   }

Legend:
Removed from v.8004  
changed lines
  Added in v.8005