From: Leandro Lucarella Date: Fri, 30 Apr 2004 20:09:26 +0000 (+0000) Subject: Se realizan correcciones varias derivadas del primer testing. X-Git-Tag: svn_import~28 X-Git-Url: https://git.llucax.com/mecon/intranet.git/commitdiff_plain/ba00ad2867590a8c6d19a063b3e29d4379e38547 Se realizan correcciones varias derivadas del primer testing. --- diff --git a/sistema/local_lib/intranetdb.php b/sistema/local_lib/intranetdb.php index 2031624..80e717b 100644 --- a/sistema/local_lib/intranetdb.php +++ b/sistema/local_lib/intranetdb.php @@ -41,7 +41,7 @@ class IntranetDB extends DB { function connect() { $config = @parse_ini_file(dirname(__FILE__).'/../conf/db.ini'); - $dsn = @$config['dsn'] ? $config['dsn'] : 'mysql://intranet:c35b9aa6b0758@localhost/intranet'; + $dsn = @$config['dsn'] ? $config['dsn'] : 'mysql://intranet:p007b2036@localhost/intranet'; $db = DB::connect($dsn, isset($config['persistent']) ? $config['persistent'] : true); if (DB::isError($db)) { trigger_error($db->getMessage(), E_USER_ERROR); diff --git a/sistema/www/css/servicios_bandas.css b/sistema/www/css/servicios_bandas.css index e750b3b..19e234e 100644 --- a/sistema/www/css/servicios_bandas.css +++ b/sistema/www/css/servicios_bandas.css @@ -25,6 +25,11 @@ .imprimir_bandas { BACKGROUND-POSITION-X: right; COLOR: #000000; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 8pt; FONT-STYLE: normal; FONT-WEIGHT: normal; LINE-HEIGHT: normal; TEXT-ALIGN: right; VERTICAL-ALIGN: middle } +.imprimir_bandas_izquierda { + BACKGROUND-POSITION-X: right; COLOR: #000000; FONT-FAMILY: Arial, + Helvetica, sans-serif; FONT-SIZE: 10pt; FONT-STYLE: normal; FONT-WEIGHT: + normal; LINE-HEIGHT: normal; TEXT-ALIGN: left; VERTICAL-ALIGN: middle +} .titulo_dos { BACKGROUND-POSITION-X: left; COLOR: #ff9900; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 11pt; FONT-STYLE: normal; FONT-WEIGHT: bold; LINE-HEIGHT: normal; TEXT-ALIGN: left; VERTICAL-ALIGN: middle } diff --git a/sistema/www/noticias.php b/sistema/www/noticias.php index 9158e07..d2843d2 100644 --- a/sistema/www/noticias.php +++ b/sistema/www/noticias.php @@ -44,7 +44,8 @@ if($titulares->numero_noticias > 1){ $noticias->updateCellAttributes(0, 1, array('valign'=>'top', 'width'=>'600')); }else//No hay ninguna { - $mensaje = new HTML_Mensaje('alerta', 'No hay Noticias en esta Seccion', 300); + $mensaje = new HTML_Mensaje('alerta', 'No hay noticias publicadas en esta + sección', 370); $noticias->addRow(array($arbol,$mensaje)); $marco->addStyleSheet($mensaje->getCSS()); $noticias->updateCellAttributes(0, 1, array('valign'=>'middle', 'align'=>'center','width'=>'600')); diff --git a/sistema/www/servicios/bandas/accesos.php b/sistema/www/servicios/bandas/accesos.php index a0dd47b..5fa9c99 100644 --- a/sistema/www/servicios/bandas/accesos.php +++ b/sistema/www/servicios/bandas/accesos.php @@ -45,28 +45,26 @@ if(isset($_GET['imprimir'])) $pagina->updateAttributes(array('onload'=>'javascript:window.print()')); }else { - $row_encabezado = array( $IMG_flecha->toHtml().' '.$agente->getNombre(), - "Imprimir", - $IMG->toHtml()); - - $tabla_encabezado->addRow($row_encabezado,array('height'=>'24')); - $IMG =& new MECON_HTML_Image('/MECON/images/blanco.gif', - '', - array('width'=>'400','height'=>'1','alt'=>'blanco','align'=>'top')); - - $row_encabezado = array($IMG->toHtml()); - $tabla_encabezado->addRow($row_encabezado,array('colspan'=>'3','bgcolor'=>'#FF9900','height'=>'1')); - - $tabla_encabezado->updateCellAttributes(0, - 0, - array('width'=>'276','class'=>'dependencia')); - $tabla_encabezado->updateCellAttributes(0, - 1, - array('width'=>'100','class'=>'imprimir_bandas')); - $tabla_encabezado->updateCellAttributes(0, - 2, - array('width'=>'24','class'=>'imprimir_bandas')); - $estilo = "oscuro"; + $row_encabezado = array( $IMG_flecha->toHtml().' '.$agente->getNombre(), + "Imprimir +  ".$IMG->toHtml()); + + $tabla_encabezado->addRow($row_encabezado,array('height'=>'24')); + + $tabla_encabezado->updateColAttributes(0, + array('width'=>'80%','class'=>'dependencia')); + $tabla_encabezado->updateColAttributes(1, + array('width'=>'20%','class'=>'imprimir_bandas')); + + $IMG =& new MECON_HTML_Image('/MECON/images/blanco.gif', + '', + array('width'=>'400','height'=>'1','alt'=>'blanco','align'=>'top')); + + $row_encabezado = array($IMG->toHtml()); + $tabla_encabezado->addRow($row_encabezado,array('colspan'=>'2','bgcolor'=>'#FF9900','height'=>'1')); + + $estilo = "oscuro"; } diff --git a/sistema/www/servicios/bandas/nov_dia.php b/sistema/www/servicios/bandas/nov_dia.php index ac479c2..4571107 100644 --- a/sistema/www/servicios/bandas/nov_dia.php +++ b/sistema/www/servicios/bandas/nov_dia.php @@ -15,7 +15,7 @@ if(!isset($_SESSION['documento'])) { $nrodoc = $_SESSION['documento']; $fecha = $_GET['fecha']; -$novedad =& new MECON_NovedadesDia($nrodoc,new date($fecha)); +$novedad =& new MECON_NovedadesDia($DB, $nrodoc,new date($fecha)); $agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$DB); $IMG =& new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif'); $tabla =& new MECON_HTML_Tabla(array('width'=>'200'),'medio');