From: Gonzalo Merayo Date: Mon, 21 Jul 2003 21:54:23 +0000 (+0000) Subject: trabajo sobre los servicios X-Git-Tag: svn_import~226 X-Git-Url: https://git.llucax.com/mecon/intranet.git/commitdiff_plain/39a56906821b30ffdc025a2b05cf2026d1b83037?hp=8020a4a88472604794f62e0084a43705cb25aacc trabajo sobre los servicios --- diff --git a/doc/intranet.xmi b/doc/intranet.xmi index a6b4281..a8f9365 100644 --- a/doc/intranet.xmi +++ b/doc/intranet.xmi @@ -15,19 +15,12 @@ x2c:include:HTML/Page.php " name="HTML_Page" static="0" scope="200" /> - - - - - - - @@ -42,7 +35,7 @@ x2c:include:HTML/Table.php - + @@ -71,12 +64,7 @@ x2c:include:HTML/Table.php - - - - - diff --git a/sistema/www/images/servicio_bullet.gif b/sistema/www/images/servicio_bullet.gif new file mode 100644 index 0000000..859f8f2 Binary files /dev/null and b/sistema/www/images/servicio_bullet.gif differ diff --git a/sistema/www/servicios.php b/sistema/www/servicios.php index 64d260b..55bd5fa 100644 --- a/sistema/www/servicios.php +++ b/sistema/www/servicios.php @@ -5,28 +5,35 @@ $m = new HTML_DietMarco('servicios'); $m->addTitle('Servicios'); - $seccion = new HTML_Table(array ('width'=>'300', - 'border' => '0', - 'cellspacing' => '0', - 'cellpadding' => '0', - 'bgcolor' => '#003868')); -/* $this->t_interna = new HTML_Table(array ('width'=>'132', - 'border' => '0', - 'cellspacing' => '2', - 'cellpadding' => '0', - 'class' => 'bodytext'));*/ - $titulo = new HTML_Table(array('width'=>'132', - 'height'=>'26', - 'border' => '0', - 'cellspacing' => '0', - 'cellpadding' => '0', - 'align'=>'center', - 'background'=>'images/seccion_cabecera.gif')); - $titulo->addRow(array("hola"), array('align'=>'center', - 'class'=>'arboltitulo')); - $seccion->addRow(array($titulo), array('bgcolor' => '#FFFFFF')); + $seccion =& new HTML_Table(array('width' =>'360', + 'border' => '0', + 'cellspacing' => '0', + 'cellpadding' => '0', + 'bgcolor' => '#003868')); + $seccion->addRow(array("Nombre(sin estilo)"), array('align' => 'center', + 'class' => 'arboltitulo', + 'background'=>'images/servicio_cabecera.gif', + 'height'=>32)); + $tmp =& new HTML_Table(array ('width' =>'100%', + 'border' => '0', + 'cellspacing' => '2', + 'cellpadding' => '0', + 'class' => 'bodytext')); + $interna =& new HTML_Table(array ('width' =>'100%')); + $img = new HTML_Image('images/servicio_bullet.gif'); + $interna->addRow(array($img, 'Nombre(sin estilo) ffffff',$img,'nombre'), + array('valign' => 'top')); + $interna->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'), + array('valign' => 'top')); + $interna->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'), + array('valign' => 'top')); + $interna->updateColAttributes(0, array('width' => '10%')); + $interna->updateColAttributes(1, array('width' => '40%')); + $interna->updateColAttributes(2, array('width' => '10%')); + $interna->updateColAttributes(3, array('width' => '40%')); + $tmp->addRow(array($interna), array('bgcolor' => '#FFFFFF')); + $seccion->addRow(array($tmp), array('bgcolor' => '#003868')); - $m->addBodyContent($seccion); $m->display(); ?>