git-svn-id: https://opengnsys.es/svn/trunk@1029 a21b9725-9963-47de-94b9-378ad31fedc9
parent
64585a033d
commit
81ca1b2cb7
|
@ -55,7 +55,13 @@ function nombreSO($tipopart,$tiposo,$nombreso){
|
|||
break;
|
||||
case "CACHE":
|
||||
if(empty($tiposo))
|
||||
$nombreso='<span style="COLOR:green">CACHE</span>';
|
||||
//$nombreso='<span style="COLOR:green">CACHE</span>';
|
||||
$nombreso='CACHE';
|
||||
break;
|
||||
case "EMPTY":
|
||||
if(empty($tiposo))
|
||||
//$nombreso='<span style="COLOR:green">EMPTY</span>';
|
||||
$nombreso='EMPTY';
|
||||
break;
|
||||
case "LINUX-SWAP":
|
||||
$nombreso='<span style="COLOR:blue">Linux-swap</span>';
|
||||
|
@ -63,4 +69,4 @@ function nombreSO($tipopart,$tiposo,$nombreso){
|
|||
}
|
||||
return($nombreso);
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
|
|
@ -252,7 +252,7 @@ function tabla_ConfiguracionAula($cmd,$idcentro,$idaula,$idconfiguracion,$cuenta
|
|||
$tipopart=$ValorParametros["tipopart"];
|
||||
$tamapart=$ValorParametros["tamapart"];
|
||||
$nomso=nombreSO($tipopart,$tiposo,$nombreso);
|
||||
if($nomso!="CACHE"){
|
||||
if($nomso!="CACHE" && $nomso!="EMPTY"){
|
||||
$tablaHtml.='<TR>'.chr(13);
|
||||
$tablaHtml.='<TD align=center> '.$particion.' </TD>'.chr(13);
|
||||
$tablaHtml.='<TD> '.$nomso.' </TD>'.chr(13);
|
||||
|
|
|
@ -191,7 +191,7 @@ function tabla_ConfiguracionGrupo($cmd,$idcentro,$idgrupo,$idconfiguracion,$cuen
|
|||
$tipopart=$ValorParametros["tipopart"];
|
||||
$tamapart=$ValorParametros["tamapart"];
|
||||
$nomso=nombreSO($tipopart,$tiposo,$nombreso);
|
||||
if($nomso!="CACHE"){
|
||||
if($nomso!="CACHE" && $nomso!="EMPTY"){
|
||||
$tablaHtml.='<TR>'.chr(13);
|
||||
$tablaHtml.='<TD align=center> '.$particion.' </TD>'.chr(13);
|
||||
$tablaHtml.='<TD> '.$nomso.' </TD>'.chr(13);
|
||||
|
|
|
@ -122,7 +122,7 @@ function tabla_configuraciones($cmd,$idcentro,$idordenador){
|
|||
$tipopart=$ValorParametros["tipopart"];
|
||||
$tamapart=$ValorParametros["tamapart"];
|
||||
$nomso=nombreSO($tipopart,$tiposo,$nombreso);
|
||||
if($nomso!="CACHE"){
|
||||
if($nomso!="CACHE" && $nomso!="EMPTY"){
|
||||
$tablaHtml.='<TR>'.chr(13);
|
||||
$tablaHtml.='<TD align=center> '.$particion.' </TD>'.chr(13);
|
||||
$tablaHtml.='<TD> '. $nomso.' </TD>'.chr(13);
|
||||
|
|
Loading…
Reference in New Issue