From ac29a138e10e12fa3f0567323b7ab99ac900ab9d Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Fri, 30 Jan 2004 17:20:58 +0000 Subject: [PATCH] Se agregan svn:keywords y se quita el '.php' de varios links. --- sistema/local_lib/HTML_Copete.php | 8 ++++---- sistema/local_lib/HTML_Login.php | 4 ++-- sistema/local_lib/HTML_Noticia.php | 4 ++-- sistema/local_lib/HTML_Servicio.php | 12 ++++++------ sistema/local_lib/HTML_Titulares.php | 4 ++-- sistema/www/servicios/bandas/banda_agente.php | 2 +- sistema/www/servicios/legajos/legajo.php | 8 ++++---- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/sistema/local_lib/HTML_Copete.php b/sistema/local_lib/HTML_Copete.php index 73802ca..c441f03 100644 --- a/sistema/local_lib/HTML_Copete.php +++ b/sistema/local_lib/HTML_Copete.php @@ -24,7 +24,7 @@ // | Autor: Gonzalo Merayo | // +--------------------------------------------------------------------+ // -// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $ +// $Id$ // require_once 'MECON/HTML/Image.php'; @@ -93,15 +93,15 @@ class HTML_Copete extends HTML_Table { alt="Cambio de Clave" title="Cambio de Clave" target="_blank"'; if(isset($_SESSION['usuario'])) $mapa .= '>LogoutServiciosNoticias'; diff --git a/sistema/local_lib/HTML_Login.php b/sistema/local_lib/HTML_Login.php index 9fab801..5be737f 100644 --- a/sistema/local_lib/HTML_Login.php +++ b/sistema/local_lib/HTML_Login.php @@ -24,7 +24,7 @@ // | Autor: Gonzalo Merayo | // +--------------------------------------------------------------------+ // -// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $ +// $Id$ // @@ -98,7 +98,7 @@ class HTML_Login extends HTML_Table { $login_incorrecto = '
'.$login_incorrecto->toHTML().'
'; }else $login_incorrecto=''; $this->addRow(array($int)); - return $login_incorrecto.'
'.parent::toHTML().'
'; + return $login_incorrecto.'
'.parent::toHTML().'
'; } // -X2C diff --git a/sistema/local_lib/HTML_Noticia.php b/sistema/local_lib/HTML_Noticia.php index 9730ac4..4e535d2 100644 --- a/sistema/local_lib/HTML_Noticia.php +++ b/sistema/local_lib/HTML_Noticia.php @@ -24,7 +24,7 @@ // | Autor: Gonzalo Merayo | // +--------------------------------------------------------------------+ // -// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $ +// $Id$ // @@ -80,7 +80,7 @@ class HTML_Noticia extends HTML_Table { { //Cuando se cambie la herramienta hay que usar este otro script //para obtener los archivos - //$this->addRow(array(new MECON_HTML_Link('attach.php',$a['texto'],$a))); + //$this->addRow(array(new MECON_HTML_Link('attach',$a['texto'],$a))); $this->addRow(array(new MECON_HTML_Link('http://intranet.mecon.ar/get_file.epl', $a['texto'], array('NEWS.FilesForArticle.file_for_article_id' =>$a['numero'])))); diff --git a/sistema/local_lib/HTML_Servicio.php b/sistema/local_lib/HTML_Servicio.php index a478643..233f349 100644 --- a/sistema/local_lib/HTML_Servicio.php +++ b/sistema/local_lib/HTML_Servicio.php @@ -24,7 +24,7 @@ // | Autor: Gonzalo Merayo | // +--------------------------------------------------------------------+ // -// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $ +// $Id$ // require_once 'MECON/HTML/Image.php'; @@ -72,9 +72,9 @@ class HTML_Servicio extends HTML_Table { function toHTML() // ~X2C { if($this->servicio->link == '') - $this->servicio->link = 'servicios.php?servicios='.$this->servicio->servicio; + $this->servicio->link = '?servicios='.$this->servicio->servicio; elseif($this->servicio->necesita_logueo) - $this->servicio->link = 'login.php?redirect='.$this->servicio->servicio; + $this->servicio->link = 'login?redirect='.$this->servicio->servicio; $l = new MECON_HTML_Link($this->servicio->link, $this->servicio->nombre, array(), array('class' => 'servicio_titulo_tabla')); //$this->addRow(array('   '.$l->toHTML()),//Volvera... @@ -108,9 +108,9 @@ class HTML_Servicio extends HTML_Table { foreach($this->servicio->getHijos() as $s) { if($s->link == '') - $s->link = 'servicios.php?servicios='.$s->servicio; + $s->link = '?servicios='.$s->servicio; elseif($s->necesita_logueo) - $s->link = 'login.php?redirect='.$s->servicio; + $s->link = 'login?redirect='.$s->servicio; $link = new MECON_HTML_Link($s->link, $s->nombre, array(), array('class' => 'servicio_tabla')); @@ -154,7 +154,7 @@ class HTML_Servicio extends HTML_Table { */ function getCSS() // ~X2C { - return "css/servicio.css"; + return 'css/servicio.css'; } // -X2C diff --git a/sistema/local_lib/HTML_Titulares.php b/sistema/local_lib/HTML_Titulares.php index 6d191bc..bd3470e 100644 --- a/sistema/local_lib/HTML_Titulares.php +++ b/sistema/local_lib/HTML_Titulares.php @@ -24,7 +24,7 @@ // | Autor: Gonzalo Merayo | // +--------------------------------------------------------------------+ // -// $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $ +// $Id$ // require_once 'noticia.php'; @@ -108,7 +108,7 @@ class HTML_Titulares extends HTML_Table { if(!isset($this->primera_noticia)) $this->primera_noticia = $n; if(!is_null($grupo_secciones)) $n->seccion = null; $not = new HTML_Noticia($n); - $not->setLink("una_noticia.php?numero=$row[0]"); + $not->setLink("una_noticia?numero=$row[0]"); if(is_null($grupo_secciones)) { //$n->getIdSeccion(); diff --git a/sistema/www/servicios/bandas/banda_agente.php b/sistema/www/servicios/bandas/banda_agente.php index 509d632..374f3bd 100644 --- a/sistema/www/servicios/bandas/banda_agente.php +++ b/sistema/www/servicios/bandas/banda_agente.php @@ -14,7 +14,7 @@ require_once 'BandasNovedades/HTML/TablaInfoPersonal.php'; if(!isset($_SESSION['documento']) or !isset($_POST['fecha'])) { - header('Location: ../../servicios.php'); + header('Location: ../../servicios/'); } //Seteo las variables generales diff --git a/sistema/www/servicios/legajos/legajo.php b/sistema/www/servicios/legajos/legajo.php index 360ff16..379eb87 100755 --- a/sistema/www/servicios/legajos/legajo.php +++ b/sistema/www/servicios/legajos/legajo.php @@ -1,15 +1,15 @@