git-svn-id: https://opengnsys.es/svn/trunk@1029 a21b9725-9963-47de-94b9-378ad31fedc9

remotes/github/debian-pkg
alonso 2010-06-09 09:44:07 +00:00
parent 64585a033d
commit 81ca1b2cb7
4 changed files with 11 additions and 5 deletions

View File

@ -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);
}
?>
?>

View File

@ -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>&nbsp;'.$particion.'&nbsp;</TD>'.chr(13);
$tablaHtml.='<TD>&nbsp;'.$nomso.'&nbsp;</TD>'.chr(13);

View File

@ -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>&nbsp;'.$particion.'&nbsp;</TD>'.chr(13);
$tablaHtml.='<TD>&nbsp;'.$nomso.'&nbsp;</TD>'.chr(13);

View File

@ -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>&nbsp;'.$particion.'&nbsp;</TD>'.chr(13);
$tablaHtml.='<TD>&nbsp;'. $nomso.'&nbsp;</TD>'.chr(13);