Magellan Linux

Diff of /alx-src/branches/alx-web-070/mageupgrade.php

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

revision 2488 by niro, Thu Jun 30 11:01:23 2011 UTC revision 2597 by niro, Tue Jul 5 16:37:58 2011 UTC
# Line 60  if($op=="calc") Line 60  if($op=="calc")
60   $out = sshdo('NOCOLORS=true /sbin/mage uppretend | egrep "\[.*\]" | sed "s:\[.*\]\ \(.*\):\1:" | sed "s:/:,:" | sed "s:\(.*\)-:\1,:" | sed "s:\(.*\)-:\1,:"', $ip);   $out = sshdo('NOCOLORS=true /sbin/mage uppretend | egrep "\[.*\]" | sed "s:\[.*\]\ \(.*\):\1:" | sed "s:/:,:" | sed "s:\(.*\)-:\1,:" | sed "s:\(.*\)-:\1,:"', $ip);
61   }   }
62   else {   else {
63   $out = sshdo('NOCOLORS=true /sbin/mageupgrade --calc-bash', $ip);   $out = sshdo('NOCOLORS=true /sbin/mageupgrade --calc-bash | cut -d, -f1-2,4 | sed "s/\(.*\)-r\(.*\)/\1,r\2/"', $ip);
64   }   }
65   echo '<pre>';   echo '<pre>';
66   echo '<table border="0">';   echo '<table border="0">';
67   if (array_key_exists("0", $out))   if (array_key_exists("0", $out))
68   {   {
69   foreach( $out as $i)   // tell that there are no updates if $out/$i is empty
70     if ( $out[1] == "")
71   {   {
72   // element 0 is always 0   echo "No updates available. The system is fully upgraded.";
73   if ($i=="0") continue;   } else {
74     foreach( $out as $i)
75     {
76     // element 0 is always 0
77     if ($i=="0") continue;
78    
79   $item=explode(",",$i);   $row=explode("\n", $i);
80   $pcat=$item[0];   foreach( $row as $x)
81   $pname=$item[1];   {
82   $pver=$item[2];   //ignore empty rows
83   $pbuild=$item[3];   //(the last one may empty)
84     if ($x=="") continue;
85    
86   echo '<tr><td>';   $item=explode(",",trim($x));
87   echo '<font color=green>'.$pcat.'/'.$pname.'</font>';   $pcat=$item[0];
88   echo '<td>';   $pname=$item[1];
89   echo '<font color=blue> => [ '.$pver.'-'.$pbuild.' ] </font>';   $pver=$item[2];
90   echo '</td>';   $pbuild=$item[3];
91   echo '</td></tr>';  
92     echo '<tr><td>';
93     echo '<font color=green>'.$pcat.'/'.$pname.'</font>';
94     echo '<td>';
95     echo '<font color=blue> => [ '.$pver.'-'.$pbuild.' ] </font>';
96     echo '</td>';
97     echo '</td></tr>';
98     }
99     }
100   }   }
101   }   }
102   else echo 'No updates for client '.$client.' available.';   else echo 'No updates for client '.$client.' available.';

Legend:
Removed from v.2488  
changed lines
  Added in v.2597