From 99cee4fba7d5581e7d7f447c6bb54916cc8a7db3 Mon Sep 17 00:00:00 2001 From: Gonzalo Merayo Date: Tue, 7 Oct 2003 14:03:14 +0000 Subject: [PATCH] Arreglo Velocidad Noticias --- sistema/local_lib/HTML_Noticia.php | 36 +++++++++++++++++++++++++++- sistema/local_lib/HTML_Titulares.php | 4 ++-- 2 files changed, 37 insertions(+), 3 deletions(-) diff --git a/sistema/local_lib/HTML_Noticia.php b/sistema/local_lib/HTML_Noticia.php index 5aceb02..1cb5b72 100644 --- a/sistema/local_lib/HTML_Noticia.php +++ b/sistema/local_lib/HTML_Noticia.php @@ -83,6 +83,7 @@ class HTML_Noticia extends HTML_Table { $this->addRow(array("".$tmp->toHTML(). 'volver'), array('class' => 'noticias_ver_mas')); + return parent::toHTML(); } else { @@ -108,10 +109,43 @@ class HTML_Noticia extends HTML_Table { } $this->addRow(array(new MECON_HTML_Image('images/noticia_linea_puntos.gif')), array('class' => 'noticias_ver_mas')); + return @ $this->toHTML_no_tabla(); } - return parent::toHTML(); } // -X2C + function toHTML_no_tabla() + { + for ($i = 0 ; $i < $this->_rows ; $i++) { + $strHtml .= $tabs ."\t\n"; + for ($j = 0 ; $j < $this->_cols ; $j++) { + if ($this->_structure[$i][$j] == "SPANNED") { + $strHtml .= $tabs ."\t\t\n"; + continue; + } + $type = ($this->_structure[$i][$j]["type"] == "TH" ? "TH" : "TD"); + $attr = $this->_structure[$i][$j]["attr"]; + $contents = $this->_structure[$i][$j]["contents"]; + $strHtml .= $tabs . "\t\t<$type" . $this->_getAttrString($attr) . ">"; if (is_object($contents)) { + if (is_subclass_of($contents, "html_common")) { + $contents->setTabOffset($this->_tabOffset + 3); + $contents->_nestLevel = $this->_nestLevel + 1; + } + if (method_exists($contents, "toHtml")) { + $contents = $contents->toHtml(); + } elseif (method_exists($contents, "toString")) { + $contents = $contents->toString(); + } + } + if (is_array($contents)) $contents = implode(", ",$contents); + if (isset($this->_autoFill) && $contents == "") $contents = $this->_autoFill; + $strHtml .= $contents; + $strHtml .= "\n"; + } + $strHtml .= $tabs ."\t\n"; + } + return $strHtml; +} + // +X2C Operation 167 /** diff --git a/sistema/local_lib/HTML_Titulares.php b/sistema/local_lib/HTML_Titulares.php index 1de656c..e45d0e6 100644 --- a/sistema/local_lib/HTML_Titulares.php +++ b/sistema/local_lib/HTML_Titulares.php @@ -94,8 +94,8 @@ class HTML_Titulares extends HTML_Table { $this->numero_noticias = $result->numRows();//FIXME no documentado if(DB::isError($result)) die($result->getMessage("query mal hecho")); - $ht1 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0')); - $ht2 = new HTML_Table(array('width'=>'300', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0')); + $ht1 = new HTML_Table(array('width'=>'280', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0')); + $ht2 = new HTML_Table(array('width'=>'280', 'border'=>'0', 'cellspacing'=>'0', 'cellpadding' => '0')); $impar = true; while($row = $result->fetchRow()) { -- 2.43.0