From c3070ea4067c0b7b9af7b871cd9fd918bed81fab Mon Sep 17 00:00:00 2001 From: Gonzalo Merayo Date: Mon, 3 Nov 2003 17:41:10 +0000 Subject: [PATCH] Arreglo de Grupo de Noticias --- sistema/local_lib/HTML_Titulares.php | 22 ++++++++++++++++------ sistema/www/css/copete.css | 2 +- sistema/www/servicios.php | 6 +----- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/sistema/local_lib/HTML_Titulares.php b/sistema/local_lib/HTML_Titulares.php index e45d0e6..7707d02 100644 --- a/sistema/local_lib/HTML_Titulares.php +++ b/sistema/local_lib/HTML_Titulares.php @@ -73,16 +73,26 @@ class HTML_Titulares extends HTML_Table { $query = "SELECT Articles.article_id, IF(Articles.publication_date > '$fecha_nuevo', 'NUEVA', null) FROM Articles, ArticlePublicationStates - WHERE Articles.article_publication_state_id = - ArticlePublicationStates.article_publication_state_id - AND ArticlePublicationStates.publication_state_id=5 "; + WHERE Articles.article_publication_state_id = + ArticlePublicationStates.article_publication_state_id + AND ArticlePublicationStates.publication_state_id=5 "; if(!is_null($grupo_secciones)) { $gs = new AI_GrupoSecciones($grupo_secciones); - $gs->cargar($db2); - if(count($gs->secciones) > 0) - $query .= 'AND Articles.section_id IN('.implode(',', $gs->secciones).') '; + $gs->cargar($db2); + if(count($gs->secciones) > 0) + $query .= ' AND Articles.section_id IN('.implode(',', $gs->secciones).') '; } + + //FIXME Agregado provisorio para cargar por herramienta lo que no es noticia + else{ + $gs = new AI_GrupoSecciones($grupo_secciones); + $gs->cargar($db2); + if(count($gs->secciones) > 0) + $query .= ' AND Articles.section_id NOT IN(53) '; + } + //FIXME Fin Agregado provisorio + if(!is_null($antiguedad)) { $hoy->subtractSeconds(60*60*24*$antiguedad); diff --git a/sistema/www/css/copete.css b/sistema/www/css/copete.css index f528a2d..70e571a 100644 --- a/sistema/www/css/copete.css +++ b/sistema/www/css/copete.css @@ -1,3 +1,3 @@ .copete_TextBlue { COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; font-style: normal; line-height: normal; font-weight: normal } -.copete_titulo_vinculos { COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; FONT-WEIGHT: bold ; font-style: normal; line-height: normal; background-position: left centre; text-align: left } +.copete_titulo_vinculos { COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 10pt; FONT-WEIGHT: bold ; font-style: normal; line-height: normal } .copete_titulo_uno { COLOR: #003366; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-SIZE: 12pt; font-style: normal; line-height: normal; background-position: left centre; text-align: left; vertical-align: middle ; font-weight: bold } diff --git a/sistema/www/servicios.php b/sistema/www/servicios.php index 95cc69c..2e43a45 100644 --- a/sistema/www/servicios.php +++ b/sistema/www/servicios.php @@ -43,11 +43,7 @@ } $padre = $row[1]; } - $image = new MECON_HTML_Image(PATH_RAIZ.'images/copete_flecha_azul.gif', - null, - array('height' => '15', - 'border' => '0')); - $nombre = implode(' '.$image->toHTML().' ', array_reverse($nombre)); + $nombre = implode(' >> ', array_reverse($nombre)); } }else $nombre = '';//Nombre por default -- 2.43.0