]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se modifican los prefijos de las clases. Se pasa de MECON a MLIB.
authorMartín Marrese <marrese@gmail.com>
Tue, 10 Aug 2004 18:32:04 +0000 (18:32 +0000)
committerMartín Marrese <marrese@gmail.com>
Tue, 10 Aug 2004 18:32:04 +0000 (18:32 +0000)
La modificacion incluye los siguientes cambios:
- require_once 'MECON/*' --> require_once 'MLIB/*'
- class MECON_* --> class MLIB_*
- MECON_*::* --> MLIB_*::*

Ademas se modificaron las licencias. Se quito Ministerio de economia y se cambio
meconlib por mlib.

56 files changed:
lib/MLIB/Array/Pager.php
lib/MLIB/DB/Pager.php
lib/MLIB/DBO.php
lib/MLIB/Date.php
lib/MLIB/Feriado.php
lib/MLIB/Graph.php
lib/MLIB/HTML/Arbol.php
lib/MLIB/HTML/ArbolDB.php
lib/MLIB/HTML/Error.php
lib/MLIB/HTML/Icon.php
lib/MLIB/HTML/Image.php
lib/MLIB/HTML/Link.php
lib/MLIB/HTML/Page.php
lib/MLIB/HTML/QuickForm.php
lib/MLIB/HTML/QuickForm/Renderer/Tabla.php
lib/MLIB/HTML/QuickForm/Renderer/TablaHorizontal.php
lib/MLIB/HTML/QuickForm/caritas.php
lib/MLIB/HTML/QuickForm/mdate.php
lib/MLIB/HTML/QuickFormSimple.php
lib/MLIB/HTML/Tabla.php
lib/MLIB/HTML/Tabla/estilo_claro.php
lib/MLIB/HTML/Tabla/estilo_comun.php
lib/MLIB/HTML/Tabla/estilo_impresion.php
lib/MLIB/HTML/Tabla/estilo_llamativo.php
lib/MLIB/HTML/Tabla/estilo_medio.php
lib/MLIB/HTML/Tabla/estilo_oscuro.php
lib/MLIB/HTML/TablaDB.php
lib/MLIB/Marco.php
lib/MLIB/Marco/Copete.php
lib/MLIB/Marco/ImagenAnimada.php
lib/MLIB/Marco/Menu.php
lib/MLIB/Marco/MenuHorizontal.php
lib/MLIB/Marco/MenuOculto.php
lib/MLIB/Marco/MenuPrincipal.php
lib/MLIB/Marco/MenuVertical.php
lib/MLIB/Marco/Seccion.php
lib/MLIB/PDF.php
lib/MLIB/PDF/Contenido.php
lib/MLIB/PDF/Header.php
lib/MLIB/PDF/HeaderDefecto.php
lib/MLIB/PDF/HeaderDefecto/medidas.php
lib/MLIB/PDF/Imagen.php
lib/MLIB/PDF/Marco.php
lib/MLIB/PDF/Marco/medidas.php
lib/MLIB/PDF/SaltoPagina.php
lib/MLIB/PDF/Separador.php
lib/MLIB/PDF/Tabla.php
lib/MLIB/PDF/Tabla/medidas.php
lib/MLIB/PDF/Texto.php
lib/MLIB/PDF/medidas.php
lib/MLIB/Tiempo/Banda.php
lib/MLIB/Tiempo/Hora.php
lib/MLIB/Tiempo/Intervalo.php
lib/MLIB/XLS.php
lib/MLIB/defaults.php
lib/MLIB/general.php

index f7d5fcb460463572431c20b8753a4599ef5d9eb9..c77261cec4848f612af58f12609f2062dff7a882 100644 (file)
@@ -1,10 +1,33 @@
-<?php
+<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
+-------------------------------------------------------------------------------
+                                    mlib
+-------------------------------------------------------------------------------
+This file is part of mlib.
+
+mlib is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free
+Software Foundation; either version 2 of the License, or (at your option)
+any later version.
+
+mlib is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+You should have received a copy of the GNU General Public License; if not,
+write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+Boston, MA  02111-1307  USA
+-------------------------------------------------------------------------------
+Creado: <sin datos>
+Autor:  <sin datos>
+-------------------------------------------------------------------------------
+$Id$
+-----------------------------------------------------------------------------*/
 
 /**
 * Paginador de tablas, a partir de un array    
-* Basado en MECON_DB_Pager
+* Basado en MLIB_DB_Pager
 */
-class MECON_Array_Pager
+class MLIB_Array_Pager
 {
     var $currentpage = 0;
     var $current = 0;
@@ -19,7 +42,7 @@ class MECON_Array_Pager
     * @param int    $maxpages  Cantidad máxima de páginas a mostrar
     * @param int    $numrows Nro. de filas de la tabla
     */
-    function MECON_Array_Pager (&$res, $from = 0, $limit = 10, $maxpages = 21, $numrows = null)
+    function MLIB_Array_Pager (&$res, $from = 0, $limit = 10, $maxpages = 21, $numrows = null)
     {
         $this->dbh = $res->dbh;
         $this->result = $res;
@@ -34,7 +57,7 @@ class MECON_Array_Pager
 
     /**
     * Calcula los datos necesarios para que funcione el paginador
-    * (es igual a MECON_DB_Pager)
+    * (es igual a MLIB_DB_Pager)
     * @return mixed PEAR_Error if error.
     */
     function build()
index b492bc3735d60e6ad593c3711913384da960ad55..35fe8864051308d61bae370fb0ef82e61d8388e2 100644 (file)
@@ -60,7 +60,7 @@ require_once 'DB.php';
 * @see http://vulcanonet.com/soft/pager/
 */
 
-class MECON_DB_Pager extends DB_Result
+class MLIB_DB_Pager extends DB_Result
 {
 
     var $currentpage = 0;
@@ -102,7 +102,7 @@ class MECON_DB_Pager extends DB_Result
     *    and supply later to the constructor
     * @deprecated
     */
-    function MECON_DB_Pager (&$res, $from = 0, $limit = 10, $maxpages = 21, $numrows = null)
+    function MLIB_DB_Pager (&$res, $from = 0, $limit = 10, $maxpages = 21, $numrows = null)
     {
         $this->dbh = $res->dbh;
         $this->result = $res->result;
index 978fb4c6628a203fb5aed18e5bcede58a1230181..93a7e28b0f7a40a3ecdd19862508c0ac1ff7460b 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -27,12 +26,12 @@ $Id$
 /**
  * Indica que las condiciones deben concatenarse con <tt>OR</tt>.
  */
-define('MECON_DBO_OR', 'OR');
+define('MLIB_DBO_OR', 'OR');
 
 /**
  * Indica que las condiciones deben concatenarse con <tt>AND</tt>.
  */
-define('MECON_DBO_AND', 'AND');
+define('MLIB_DBO_AND', 'AND');
 
 /**
  * @example DBO.php
@@ -40,7 +39,7 @@ define('MECON_DBO_AND', 'AND');
  * para consulta.
  */
 
-// +X2C Class 16 :MECON_DBO
+// +X2C Class 16 :MLIB_DBO
 /**
  * Interfaz genérica para objetos que pueden ser guardados y/o operan con bases de datos.
 Utilizando esta interfaz se pueden hacer objetos genericos que manejen DBO, como por ejemplo tablas para listarlos. La forma común de recorrer una serie de resultados de una búsqueda de DBO puede verse en el método buscar().
@@ -48,7 +47,7 @@ Utilizando esta interfaz se pueden hacer objetos genericos que manejen DBO, como
  * @access public
  * @abstract
  */
-class MECON_DBO {
+class MLIB_DBO {
     // ~X2C
 
     // +X2C Operation 17
@@ -57,7 +56,7 @@ class MECON_DBO {
 Si hay un error, devuelve un PEAR_Error, si no devuelve la cantidad de objetos encontrados y carga el primero (si hay al menos un resultado).
 En el caso típico, se setea la propiedad que es la clave de la base de datos (siendo el resto nulas). Por ejemplo:
 @code
-class miDBO extends MECON_DBO {
+class miDBO extends MLIB_DBO {
        // Definición...
 }
 $db = DB::connect('mi DSN');
@@ -96,7 +95,7 @@ En el caso general, se hace un <tt>SELECT</tt> con un <tt>WHERE</tt> basado en l
 Si alguna clave es <tt>null</tt>, generalmente se guarda un objeto nuevo autoincrementando la clave en <tt>null</tt>. Si todas las claves son distintas de <tt>null</tt> y existe un objeto con las mismas claves, se modifica del existente los campos que el objeto no tenga en <tt>null</tt>; si no existe da error a menos que se use el indicador <tt>\$nuevo</tt>, en cuyo caso se agrega como nuevo. Si hay un error, devuelve un PEAR_Error. Si se guardan los datos bien, devuelve <tt>true</tt>.
 Por ejemplo:
 @code
-class miDBO extends MECON_DBO {
+class miDBO extends MLIB_DBO {
        // Definición...
 }
 $db = DB::connect('mi DSN');
@@ -142,7 +141,7 @@ En el caso general, se hace un <tt>UPDATE</tt> con un <tt>WHERE</tt> basado en l
 Si hay un error, devuelve un PEAR_Error. Si no, devuelve la cantidad de objetos borrados de la base de datos.
 Por ejemplo:
 @code
-class miDBO extends MECON_DBO {
+class miDBO extends MLIB_DBO {
        // Definición...
 }
 $db = DB::connect('mi DSN');
@@ -180,13 +179,13 @@ En el caso general, se hace un <tt>DELETE</tt> con un <tt>WHERE</tt> basado en l
 Si hay un error, devuelve un PEAR_Error. Si no, devuelve un DB_Result con los resultados de la búsqueda.
 Por ejemplo:
 @code
-class miDBO extends MECON_DBO {
+class miDBO extends MLIB_DBO {
        // Definición...
 }
 $db = DB::connect('mi DSN');
 $miDBO = new MiDBO();
 $miDBO->nombre = 'rez';
-$res = $miDBO->buscar($db, MECON_DBO_AND, 'nombre ASC');
+$res = $miDBO->buscar($db, MLIB_DBO_AND, 'nombre ASC');
 if (PEAR::isError($res)) {
        echo 'Hubo un error.';
 } else {
@@ -205,19 +204,19 @@ if (PEAR::isError($res)) {
 Es similar a cargar, ya que se hace un <tt>SELECT</tt> con un <tt>WHERE</tt> basado en los atributos no nulos pero puede concatenarse con <tt>AND</tt> u <tt>OR</tt> y se busca con <tt>LIKE</tt> para que dea más general.
      *
      * @param  DB $db Base de datos a utilizar en la búsqueda.
-     * @param  int $operador Indica que operador se usa para la búsqueda. Puede ser MECON_DBO_AND o MECON_DBO_OR.
+     * @param  int $operador Indica que operador se usa para la búsqueda. Puede ser MLIB_DBO_AND o MLIB_DBO_OR.
      * @param  mixed $orden Campos por los cuales ordenar. El formato es <tt>campo (ASC|DESC)</tt> (siedo <tt>ASC</tt> si se lo ordena de forma ascendente y <tt>DESC</tt> si se lo ordena de forma descendente). Puede pasarse un <em>string</em> o un <em>array</em> con varios <em>strings</em> con este formato para ordenarlo por más de un campo a la vez.
      *
      * @return mixed
      * @access public
      * @abstract
      */
-    function buscar($db = null, $operador = MECON_DBO_OR, $orden = '') // ~X2C
+    function buscar($db = null, $operador = MLIB_DBO_OR, $orden = '') // ~X2C
     {
         trigger_error('Not implemented!', E_USER_WARNING);
     }
     // -X2C
 
-} // -X2C Class :MECON_DBO
+} // -X2C Class :MLIB_DBO
 
 ?>
\ No newline at end of file
index 8f026a5b9012d108cfcebe33fe1522c9caa52ef5..1d221d8897321459ad5b01241a0955474ed7f3d7 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -32,53 +31,53 @@ require_once 'Date/Calc.php';
  *
  * @access public
  */
-class MECON_Date extends Date {
+class MLIB_Date extends Date {
 
     /**
      * Obtiene la fecha de inicio del próximo mes.
      *
-     * @return MECON_Date.
+     * @return MLIB_Date.
      * @access public
      */
     function getBeginOfNextMonth()
     {
-        return new MECON_Date(Date_Calc::beginOfNextMonth(
+        return new MLIB_Date(Date_Calc::beginOfNextMonth(
             $this->day, $this->month, $this->year, '%Y-%m-%d'));
     }
 
     /**
      * Obtiene la fecha de fin del próximo mes.
      *
-     * @return MECON_Date.
+     * @return MLIB_Date.
      * @access public
      */
     function getEndOfNextMonth()
     {
-        return new MECON_Date(Date_Calc::endOfNextMonth(
+        return new MLIB_Date(Date_Calc::endOfNextMonth(
             $this->day, $this->month, $this->year, '%Y-%m-%d'));
     }
 
     /**
      * Obtiene la fecha de inicio del mes anterior.
      *
-     * @return MECON_Date.
+     * @return MLIB_Date.
      * @access public
      */
     function getBeginOfPrevMonth()
     {
-        return new MECON_Date(Date_Calc::beginOfPrevMonth(
+        return new MLIB_Date(Date_Calc::beginOfPrevMonth(
             $this->day, $this->month, $this->year, '%Y-%m-%d'));
     }
 
     /**
      * Obtiene la fecha de fin del mes anterior.
      *
-     * @return MECON_Date.
+     * @return MLIB_Date.
      * @access public
      */
     function getEndOfPrevMonth()
     {
-        return new MECON_Date(Date_Calc::endOfPrevMonth(
+        return new MLIB_Date(Date_Calc::endOfPrevMonth(
             $this->day, $this->month, $this->year, '%Y-%m-%d'));
     }
 
index 05cbd13f5d947aa042dbf8da03162c1b5b2f91ca..0d1ca1f5f93eb33925f89ad07236017bede7d0cc 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -40,7 +39,7 @@ require_once 'PEAR.php';
  * @todo Probar. Agregar _updateDBInfo() a todas las funciones de Date que
  *       modifiquen la fecha.
  */
-class MECON_Feriado extends Date {
+class MLIB_Feriado extends Date {
 
     /**
      * Base de datos a usar para las consultas.
@@ -60,7 +59,7 @@ class MECON_Feriado extends Date {
     /// Descripción del feriado.
     var $descripcion;
 
-    function MECON_Feriado($db, $date = null) {
+    function MLIB_Feriado($db, $date = null) {
         $this->_db = $db;
         parent::Date($date);
     }
index fa8d412deeecdd955538665ceffca200cbe780ea..3f4a401c1914d5ec37b407a6e425d245a55ceb19 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,12 +23,12 @@ Autor:  Manuel Nazar Anchorena <manazar@mecon.gov.ar>
 $Id: Graph.php 428 2003-11-18 14:30:30Z mmarre $
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/Graph/external/jpgraph/src/jpgraph.php';
+require_once 'MLIB/Graph/external/jpgraph/src/jpgraph.php';
 
 /**
  * Liberia base para el manejo de graficos.  
  */
-class MECON_Graph {
+class MLIB_Graph {
 
 
     /**
@@ -91,7 +90,7 @@ class MECON_Graph {
      * @return void
      * @access public
      */
-    function MECON_graph($tipo, $ancho=300, $alto=200,$titulo,$attrib_gral=NULL)
+    function MLIB_graph($tipo, $ancho=300, $alto=200,$titulo,$attrib_gral=NULL)
     {    
         $this->_tipo=$tipo;
         $this->_ancho= $ancho;
@@ -120,8 +119,8 @@ class MECON_Graph {
 
         if(($this->_tipo=="torta")||($this->_tipo=="torta3D"))
         {
-            require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie.php';
-            require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie3d.php';
+            require_once 'MLIB/Graph/external/jpgraph/src/jpgraph_pie.php';
+            require_once 'MLIB/Graph/external/jpgraph/src/jpgraph_pie3d.php';
             
             $this->_grafico= new PieGraph($ancho,$alto);
 
@@ -198,7 +197,7 @@ class MECON_Graph {
             if ($tipo=="lineas")
             {
                 $valido=true;
-                require_once 'MECON/Graph/external/jpgraph/src/jpgraph_line.php';
+                require_once 'MLIB/Graph/external/jpgraph/src/jpgraph_line.php';
                 $plot= new LinePlot($secuencia);
 
                 if (isset($atributos['colorRelleno']))
@@ -209,7 +208,7 @@ class MECON_Graph {
             if ($tipo=="barras")
             {
                 $valido=true;
-                require_once 'MECON/Graph/external/jpgraph/src/jpgraph_bar.php';
+                require_once 'MLIB/Graph/external/jpgraph/src/jpgraph_bar.php';
                 $plot= new BarPlot($secuencia);
 
                 if (isset($atributos['colorRelleno']))
@@ -220,7 +219,7 @@ class MECON_Graph {
             if ($tipo=="puntos")
             {
                 $valido=true;
-                require_once 'MECON/Graph/external/jpgraph/src/jpgraph_scatter.php';
+                require_once 'MLIB/Graph/external/jpgraph/src/jpgraph_scatter.php';
                 $plot= new ScatterPlot($secuencia);
 
                 if (isset($atributos['tipoMarca']))
@@ -315,12 +314,12 @@ class MECON_Graph {
      * 
      * Ejemplo de Uso:
      * @code
-     *      require_once 'MECON/Graph.php';
+     *      require_once 'MLIB/Graph.php';
      *      
      *      $v1 = array(12,8,19,3,10,5);
      *      $v2 = array(1,28,9,13,1,5);
      *
-     *      $graph =& new MECON_Graph ("xy", 300, 300, 'PRUEBA');
+     *      $graph =& new MLIB_Graph ("xy", 300, 300, 'PRUEBA');
      *
      *      $b1plot = $graph->agregarSecuencia("barras", $v1);
      *      $b2plot = $graph->agregarSecuencia("barras", $v2);
@@ -364,10 +363,10 @@ class MECON_Graph {
      *
      * Ejemplo de uso:
      * @code
-     *      require_once 'MECON/Graph.php';
+     *      require_once 'MLIB/Graph.php';
      * 
      *      $valores = array (4, 6, 23, 14, 30);
-     *      $nuevos = MECON_Graph::porcentajes($valores);
+     *      $nuevos = MLIB_Graph::porcentajes($valores);
      *
      *      // se obtiene (5, 8, 30, 18, 39) (%)
      *
@@ -381,7 +380,7 @@ class MECON_Graph {
      */
      function porcentajes ($valores)
      {
-        require_once 'MECON/Graph/external/jpgraph/src/jpgraph_pie.php';
+        require_once 'MLIB/Graph/external/jpgraph/src/jpgraph_pie.php';
 
         $plot = new PiePlot ($valores);
         
index 7c39ca25e9d928d5ea2ef6eff942c44c1e6e8c41..683cd4d90ed52e55b73c777bd77ed0e815a7ca94 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -26,14 +25,14 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 require_once 'HTML/Table.php';
-require_once 'MECON/HTML/Image.php';
+require_once 'MLIB/HTML/Image.php';
 
 /**
  * DESC
  *
  * @access public
  */
-class MECON_HTML_Arbol extends HTML_Table
+class MLIB_HTML_Arbol extends HTML_Table
 {
 
     /**
@@ -70,7 +69,7 @@ class MECON_HTML_Arbol extends HTML_Table
      * @return void
      * @access public
      */
-    function MECON_HTML_Arbol($datos, $titulo, $link_append = '')
+    function MLIB_HTML_Arbol($datos, $titulo, $link_append = '')
     {
         parent::HTML_Table(array(
             'width'         => '132',
@@ -90,7 +89,7 @@ class MECON_HTML_Arbol extends HTML_Table
      * @access public
      */
     function getCSS() {
-        return '/MECON/css/html/arbol';
+        return '/MLIB/css/html/arbol';
     }
 
     /**
@@ -107,9 +106,9 @@ class MECON_HTML_Arbol extends HTML_Table
     {
         $bullets = array(
             '',
-            '/MECON/images/arbol_bullet_1.gif',
-            '/MECON/images/arbol_bullet_2.gif',
-            '/MECON/images/arbol_bullet_3.gif'
+            '/MLIB/images/arbol_bullet_1.gif',
+            '/MLIB/images/arbol_bullet_2.gif',
+            '/MLIB/images/arbol_bullet_3.gif'
         );
         $alts = array(
             '',
@@ -117,8 +116,8 @@ class MECON_HTML_Arbol extends HTML_Table
             '-',
             '·'
         );
-        $classes = array('mecon_html_arbol_menu', 'mecon_html_arbol_menu1',
-            'mecon_html_arbol_menu1', 'mecon_html_arbol_menu2');
+        $classes = array('MLIB_html_arbol_menu', 'MLIB_html_arbol_menu1',
+            'MLIB_html_arbol_menu1', 'MLIB_html_arbol_menu2');
         $tabulados = 7;
         $atr = array(
             'border' => '0',
@@ -127,17 +126,17 @@ class MECON_HTML_Arbol extends HTML_Table
         );
         $margen = ' ';
         if ($n) {
-            $margen = new MECON_HTML_Image('/MECON/images/blanco.gif', str_repeat('  ', $n), $atr);
+            $margen = new MLIB_HTML_Image('/MLIB/images/blanco.gif', str_repeat('  ', $n), $atr);
             $margen = $margen->toHtml();
         }
         $imagen = '';
         if (@$bullets[$n]) {
-            $imagen = new MECON_HTML_Image($bullets[$n], @$alts[$n]);
+            $imagen = new MLIB_HTML_Image($bullets[$n], @$alts[$n]);
             $imagen = $imagen->toHtml();
         }
         foreach ($dat as $e) {
             $titulo = $e['titulo'];
-            if(isset($e['activo']) && $e['activo'] != 0) $class = 'mecon_html_arbol_menu_activo';
+            if(isset($e['activo']) && $e['activo'] != 0) $class = 'MLIB_html_arbol_menu_activo';
             else $class = @$classes[$n] ? $classes[$n] : end($classes);
             if(isset($e['bold'])) $class .= '_bold';
             if(!is_null($e['link'])) {
@@ -169,7 +168,7 @@ class MECON_HTML_Arbol extends HTML_Table
             'border'        => '0',
             'cellspacing'   => '2',
             'cellpadding'   => '0',
-            'class'         => 'mecon_html_arbol_bodytext'));
+            'class'         => 'MLIB_html_arbol_bodytext'));
         $titulo = new HTML_Table(array(
             'width'         => '132',
             'height'        => '26',
@@ -177,10 +176,10 @@ class MECON_HTML_Arbol extends HTML_Table
             'cellspacing'   => '0',
             'cellpadding'   => '0',
             'align'         => 'center',
-            'background'    => '/MECON/images/arbol_titulo.gif'));
+            'background'    => '/MLIB/images/arbol_titulo.gif'));
         $titulo->addRow(array($this->titulo), array(
             'align' => 'center',
-            'class' => 'mecon_html_arbol_titulo'));
+            'class' => 'MLIB_html_arbol_titulo'));
         $this->addRow(array($titulo), array('bgcolor' => '#FFFFFF'));
         $this->expandir($this->datos, 0, $t_interna);
         $this->addRow(array($t_interna->toHTML()));
index dedf3b93b37d21b6e2c5f3dd2c4f5e34999b5b4f..8fd2a733180a4bbf3c22917d85f5fe1e590ff87b 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,7 +24,7 @@ Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/HTML/Arbol.php';
+require_once 'MLIB/HTML/Arbol.php';
 require_once 'DB.php';
 
 /**
@@ -33,7 +32,7 @@ require_once 'DB.php';
  *
  * @access public
  */
-class MECON_HTML_ArbolDB extends MECON_HTML_Arbol
+class MLIB_HTML_ArbolDB extends MLIB_HTML_Arbol
 {
     
     /**
@@ -126,7 +125,7 @@ class MECON_HTML_ArbolDB extends MECON_HTML_Arbol
      * @return void
      * @access public
      */
-    function MECON_HTML_ArbolDB($dbdata, $titulo, $link_append = '', $expandir = false)
+    function MLIB_HTML_ArbolDB($dbdata, $titulo, $link_append = '', $expandir = false)
     {
         if(isset($dbdata['id_padre']))
             $this->padre = $dbdata['id_padre'];
@@ -164,7 +163,7 @@ class MECON_HTML_ArbolDB extends MECON_HTML_Arbol
           }
         }
 
-        parent::MECON_HTML_Arbol(array(), $titulo, $link_append);
+        parent::MLIB_HTML_Arbol(array(), $titulo, $link_append);
         $this->datos = $this->BuscarHijos(0);
     }
      
index 443cacff4be3d47ee317c39ed3d9e7dd353ed067..55abf5f16f059becccadbc9d1f1196545cef4f17 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -29,7 +28,7 @@ $Id$
  *
  * @access public
  */
-class MECON_HTML_Error {
+class MLIB_HTML_Error {
     /**
      * Mensaje de error.
      *
@@ -46,7 +45,7 @@ class MECON_HTML_Error {
      * @return void
      * @access public
      */
-    function MECON_HTML_Error($msg = '')
+    function MLIB_HTML_Error($msg = '')
     {
         // TODO - hacer que se le pueda pasar un PEAR_Error y que le saque el mensaje solita.
         $this->msg = $msg;
index 2b5001d3c2b6b83aa68d409dbfb3022b33a11c9c..add966435bdf09397ac3725d06bca82172f3ce60 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,8 +23,8 @@ Author:  Leandro Lucarella <llucar@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/HTML/Link.php';
-require_once 'MECON/HTML/Image.php';
+require_once 'MLIB/HTML/Link.php';
+require_once 'MLIB/HTML/Image.php';
 
 /**
  * Ícono.
@@ -33,16 +32,16 @@ require_once 'MECON/HTML/Image.php';
  * Básicamente es una imágen con un link.
  * Ejemplo:
  * @code
- * require_once 'MECON/HTML/Icon.php';
- * require_once 'MECON/HTML/Link.php';
+ * require_once 'MLIB/HTML/Icon.php';
+ * require_once 'MLIB/HTML/Link.php';
  * // Crea un ícono de IR sin link.
- * $icono1 = new MECON_HTML_Icon('ir');
+ * $icono1 = new MLIB_HTML_Icon('ir');
  * // Crea un ícono de ELIMINAR que apunta a 'algun/lugar'.
- * $icono2 = new MECON_HTML_Icon('eliminar', 'algun/lugar');
+ * $icono2 = new MLIB_HTML_Icon('eliminar', 'algun/lugar');
  * // Crea un ícono de NUEVO que apunta a 'algun/lugar?id=3&cant=10', tiene el
  * // texto alternativo '>>' y 1 píxel de borde.
- * $icono3 = new MECON_HTML_Icon('nuevo',
- *     new MECON_HTML_Link('algun/lugar', '', array('id' => 3, $cant => 10)),
+ * $icono3 = new MLIB_HTML_Icon('nuevo',
+ *     new MLIB_HTML_Link('algun/lugar', '', array('id' => 3, $cant => 10)),
  *     '>>', array('border' => 1));
  * // Muestra todos los íconos.
  * $icon1->display();
@@ -52,7 +51,7 @@ require_once 'MECON/HTML/Image.php';
  *
  * @access public
  */
-class MECON_HTML_Icon extends MECON_HTML_Image {
+class MLIB_HTML_Icon extends MLIB_HTML_Image {
 
     /**
      * Link a donde apunta la imagen.
@@ -71,12 +70,12 @@ class MECON_HTML_Icon extends MECON_HTML_Image {
      *
      * @param $nombre Nombre de la imágen.
      * @param $link   Link a donde apunta. Si es null, no tiene un link.
-                      Puede ser un link o un MECON_HTML_Link.
+                      Puede ser un link o un MLIB_HTML_Link.
      * @param $alt    Texto alternativo para la imagen.
      * @param $attrs  Atributos de la imágen.
      * @param $align  Alineación de la imagen con respecto al texto.
      */
-    function MECON_HTML_Icon($nombre, $link = null, $alt = null, $attrs =
+    function MLIB_HTML_Icon($nombre, $link = null, $alt = null, $attrs =
             array(), $align = 'right')
     {
         if (is_readable($nombre))
@@ -85,12 +84,12 @@ class MECON_HTML_Icon extends MECON_HTML_Image {
         }
         else             
         {
-            $src = "/MECON/images/general_$nombre";
+            $src = "/MLIB/images/general_$nombre";
         }
         if (is_null($alt)) {
             $alt = '(' . strtoupper($nombre{0}) . ')';
         }
-        parent::MECON_HTML_Image($src, $alt, $attrs);
+        parent::MLIB_HTML_Image($src, $alt, $attrs);
         $this->setLink($link);
         $this->_align = $align;
     }
@@ -143,8 +142,8 @@ class MECON_HTML_Icon extends MECON_HTML_Image {
      */
     function setLink($link)
     {
-        if (!is_a($link, 'mecon_html_link') and !is_null($link)) {
-            $this->_link = new MECON_HTML_Link($link);
+        if (!is_a($link, 'MLIB_html_link') and !is_null($link)) {
+            $this->_link = new MLIB_HTML_Link($link);
         } else {
             $this->_link = $link;
         }
@@ -163,11 +162,11 @@ class MECON_HTML_Icon extends MECON_HTML_Image {
         }
 
         if ($this->_align == 'left') {
-            $link->addContents(new MECON_HTML_Image($this->getSrc(),
+            $link->addContents(new MLIB_HTML_Image($this->getSrc(),
                         $this->getAlt(), $this->getAttributes()), true);
         }
         elseif ($this->_align == 'right') {
-            $link->addContents(new MECON_HTML_Image($this->getSrc(),
+            $link->addContents(new MLIB_HTML_Image($this->getSrc(),
                         $this->getAlt(), $this->getAttributes()));
         }
         return $link;
index 86406efb52dcf656735dba2b91ceb9053610f030..0fc942e578cd170936ee1ecab536b9df73e60cd3 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -28,14 +27,14 @@ $Id$
 require_once 'HTML/Common.php';
 // ~X2C
 
-// +X2C Class 537 :MECON_HTML_Image
+// +X2C Class 537 :MLIB_HTML_Image
 /**
  * HTML Image representation.
  *
  * @package HTML
  * @access public
  */
-class MECON_HTML_Image extends HTML_Common {
+class MLIB_HTML_Image extends HTML_Common {
     // ~X2C
 
     // +X2C Operation 169
@@ -49,7 +48,7 @@ class MECON_HTML_Image extends HTML_Common {
      * @return void
      * @access public
      */
-    function MECON_HTML_Image($src = '', $alt = '', $attrs = array()) // ~X2C
+    function MLIB_HTML_Image($src = '', $alt = '', $attrs = array()) // ~X2C
     {
         if (is_array($attrs)) {
             $attrs['src'] = $src;
@@ -135,5 +134,5 @@ class MECON_HTML_Image extends HTML_Common {
     }
     // -X2C
 
-} // -X2C Class :MECON_HTML_Image
+} // -X2C Class :MLIB_HTML_Image
 ?>
\ No newline at end of file
index 08e527521e41a58028876e641048c5f2461b69c6..a799b20dced788bfecd6e44a18cd2e46ce3431e2 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -34,7 +33,7 @@ This is done in toHtml() method. Object are stored as references.
  * @package HTML
  * @access public
  */
-class MECON_HTML_Link extends HTML_Common {
+class MLIB_HTML_Link extends HTML_Common {
     /**
      * Variables to send via GET HTTP method.
      *
@@ -86,12 +85,12 @@ class MECON_HTML_Link extends HTML_Common {
      * @return void
      * @access public
      */
-    function MECON_HTML_Link($href = '', $contents = '', $getVars = array(), $attrs = array())
+    function MLIB_HTML_Link($href = '', $contents = '', $getVars = array(), $attrs = array())
     {
         if (is_array($attrs)) {
             $attrs['href'] = $href;
             if (!isset($attrs['class'])){
-                $attrs['class'] = 'mecon_html_link';
+                $attrs['class'] = 'MLIB_html_link';
             }
         } else {
             $attrs .= " href=$href";
@@ -247,7 +246,7 @@ If they doesn't exists, they are added, if they exists, they are updated.
      */
     function getCSS()
     {
-        return '/MECON/css/html/link';
+        return '/MLIB/css/html/link';
     }
 
     /**
index 69194dd19c695e6c4f05af6925adbaa4553c9051..d99684dafee28ba9bcaf73ff8755bea9b624e638 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -27,12 +26,12 @@ $Id$
 require_once 'HTML/Page.php';
 
 /**
- * Clase para crear paginas sin tener que utilizar MECON_Marco.
+ * Clase para crear paginas sin tener que utilizar MLIB_Marco.
  * Obtiene los css de los objetos que se le agregan
  *
  * @access public
  */
-class MECON_HTML_Page extends HTML_Page {
+class MLIB_HTML_Page extends HTML_Page {
     
     /**
      * Constructor.
@@ -40,7 +39,7 @@ class MECON_HTML_Page extends HTML_Page {
      * @return void
      * @access public
      */
-    function MECON_HTML_Page()
+    function MLIB_HTML_Page()
     {
         parent::HTML_Page(
                 array (
@@ -64,7 +63,7 @@ class MECON_HTML_Page extends HTML_Page {
      */
     function getCSS()
     {
-        return '/MECON/css/html/page';
+        return '/MLIB/css/html/page';
     }
     
     /**
@@ -91,11 +90,11 @@ class MECON_HTML_Page extends HTML_Page {
      */
     function exitError($msg)
     {
-        require_once 'MECON/HTML/Error.php';
+        require_once 'MLIB/HTML/Error.php';
         if (is_a($msg, 'pear_error')) {
             $msg = $msg->getMessage();
         }
-        $this->addBodyContent(new MECON_HTML_Error($msg));
+        $this->addBodyContent(new MLIB_HTML_Error($msg));
         $this->display();
         exit;
     }
index c5b52cafa236657b7428e4ec83aab9bf5d2343b6..3c65d6246c9063e379e1e44ad4332720e1d82f91 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,20 +23,20 @@ Autor:  Leandro Lucarella <llucar@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/HTML/QuickFormSimple.php';
-require_once 'MECON/HTML/QuickForm/Renderer/Tabla.php';
+require_once 'MLIB/HTML/QuickFormSimple.php';
+require_once 'MLIB/HTML/QuickForm/Renderer/Tabla.php';
 
 /**
  * QuickForm de uso general del MECON.
  */
-class MECON_HTML_QuickForm extends MECON_HTML_QuickFormSimple {
+class MLIB_HTML_QuickForm extends MLIB_HTML_QuickFormSimple {
     
     var $renderer;
     
-    function MECON_HTML_QuickForm($formName='', $method='post', $action='', $target='_self', $attributes=null)
+    function MLIB_HTML_QuickForm($formName='', $method='post', $action='', $target='_self', $attributes=null)
     {
-        parent::MECON_HTML_QuickFormSimple($formName, $method, $action, $target, $attributes);
-        $this->renderer =& new MECON_HTML_QuickForm_Renderer_Tabla();
+        parent::MLIB_HTML_QuickFormSimple($formName, $method, $action, $target, $attributes);
+        $this->renderer =& new MLIB_HTML_QuickForm_Renderer_Tabla();
     }
 
     function toHtml() 
index 4ef1fade5b5ee88c15e5f05f402bdf285bde8ca0..a867cd430b0f3fe5a633105df7745ec5767e3817 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                            Ministerio de Economía
-                                   meconlib
+                                   mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,7 +24,7 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 require_once 'HTML/QuickForm/Renderer.php';
-require_once 'MECON/HTML/Tabla.php';
+require_once 'MLIB/HTML/Tabla.php';
 
 /**
  * QuickForm renderer que usa Tabla como backend.
@@ -33,7 +32,7 @@ require_once 'MECON/HTML/Tabla.php';
  * 
  * @access public
  */
-class MECON_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
+class MLIB_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
 
    /**
     * Tabla usada para dibujar el formulario.
@@ -93,14 +92,14 @@ class MECON_HTML_QuickForm_Renderer_Tabla extends HTML_QuickForm_Renderer {
     *
     * @access public
     */
-    function MECON_HTML_QuickForm_Renderer_Tabla($param = array())
+    function MLIB_HTML_QuickForm_Renderer_Tabla($param = array())
     {
         $this->HTML_QuickForm_Renderer();
         if (is_a($param, 'Tabla')) {
             $this->setTable($param);
         }
         else {
-            $this->tabla =& new MECON_HTML_Tabla($param);
+            $this->tabla =& new MLIB_HTML_Tabla($param);
         }
     } // end constructor
 
index d918deffb3a50456fe74c9b934019ccd3a1a722a..acb586da91e708ed6a433bb248b7550dff7b47c5 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                            Ministerio de Economía
-                                   meconlib
+                                   mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,19 +24,19 @@ $Id: Tabla.php 462 2004-01-09 21:11:01Z www-data $
 -----------------------------------------------------------------------------*/
 
 require_once 'HTML/QuickForm/Renderer.php';
-require_once 'MECON/HTML/Tabla.php';
+require_once 'MLIB/HTML/Tabla.php';
 
 /**
  * QuickForm renderer que usa Tabla como backend. Es similar a
- * MECON_HTML_QuickForm_Renderer_Tabla pero dibuja la tabla horizontalmente.
+ * MLIB_HTML_QuickForm_Renderer_Tabla pero dibuja la tabla horizontalmente.
  * Ej:
  * <code>
- * $form = new MECON_HTML_QuickForm();
- * $form->renderer = new MECON_HTML_QuickForm_Renderer_TablaHorizontal(array('width' => 400));
+ * $form = new MLIB_HTML_QuickForm();
+ * $form->renderer = new MLIB_HTML_QuickForm_Renderer_TablaHorizontal(array('width' => 400));
  * // Sigo creando el formulario normalmente...
  * </code>
  */
-class MECON_HTML_QuickForm_Renderer_TablaHorizontal extends HTML_QuickForm_Renderer {
+class MLIB_HTML_QuickForm_Renderer_TablaHorizontal extends HTML_QuickForm_Renderer {
 
     /**
      * Tabla usada para dibujar el formulario.
@@ -128,7 +127,7 @@ class MECON_HTML_QuickForm_Renderer_TablaHorizontal extends HTML_QuickForm_Rende
     *
     * @access public
     */
-    function MECON_HTML_QuickForm_Renderer_TablaHorizontal($param = array(), $opts = array())
+    function MLIB_HTML_QuickForm_Renderer_TablaHorizontal($param = array(), $opts = array())
     {
         parent::HTML_QuickForm_Renderer();
         $this->_opts = $opts;
@@ -136,7 +135,7 @@ class MECON_HTML_QuickForm_Renderer_TablaHorizontal extends HTML_QuickForm_Rende
             $this->setTable($param);
         }
         else {
-            $this->setTable(new MECON_HTML_Tabla($param));
+            $this->setTable(new MLIB_HTML_Tabla($param));
         }
     } // end constructor
 
index 9308aba35c75fb8dbfa2697d9e2927732509bbd8..bb2acc23aab9155042758e360ca7832c1288e2c3 100644 (file)
 
 require_once('HTML/QuickForm/element.php');
 require_once('HTML/QuickForm/radio.php');
-require_once('MECON/defaults.php');
-require_once 'MECON/HTML/Image.php';
+require_once('MLIB/defaults.php');
+require_once 'MLIB/HTML/Image.php';
 /**
  * Class to dynamically create HTML Select elements from a date
  *
  * @author       Bertrand Mansion <bmansion@mamasam.com>
  * @access       public
  */
-class MECON_HTML_QuickForm_caritas extends HTML_QuickForm_element {
+class MLIB_HTML_QuickForm_caritas extends HTML_QuickForm_element {
     // {{{ properties
 
     /**
@@ -92,7 +92,7 @@ class MECON_HTML_QuickForm_caritas extends HTML_QuickForm_element {
      * @return    void
      */
 
-    function MECON_HTML_QuickForm_caritas($elementName=null, $elementLabel=null, $options=array(), $attributes=null) {
+    function MLIB_HTML_QuickForm_caritas($elementName=null, $elementLabel=null, $options=array(), $attributes=null) {
         HTML_QuickForm_element::HTML_QuickForm_element($elementName, $elementLabel, $attributes);
         $this->_persistantFreeze = true;
         $this->_type = 'caritas';
@@ -212,7 +212,7 @@ class MECON_HTML_QuickForm_caritas extends HTML_QuickForm_element {
     function _createRadios() {
         $this->caritas= array();
         $elementName = $this->name;
-        $dir = MECON_DIR_FS_IMG.'/caritas';
+        $dir = MLIB_DIR_FS_IMG.'/caritas';
         $cant=5;
         $i=1;
         foreach ($this->listarArchivos($dir,'','.gif') as $nombre) {
@@ -252,7 +252,7 @@ class MECON_HTML_QuickForm_caritas extends HTML_QuickForm_element {
                     $strHtml .= $element->toHtml();
                 }
             }
-            $imagen =& new MECON_HTML_Image(MECON_DIR_IMG."/caritas/$nombre");
+            $imagen =& new MLIB_HTML_Image(MLIB_DIR_IMG."/caritas/$nombre");
             $strHtml .= '&nbsp;' . $imagen->toHtml() . '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
             if (!($i++ % $this->_cols))
                 $strHtml .=  '<br>';
index 3c28d14b434ced50c6ac7df895a1387762b82d74..d8982cdfdf3fceff9b966b62bd901f56c44b6642 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
  
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
  
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -33,7 +32,7 @@ require_once 'Validate.php';
  * Modificado para que cumpla con los requisitos de mecon
  *
  */
-class MECON_HTML_QuickForm_mdate extends HTML_QuickForm_date {
+class MLIB_HTML_QuickForm_mdate extends HTML_QuickForm_date {
     // {{{ constructor
 
     /**
@@ -46,7 +45,7 @@ class MECON_HTML_QuickForm_mdate extends HTML_QuickForm_date {
      * @access    public
      * @return    void
      */
-    function MECON_HTML_QuickForm_mdate($elementName=null, $elementLabel=null, $options=array(), $attributes=null) {
+    function MLIB_HTML_QuickForm_mdate($elementName=null, $elementLabel=null, $options=array(), $attributes=null) {
         $this->_locale = array ('es' => array (
                                            'weekdays_short'=> array ('' => '--', 'Dom', 'Lun', 'Mar', 'Mié', 'Jue', 'Vie', 'Sáb'),
                                            'weekdays_long' => array ('' => '--', 'Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'),
index b3e24275b37f8066165b76e2fa927a3e2f958966..4644e25e3046aa4f618821274d6f80f30ff0e011 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -29,14 +28,14 @@ require_once 'HTML/QuickForm.php';
 /**
  * QuickForm de uso general del MECON.
  */
-class MECON_HTML_QuickFormSimple extends HTML_QuickForm {
+class MLIB_HTML_QuickFormSimple extends HTML_QuickForm {
     
-    function MECON_HTML_QuickFormSimple($formName='', $method='post', $action='', $target='_self', $attributes=null)
+    function MLIB_HTML_QuickFormSimple($formName='', $method='post', $action='', $target='_self', $attributes=null)
     {
         parent::HTML_QuickForm($formName, $method, $action, $target, $attributes);
-        $this->registerElementType('mdate', 'MECON/HTML/QuickForm/mdate.php', 'MECON_HTML_QuickForm_mdate');
-        $this->registerRule('fecha', 'function', 'validate', 'MECON_HTML_QuickForm_mdate');
-        $this->registerElementType('caritas', 'MECON/HTML/QuickForm/caritas.php', 'MECON_HTML_QuickForm_caritas');
+        $this->registerElementType('mdate', 'MLIB/HTML/QuickForm/mdate.php', 'MLIB_HTML_QuickForm_mdate');
+        $this->registerRule('fecha', 'function', 'validate', 'MLIB_HTML_QuickForm_mdate');
+        $this->registerElementType('caritas', 'MLIB/HTML/QuickForm/caritas.php', 'MLIB_HTML_QuickForm_caritas');
         $this->setRequiredNote('<font color="red">*</font> indica un campo obligatorio');
         $this->setJsWarnings('Hay errores en el formulario:', 'Por favor corríjalos antes de continuar.');
     }
index f5cdad0ff98daae9b6d8e12fb5d175a3ba11c349..797964b7413889959e6906176a74c5e6f5bab999 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,14 +24,14 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 require_once 'HTML/Table.php';
-require_once 'MECON/HTML/Image.php';
-require_once 'MECON/HTML/Link.php';
+require_once 'MLIB/HTML/Image.php';
+require_once 'MLIB/HTML/Link.php';
 
 /**
  * Libreria para le manejo de las tablas de los sistemas de intranet.
  *
  */
-class MECON_HTML_Tabla extends HTML_Table {
+class MLIB_HTML_Tabla extends HTML_Table {
     
     /**
      * Valores de Configuracion particular
@@ -78,7 +77,7 @@ class MECON_HTML_Tabla extends HTML_Table {
      * 
      * @access public
      */
-    function MECON_HTML_Tabla($attrs = null, $estilo = 'comun') {
+    function MLIB_HTML_Tabla($attrs = null, $estilo = 'comun') {
         // Obtengo los valores particulares de configuracion.
         $this->_conf = include(dirname(__FILE__) . '/Tabla/estilo_' . $estilo . '.php');
         // Seteo los atributos para la tabla
@@ -423,17 +422,17 @@ class MECON_HTML_Tabla extends HTML_Table {
      *      $tabla->addLink('nuevos', 'nuevos.php');
      * }
      * $tabla->addLink('volver',
-     *      new MECON_HTML_Link('atras.php'));
+     *      new MLIB_HTML_Link('atras.php'));
      * $tabla->addLink('anterior',
-     *      new MECON_HTML_Link('previo.php', 'Persona Anterior'));
+     *      new MLIB_HTML_Link('previo.php', 'Persona Anterior'));
      * $tabla->addLink('siguiente',
-     *      new MECON_HTML_Link('previo.php', 'Siguiente persona',
+     *      new MLIB_HTML_Link('previo.php', 'Siguiente persona',
      *          array('pers' => 'prox')));
      * @endcode
      *
      * @param string $id Identificador del link predefinido. Puede ser 'volver',
      *                   'nuevo', 'nuevos', 'buscar', 'anterior' y 'siguiente'.
-     * @param MECON_HTML_Link $link Link a usar. Si no tiene contenidos, se pone
+     * @param MLIB_HTML_Link $link Link a usar. Si no tiene contenidos, se pone
      *                              uno por defecto. Si es null, se pone como
      *                              link la página actual.
      * 
@@ -443,11 +442,11 @@ class MECON_HTML_Tabla extends HTML_Table {
             $link = @$_SERVER['PHP_SELF'];
         }
         if (is_string($link)) {
-            $link = new MECON_HTML_Link($link, '');
+            $link = new MLIB_HTML_Link($link, '');
         }
         switch ($id) {
             case 'nuevo':
-                $img = new MECON_HTML_Image('/MECON/images/general_nuevo', ' >>');
+                $img = new MLIB_HTML_Image('/MLIB/images/general_nuevo', ' >>');
                 // Si no tiene titulo, le pone titulo por defecto.
                 if (!$link->getContents()) {
                     $link->setContents('Nuevo');
@@ -456,7 +455,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updateCabecera($link, 'derecha');
                 break;
             case 'nuevos':
-                $img = new MECON_HTML_Image('/MECON/images/general_muchos_nuevo', ' >>');
+                $img = new MLIB_HTML_Image('/MLIB/images/general_muchos_nuevo', ' >>');
                 // Si no tiene titulo, le pone titulo por defecto.
                 if (!$link->getContents()) {
                     $link->setContents('Nuevos');
@@ -465,7 +464,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updateCabecera($link, 'derecha');
                 break;
             case 'buscar':
-                $img = new MECON_HTML_Image('/MECON/images/general_lupa', ' ?>');
+                $img = new MLIB_HTML_Image('/MLIB/images/general_lupa', ' ?>');
                 // Si no tiene titulo, le pone titulo por defecto.
                 if (!$link->getContents()) {
                     $link->setContents('Buscar');
@@ -474,7 +473,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updateCabecera($link, 'derecha');
                 break;
             case 'siguiente':
-                $img = new MECON_HTML_Image('/MECON/images/general_posterior', ' >>');
+                $img = new MLIB_HTML_Image('/MLIB/images/general_posterior', ' >>');
                 // Si no tiene titulo, le pone titulo por defecto.
                 if (!$link->getContents()) {
                     $link->setContents('Siguiente');
@@ -483,7 +482,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updatePie($link, 'derecha');
                 break;
             case 'volver':
-                $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<< ');
+                $img = new MLIB_HTML_Image('/MLIB/images/general_anterior', '<< ');
                 // Si no tiene titulo, le pone titulo por defecto.
                 $cont = $link->getContents() ? $link->getContents() : 'Volver';
                 $link->setContents($img);
@@ -491,7 +490,7 @@ class MECON_HTML_Tabla extends HTML_Table {
                 $this->updateCabecera($link, 'izquierda');
                 break;
             case 'anterior':
-                $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<< ');
+                $img = new MLIB_HTML_Image('/MLIB/images/general_anterior', '<< ');
                 // Si no tiene titulo, le pone titulo por defecto.
                 $cont = $link->getContents() ? $link->getContents() : 'Anterior';
                 $link->setContents($img);
index 5836748c4b92543156f57f0f9c2a0389eb3fa8a8..0eb114568982fc1ec85823a345be9f75050cd4f9 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 tw=80 fdm=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -49,19 +48,19 @@ return array (
                'bgcolor' => '#FFFFFF',
                'valign'  => 'middle',
                'align'   => 'left',
-            'class'   => 'mecon_html_tabla_claro_cabecera',
+            'class'   => 'mlib_html_tabla_claro_cabecera',
         ), // }}}
         'celda_titulo' => array( // {{{
                'bgcolor' => '#FFFFFF',
                'valign'  => 'middle',
                'align'   => 'left',
-            'class'   => 'mecon_html_tabla_claro_titulo',
+            'class'   => 'mlib_html_tabla_claro_titulo',
         ), // }}}
         'celda_comun' => array( // {{{
                'bgcolor' => '#FFFFFF',
                'valign'  => 'middle',
                'align'   => 'left',
-            'class'   => 'mecon_html_tabla_claro_comun',
+            'class'   => 'mlib_html_tabla_claro_comun',
         ), // }}}
     ), // }}}
 );
index a6a1aa66b8c427aab4bad33a015ce1e9a0a3b625..377750707aa31f621df67f7d044d615d2051aed9 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 tw=80 fdm=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -26,7 +25,7 @@ $Id$
 
 // Opciones para la tabla {{{
 return array (
-    'css' => '/MECON/css/html/tabla/comun',
+    'css' => '/MLIB/css/html/tabla/comun',
     'atributos' =>  array ( // {{{
         'tabla_contenedora' => array( // {{{
             'width'       => '100%',
@@ -50,19 +49,19 @@ return array (
             'bgcolor' => '#336699',
             'valign'  => 'middle',
             'align'   => 'center',
-            'class'   => 'mecon_html_tabla_comun_cabecera',
+            'class'   => 'mlib_html_tabla_comun_cabecera',
         ), // }}}
         'celda_titulo' => array( // {{{
             'bgcolor' => '#DDEEFF',
             'valign'  => 'middle',
             'align'   => 'center',
-            'class'   => 'mecon_html_tabla_comun_titulo',
+            'class'   => 'mlib_html_tabla_comun_titulo',
         ), // }}}
         'celda_comun' => array( // {{{
             'bgcolor' => '#FFFFFF',
             'valign'  => 'middle',
             'align'   => 'center',
-            'class'   => 'mecon_html_tabla_comun_comun',
+            'class'   => 'mlib_html_tabla_comun_comun',
         ), // }}}
     ), // }}}
 );
index b2f50633ee6a231bdf16e59b50a5cb489a1cf079..76c48a6a61fffe92ab4f4ffc63ffa38fc8f9627c 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 tw=80 fdm=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -26,7 +25,7 @@ $Id$
 
 // Opciones para la tabla {{{
 return array (
-    'css' => '/MECON/css/html/tabla/impresion',
+    'css' => '/MLIB/css/html/tabla/impresion',
     'atributos' =>  array ( // {{{
         'tabla_contenedora' => array( // {{{
             'width'       => '100%',
@@ -50,19 +49,19 @@ return array (
             'bgcolor' => '#666666',
             'valign'  => 'middle',
             'align'   => 'center',
-            'class'   => 'mecon_html_tabla_impresion_cabecera',
+            'class'   => 'mlib_html_tabla_impresion_cabecera',
         ), // }}}
         'celda_titulo' => array( // {{{
             'bgcolor' => '#CCCCCC',
             'valign'  => 'middle',
             'align'   => 'center',
-            'class'   => 'mecon_html_tabla_impresion_titulo',
+            'class'   => 'mlib_html_tabla_impresion_titulo',
         ), // }}}
         'celda_comun' => array( // {{{
             'bgcolor' => '#FFFFFF',
             'valign'  => 'middle',
             'align'   => 'center',
-            'class'   => 'mecon_html_tabla_impresion_comun',
+            'class'   => 'mlib_html_tabla_impresion_comun',
         ), // }}}
     ), // }}}
 );
index 308546bb452b28ad93f14265cc7d1d4433db6773..a8c9285b6d99f46c6de7c28544565a819dbcf6eb 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 tw=80 fdm=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -26,7 +25,7 @@ $Id$
 
 // Opciones para la tabla {{{
 return array (
-    'css' => '/MECON/css/html/tabla/llamativo',
+    'css' => '/MLIB/css/html/tabla/llamativo',
     'atributos' =>  array ( // {{{
         'tabla_contenedora' => array( // {{{
             'width'       => '100%',
@@ -49,19 +48,19 @@ return array (
             'bgcolor' => '#FFFFFF',
             'valign'  => 'middle',
             'align'   => 'left',
-            'class'   => 'mecon_html_tabla_llamativo_cabecera',
+            'class'   => 'mlib_html_tabla_llamativo_cabecera',
         ), // }}}
         'celda_titulo' => array( // {{{
             'bgcolor' => '#FFCC99',
             'valign'  => 'middle',
             'align'   => 'left',
-            'class'   => 'mecon_html_tabla_llamativo_titulo',
+            'class'   => 'mlib_html_tabla_llamativo_titulo',
         ), // }}}
         'celda_comun' => array( // {{{
             'bgcolor' => '#FFFFFF',
             'valign'  => 'middle',
             'align'   => 'left',
-            'class'   => 'mecon_html_tabla_llamativo_comun',
+            'class'   => 'mlib_html_tabla_llamativo_comun',
         ), // }}}
     ), // }}}
 );
index 2fcc8a09e90a3633c5382269d8dff6e39c06bcfb..6654504c47bd7707b56aada66b7e6ce37ac959a9 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 tw=80 fdm=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -26,7 +25,7 @@ $Id$
 
 // Opciones para la tabla {{{
 return array (
-    'css' => '/MECON/css/html/tabla/medio',
+    'css' => '/MLIB/css/html/tabla/medio',
     'atributos' =>  array ( // {{{
         'tabla_contenedora' => array( // {{{
             'width'       => '100%',
@@ -49,19 +48,19 @@ return array (
             'bgcolor' => '#FFFFFF',
             'valign'  => 'middle',
             'align'   => 'left',
-            'class'   => 'mecon_html_tabla_medio_cabecera',
+            'class'   => 'mlib_html_tabla_medio_cabecera',
         ), // }}}
         'celda_comun' => array( // {{{
             'bgcolor' => '#FFFFFF',
             'valign'  => 'middle',
             'align'   => 'center',
-            'class'   => 'mecon_html_tabla_medio_comun',
+            'class'   => 'mlib_html_tabla_medio_comun',
         ), // }}}
         'celda_titulo' => array( // {{{
             'bgcolor' => '#6285A4',
             'valign'  => 'middle',
             'align'   => 'center',
-            'class'   => 'mecon_html_tabla_medio_titulo',
+            'class'   => 'mlib_html_tabla_medio_titulo',
         ), // }}}
     ), // }}}
 );
index d26dd0092939bc0b75ace9f7903dc73f497586c8..100fad4f3be51597a4a4e4c39f6c5215399238d6 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 tw=80 fdm=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,7 +24,7 @@ $Id$
 -----------------------------------------------------------------------------*/
 // Opciones para la tabla {{{
 return array (
-    'css' => '/MECON/css/html/tabla/oscuro',
+    'css' => '/MLIB/css/html/tabla/oscuro',
     'atributos' =>  array ( // {{{
         'tabla_contenedora' => array( // {{{
             'width'       => '100%',
@@ -48,19 +47,19 @@ return array (
             'bgcolor' => '#003366',
             'valign'  => 'middle',
             'align'   => 'left',
-            'class'   => 'mecon_html_tabla_oscuro_cabecera',
+            'class'   => 'mlib_html_tabla_oscuro_cabecera',
         ), // }}}
         'celda_titulo' => array( // {{{
             'bgcolor' => '#6285A4',
             'valign'  => 'middle',
             'align'   => 'left',
-            'class'   => 'mecon_html_tabla_oscuro_titulo',
+            'class'   => 'mlib_html_tabla_oscuro_titulo',
         ), // }}}
         'celda_comun' => array( // {{{
             'bgcolor' => '#FFFFFF',
             'valign'  => 'middle',
             'align'   => 'left',
-            'class'   => 'mecon_html_tabla_oscuro_comun',
+            'class'   => 'mlib_html_tabla_oscuro_comun',
         ), // }}}
     ), // }}}
 );
index 6852ba91936ce4fade804d4a041a15ee1c52e65d..b8bc594bd517ee06eb049e08f76b2cd15494dcd3 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,21 +24,21 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 require_once 'DB.php';
-require_once 'MECON/DB/Pager.php';
-require_once 'MECON/Array/Pager.php';
-require_once 'MECON/HTML/Error.php';
-require_once 'MECON/HTML/Link.php';
-require_once 'MECON/HTML/Icon.php';
-require_once 'MECON/HTML/Tabla.php';
+require_once 'MLIB/DB/Pager.php';
+require_once 'MLIB/Array/Pager.php';
+require_once 'MLIB/HTML/Error.php';
+require_once 'MLIB/HTML/Link.php';
+require_once 'MLIB/HTML/Icon.php';
+require_once 'MLIB/HTML/Tabla.php';
 
 /// Prefijo a usar para las variables GET que genera la tabla.
-define('MECON_HTML_TABLADB_GET_VAR_PREFIX', '_');
+define('MLIB_HTML_TABLADB_GET_VAR_PREFIX', '_');
 
 /**
  * Libreria para le manejo de las tablas de los sistemas de intranet.
  *
  */
-class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
+class MLIB_HTML_TablaDB extends MLIB_HTML_Tabla {
 
     /**
      * Descripción de los elementos listados.
@@ -76,11 +75,11 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      * 
      * @access public
      */
-    function MECON_HTML_TablaDB($desc = null, $attrs = null, $estilo = 'comun') {
+    function MLIB_HTML_TablaDB($desc = null, $attrs = null, $estilo = 'comun') {
         if ($desc) {
             $this->_desc = $desc;
         }
-        parent::MECON_HTML_Tabla($attrs, $estilo);
+        parent::MLIB_HTML_Tabla($attrs, $estilo);
     }    
 
     /**
@@ -96,14 +95,14 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      * Obtiene el prefijo usado para las variables de GET que genera la tabla.
      */
     function getGetVarPrefix() {
-        return MECON_HTML_TABLADB_GET_VAR_PREFIX;
+        return MLIB_HTML_TABLADB_GET_VAR_PREFIX;
     }
 
     /**
      * Agrega un páginador a la tabla, basado en un resultado de una base de datos.
      * Ejemplo:
      * @code
-     * $tabla = new MECON_HTML_TablaDB('personas', array('width' => '100%'));
+     * $tabla = new MLIB_HTML_TablaDB('personas', array('width' => '100%'));
      * $result = $db->query('SELECT nombre, apellido FROM tabla');
      * if (DB::isError($result)) {
      *      trigger_error('Error', E_USER_ERROR);
@@ -132,30 +131,30 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      *                    Si se pasa null, se incluyen <tt>'anterior'</tt>,
      *                    <tt>'siguiente'</tt> y <tt>'paginas'</tt>.
      * @param mixed $link Dirección a la que apuntan los links generados. Puede
-     *                    ser un MECON_HTML_Link (para poder pasar variables por
+     *                    ser un MLIB_HTML_Link (para poder pasar variables por
      *                    GET) o un string.
-     * @param int $limit Parámetro usado para crear el MECON_DB_Pager.
-     * @param int $maxpages Parámetro usado para crear el MECON_DB_Pager.
+     * @param int $limit Parámetro usado para crear el MLIB_DB_Pager.
+     * @param int $maxpages Parámetro usado para crear el MLIB_DB_Pager.
      * @param string $getvar Nombre de la variable GET a usar para indicar el número
      *               de página actual (se le pone el \ref setGetPrefix prefijo)
      *
-     * @return MECON_DB_Pager Pager que se puede usar para realizar los fetch de
+     * @return MLIB_DB_Pager Pager que se puede usar para realizar los fetch de
      *         los resultados de la página actual.
      *
-     * @see MECON_DB_Pager, addRows().
+     * @see MLIB_DB_Pager, addRows().
      */
     function addPager($result, $tipo = null, $link = null, $limit = 10, $maxpages = 21, $getvar = 'from') {
         // Creo el pager con el resultado.
         $pager = (is_array($result))?
-                new MECON_Array_Pager($result, @$_GET[$this->getGetVarPrefix().$getvar], $limit, $maxpages):
-                new MECON_DB_Pager($result, @$_GET[$this->getGetVarPrefix().$getvar], $limit, $maxpages);
+                new MLIB_Array_Pager($result, @$_GET[$this->getGetVarPrefix().$getvar], $limit, $maxpages):
+                new MLIB_DB_Pager($result, @$_GET[$this->getGetVarPrefix().$getvar], $limit, $maxpages);
 
         // Obtengo un link válido.
         if (!$link) {
             $link = @$_SERVER['PHP_SELF'];
         }
         if (is_string($link)) {
-            $link = new MECON_HTML_Link($link, '');
+            $link = new MLIB_HTML_Link($link, '');
         }
         // Si es el tipo por defecto pone paginador nada más.
         if (!$tipo) {
@@ -229,7 +228,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
             }
         } else {
             $id = $this->addRow(array(
-                new MECON_HTML_Error("No se encontraron {$this->_desc}.")));
+                new MLIB_HTML_Error("No se encontraron {$this->_desc}.")));
             $this->updateCellAttributes($id, 0,
                 array('colspan' => count($campos)
                     + count($this->_prependRowsData)
@@ -270,7 +269,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      * @param mixed $obj Objeto a usar. Puede ser un objeto instanciado o un
      *                   string con el nombre de la clase.
      *
-     * @see La interfaz MECON_DBO que tiene el método MECON_DBO::cargar().
+     * @see La interfaz MLIB_DBO que tiene el método MLIB_DBO::cargar().
      */
     function addRowsObject($result, $campos, $obj) {
         if (is_string($obj)) {
@@ -297,7 +296,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      * Agrega una columna arbitraria a la tabla basado en valores de una fila.
      * Ejemplo:
      * @code
-     * $tabla = new MECON_HTML_TablaDB('personas', array('width' => '100%'));
+     * $tabla = new MLIB_HTML_TablaDB('personas', array('width' => '100%'));
      * $result = $db->query('SELECT nombre, apellido, activo FROM tabla');
      * if (DB::isError($result)) {
      *      trigger_error('Error', E_USER_ERROR);
@@ -313,7 +312,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      *          array('nombre', array('activo', 'checked_callback')));
      * // Agrega el nombre con un link a un popup (sin javascript).
      * $tabla->addRowsData(
-     *      new MECON_HTML_Link('popup.php', '%s', array('nombre' => null),
+     *      new MLIB_HTML_Link('popup.php', '%s', array('nombre' => null),
      *          array('target' => '_blank')),
      *      'nombre',
      *      'prepend');
@@ -363,24 +362,24 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      * @endcode
      *
      * @param mixed $format Si es un string, especifica el formato a usar al
-     *                      estilo de sprintf. Si es un MECON_HTML_Link, se
+     *                      estilo de sprintf. Si es un MLIB_HTML_Link, se
      *                      traduce cada variable por GET que empiece con el
      *                      \ref getGetVarPrefix "prefijo" y cuyo valor sea null
      *                      al campo correspondiente de la DB:
-     * @code $tabla->addRowsData(new MECON_HTML_Link('abm.php', 'Ver %s',
+     * @code $tabla->addRowsData(new MLIB_HTML_Link('abm.php', 'Ver %s',
      *      array($tabla->getGetVarPrefix().'id' => null), 'nombre'); @endcode
      *                      Si el valor en vez de ser null es un string, se
      *                      fija si existe una función con ese nombre para llamar
      *                      con el campo de la DB como argumento para
      *                      formatearlo:
-     * @code $tabla->addRowsData(new MECON_HTML_Link('print.php', 'Mostrar',
+     * @code $tabla->addRowsData(new MLIB_HTML_Link('print.php', 'Mostrar',
      *      array($tabla->getGetVarPrefix().'campo1' => 'callback_campo1'));
      * function callback_campo1($campo1) {
      *      return 'El campo1 es '.strtoupper($campo3);
      * } @endcode
      *                      Si no existe la función, se toma el string como
      *                      formato para sprintf para darle formato:
-     * @code $tabla->addRowsData(new MECON_HTML_Link('print.php', 'Ver',
+     * @code $tabla->addRowsData(new MLIB_HTML_Link('print.php', 'Ver',
      *      array($tabla->getGetVarPrefix().'campo1' => 'campo1: %s')); @endcode
      * @param mixed $campos Campos de la DB a usar como argumentos del sprintf.
      *                      Puede ser un string para pasar un solo campo sin
@@ -454,9 +453,9 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
         list($format, $campos) = $data;
         // Si tiene formatos y argumentos.
         if ($campos) {
-            // Si el formato es un MECON_HTML_Link, uso como formato a
+            // Si el formato es un MLIB_HTML_Link, uso como formato a
             // su contenido.
-            if (is_a($format, 'mecon_html_link')) {
+            if (is_a($format, 'MLIB_html_link')) {
                 $args = array($format->getContents());
             } else {
                 $args = array($format);
@@ -506,7 +505,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
                 $args[] = $campo;
             }
             // Si es un link, le seteo los contenidos procesados.
-            if (is_a($format, 'mecon_html_link')) {
+            if (is_a($format, 'MLIB_html_link')) {
                 $format->setContents(call_user_func_array('sprintf', $args));
             // Si no formateo la cadena con los argumentos procesados.
             } else {
@@ -514,7 +513,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
             }
         }
         // Si es un link, traduce las variables GET.
-        if (is_a($format, 'mecon_html_link')) {
+        if (is_a($format, 'MLIB_html_link')) {
             $format = $this->_translateGetVars($format, $row);
         }
         // devuelve la columna.
@@ -525,12 +524,12 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      * Traduce las variables GET de un link.
      * Puede formatearlas con printf() o llamando una callback.
      *
-     * @param MECON_HTML_Link $link Link con las variables GET a formatear.
+     * @param MLIB_HTML_Link $link Link con las variables GET a formatear.
      * @param mixed $row Fila de un resultado de una base de dotos. Puede ser un
      *                   array asociativo o un objeto (en cuyo caso cada campo
      *                   debe ser un atributo del mismo).
      *
-     * @return MECON_HTML_Link Link con las variables GET traducidas.
+     * @return MLIB_HTML_Link Link con las variables GET traducidas.
      *
      * @protected
      */
@@ -563,7 +562,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      * Agrega un ícono predefinido a la tabla.
      * Ejemplo:
      * @code
-     * $tabla = new MECON_HTML_TablaDB('personas', array('width' => '100%'));
+     * $tabla = new MLIB_HTML_TablaDB('personas', array('width' => '100%'));
      * $result = $db->query('SELECT id, nombre, apellido, activo FROM tabla');
      * if (DB::isError($result)) {
      *      trigger_error('Error', E_USER_ERROR);
@@ -596,7 +595,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      *                      para conocer de que formas se puede formatear un
      *                      campo).
      * @param mixed $link Si es un string, se usa como URL del link a generar.
-     *                    Si es un MECON_HTML_Link, se usa como base para el
+     *                    Si es un MLIB_HTML_Link, se usa como base para el
      *                    link a generar y se le va agregando las variables de
      *                    GET generadas por el parámetro $campos (el link es
      *                    procesado de la misma forma en que es procesado el
@@ -625,7 +624,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
             $link = @$_SERVER['PHP_SELF'];
         }
         if (is_string($link)) {
-            $link = new MECON_HTML_Link($link, '');
+            $link = new MLIB_HTML_Link($link, '');
         }
         // Traducción para compatibilidad para atrás.
         switch ($id) {
@@ -642,7 +641,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
                 break;
         }
         if ($activo === true) {
-            $img = new MECON_HTML_Icon($id, $link, null,
+            $img = new MLIB_HTML_Icon($id, $link, null,
                 array('title' => ucfirst($id)));
             $l = $img->getLink();
             foreach ($campos as $campo) {
@@ -654,13 +653,13 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
             }
             $this->addRowsData($l, array(), $lugar);
         } elseif ($activo === false) {
-            $img = new MECON_HTML_Icon($id.'_des', null, '-',
+            $img = new MLIB_HTML_Icon($id.'_des', null, '-',
                 array('title' => ucfirst($id)));
             $this->addRowsData($img, array(), $lugar);
         } else {
             $campos[] = $activo;
             $this->addRowsData('%s', array(array($campos,
-                'MECON_HTML_TablaDB_callback_addRowsIcon',
+                'MLIB_HTML_TablaDB_callback_addRowsIcon',
                 array($id, $link, $activo))), $lugar);
         }
     }
@@ -679,18 +678,18 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
  * @return Campo formateado.
  * @protected
  */
-function MECON_HTML_TablaDB_callback_addRowsIcon($campos, $args) {
+function MLIB_HTML_TablaDB_callback_addRowsIcon($campos, $args) {
     list($tipo, $link, $activo) = $args;
     if ($campos[$activo]) {
-        $img = new MECON_HTML_Icon($tipo, $link, null,
+        $img = new MLIB_HTML_Icon($tipo, $link, null,
             array('title' => ucfirst($tipo)));
         $l = $img->getLink();
         foreach ($campos as $campo => $valor) {
-            $l->setGetVar(MECON_HTML_TablaDB::getGetVarPrefix().$campo, $valor);
+            $l->setGetVar(MLIB_HTML_TablaDB::getGetVarPrefix().$campo, $valor);
         }
         return $l->toHtml();
     } else {
-        $img = new MECON_HTML_Icon($tipo.'_des', null, '-',
+        $img = new MLIB_HTML_Icon($tipo.'_des', null, '-',
             array('title' => ucfirst($tipo)));
         return $img->toHtml();
     }
index 6adc1810661635608a8b70087d704dcef89352f9..c13e7065576081f3ac7e18d330d0f0ae5382c19b 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,12 +24,12 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 require_once 'PEAR.php';
-require_once 'MECON/Marco/Copete.php';
-require_once 'MECON/Marco/Menu.php';
-require_once 'MECON/Marco/MenuPrincipal.php';
+require_once 'MLIB/Marco/Copete.php';
+require_once 'MLIB/Marco/Menu.php';
+require_once 'MLIB/Marco/MenuPrincipal.php';
 
 //Agregado para el uso de HTML_Page (Uso la version Original de Pear)
-require_once 'MECON/HTML/Page.php';
+require_once 'MLIB/HTML/Page.php';
 require_once 'HTML/Table.php';
 
 //Defino los directorios por default
@@ -41,8 +40,8 @@ define ('DIR_WWW'     , 'www'   );
 define ('DIR_CACHE'   , '/tmp'  );
 
 //Defino las constantes
-define ('SCRIPT_DIR_BASE', '/MECON/js/' );
-define ('ESTILO_DIR_BASE', '/MECON/css/');
+define ('SCRIPT_DIR_BASE', '/MLIB/js/' );
+define ('ESTILO_DIR_BASE', '/MLIB/css/');
 define ('SCRIPT_GENERICO', 'marco.js'   );
 define ('ESTILO_GENERICO', 'marco.css'  );
 
@@ -51,7 +50,7 @@ define ('ESTILO_GENERICO', 'marco.css'  );
  *
  * @access public
  */
-class MECON_Marco extends MECON_HTML_Page {
+class MLIB_Marco extends MLIB_HTML_Page {
     /**
      * Array con los datos de configuracion del sistema.
      *
@@ -88,15 +87,15 @@ class MECON_Marco extends MECON_HTML_Page {
      * Constructor. Recibe como parametro el path del archivo de configuracion
      *
      * @param  string $arch_configuracion indicacion de la ubicacion y nombre del archivo de configuracion
-     * @param  MECON_Perm $obj_permiso Objeto Permisos
+     * @param  MLIB_Perm $obj_permiso Objeto Permisos
      *
      * @return void
      * @access public
      */
-    function MECON_Marco($arch_configuracion, $obj_permiso = null) 
+    function MLIB_Marco($arch_configuracion, $obj_permiso = null) 
     {
         //Creo el objeto pagina
-        parent::MECON_HTML_Page();
+        parent::MLIB_HTML_Page();
         //Obtengo y arreglo la configuracion
         $this->_obtenerConfiguracion($arch_configuracion);
         //Agrego el objeto permiso a la configuracion
@@ -229,7 +228,7 @@ Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCS
         //Agrego la opcion seleccionada de espacios a la configuracion 
         $this->_configuracion['espacios'] = $this->_espacios;
         //Creo el menu principal
-        $menu = new MECON_Marco_MenuPrincipal ($this->_configuracion);
+        $menu = new MLIB_Marco_MenuPrincipal ($this->_configuracion);
         //Agrego el contenido de la pagina
         $body = array ( 'body' => $this->_body, 'menuVertical' => $this->_menuVertical);
                                   //Page
@@ -254,9 +253,9 @@ Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCS
      */
     function addSubTitle($subtitulo) 
     {
-        if (is_a($subtitulo, 'mecon_html_link')) {
+        if (is_a($subtitulo, 'MLIB_html_link')) {
             $subtitulo->updateAttributes(
-                array('class' => 'mecon_marco_subtitle'));
+                array('class' => 'MLIB_marco_subtitle'));
         }
         if (method_exists($subtitulo, 'tohtml')) {
             $subtitulo = $subtitulo->toHtml();
@@ -295,7 +294,7 @@ Si es un objeto debe tener un metodo toHtml y opcionalmente puede tener un getCS
     /**
      * Permite hacer que en el copete aparezca un icono de ayuda, en un lugar predefinido. Sobreescribe lo seteado anteriormente por cualquier metodo.
      *
-     * @param  mixed $ayuda Objeto MECON_HTML_Link o string para utilizar en el map.
+     * @param  mixed $ayuda Objeto MLIB_HTML_Link o string para utilizar en el map.
      *
      * @return void
      * @access public
index 6fb48200d1bdff319b5d9219dc1c638894ce5539..7bbfe1ac27d38ff223b3aa874d543af9ede977bd 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,14 +23,14 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/HTML/Image.php';
+require_once 'MLIB/HTML/Image.php';
 
 /**
- * Manejo del copete de los sistemas que utilizan MECON_Marco
+ * Manejo del copete de los sistemas que utilizan MLIB_Marco
  *
  * @access public
  */
-class MECON_Marco_Copete {
+class MLIB_Marco_Copete {
     /**
      * Nombre del directorio en donde se encuentra el sistema. Es case sensitive.
      *
@@ -60,13 +59,13 @@ class MECON_Marco_Copete {
      * El directorio es case sensitive.
      *
      * @param  string $directorio Nombre del directorio en donde se encuentra el sistema.
-     * @param  mixed $ayuda Objeto MECON_HTML_Link o string para armar el map de la ayuda.
+     * @param  mixed $ayuda Objeto MLIB_HTML_Link o string para armar el map de la ayuda.
      * @param  string $sistema Nombre del sistema con el cual se esta trabajando.
      *
      * @return void
      * @access public
      */
-    function MECON_Marco_Copete($directorio, $ayuda = null, $sistema = '') 
+    function MLIB_Marco_Copete($directorio, $ayuda = null, $sistema = '') 
     {
         $this->_directorio  = $directorio;
         $this->_sistema     = $sistema;
@@ -101,7 +100,7 @@ class MECON_Marco_Copete {
     function toHtml() 
     {
         if (!is_null($this->_directorio)) {
-            $image = new MECON_HTML_Image(
+            $image = new MLIB_HTML_Image(
                 $this->_directorio.'/copete',
                 'Intranet - Ministerio de Economía - ' . $this->_sistema,
                 array(
index 4099652688dcfe679ecaa8075079e7b5fab92871..542925b20c26d4386a46ee7a6c697d7bf728e554 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,9 +23,9 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/HTML/Image.php';
+require_once 'MLIB/HTML/Image.php';
 
-define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images');
+define('MLIB_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MLIB/images');
 
 /**
  * Clase para el manejo de la animacion de las imagenes. Utilizada 
@@ -34,7 +33,7 @@ define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images');
  *
  * @access public
  */
-class MECON_Marco_ImagenAnimada {
+class MLIB_Marco_ImagenAnimada {
     /**
      * Nombre del archivo imagen.
      *
@@ -205,7 +204,7 @@ class MECON_Marco_ImagenAnimada {
      * @return void
      * @access public
      */
-    function MECON_Marco_ImagenAnimada($imagenComun, $imagenMouseOn = '', 
+    function MLIB_Marco_ImagenAnimada($imagenComun, $imagenMouseOn = '', 
             $imagenSelect = '', $directorio = '', $nombre = '', $link = '', 
             $alt = '') 
     {
@@ -238,7 +237,7 @@ class MECON_Marco_ImagenAnimada {
     function toHtml() 
     {
         $src  = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
-        $img  = new MECON_HTML_Image($src, $this->_alt, array('name' => $this->_nombre, 'border' => 0));
+        $img  = new MLIB_HTML_Image($src, $this->_alt, array('name' => $this->_nombre, 'border' => 0));
         $html = $img->toHtml();
         if ($this->getHabilitada()) {
             if ($this->getSeleccionada()) {
@@ -275,7 +274,7 @@ class MECON_Marco_ImagenAnimada {
             return "$directorio/$imagen";
         }
         else {
-            return MECON_MARCO_IMAGENANIMADA_DIR_GENERAL . "/$imagen";
+            return MLIB_MARCO_IMAGENANIMADA_DIR_GENERAL . "/$imagen";
         }
     }
 }
index 92bf5e7800bf8d2c41474ed247f3f88d9aa00dcb..3dba91d316c1138c0e012384b4696550f8cbeff3 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,8 +23,8 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/Marco/Seccion.php';
-require_once 'MECON/Marco/ImagenAnimada.php';
+require_once 'MLIB/Marco/Seccion.php';
+require_once 'MLIB/Marco/ImagenAnimada.php';
 require_once 'HTML/Table.php';
 
 define ('MENU_SERIALIZADO'          , 'MenuSerializado');
@@ -36,10 +35,10 @@ define ('ARRAYSECCIONES_SERIALIZADO', 'ArraySeccionesSerializado');
  *
  * @access public
  */
-class MECON_Marco_Menu {
+class MLIB_Marco_Menu {
     /**
      * Array con los resultados para agregar a la pagina.
-     * Sobre este array MECON_Marco realiza un foreach para agregar lo que
+     * Sobre este array MLIB_Marco realiza un foreach para agregar lo que
      * corresponda.
      *
      * @var array $resultado
@@ -104,7 +103,7 @@ class MECON_Marco_Menu {
      * @return void
      * @access public
      */
-    function MECON_Marco_Menu($configuracion = null) 
+    function MLIB_Marco_Menu($configuracion = null) 
     {
         $this->_configuracion = $configuracion;
         $this->_tabla =& new HTML_Table (
@@ -138,7 +137,7 @@ class MECON_Marco_Menu {
      */
     function _armarEncabezado($titulo) 
     {
-        return '<div class="mecon_marco_subtitle">'.$titulo.'</div>';
+        return '<div class="MLIB_marco_subtitle">'.$titulo.'</div>';
     }
 
     /**
@@ -168,7 +167,7 @@ class MECON_Marco_Menu {
                 $ver = false;
             }
             if ($ver) {
-                $tmp = new MECON_Marco_Seccion ($sec, $this->_configuracion);         
+                $tmp = new MLIB_Marco_Seccion ($sec, $this->_configuracion);         
                 array_push($this->_componentes, $tmp->toHtml($linksel));
                 if ($cuenta == $i) {
                     $ultimo = 1;
index 684a4c731cc270acc68dbab9ba7c97afd9b3d06f..ffbf2ce06b54772c9262fe6f3f001a47d2835895 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,15 +23,15 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/Marco/Menu.php';
-require_once 'MECON/HTML/Image.php';
+require_once 'MLIB/Marco/Menu.php';
+require_once 'MLIB/HTML/Image.php';
 
 /**
  * Clase que se encarga del manejo de los menues horizontales
  *
  * @access public
  */
-class MECON_Marco_MenuHorizontal extends MECON_Marco_Menu {
+class MLIB_Marco_MenuHorizontal extends MLIB_Marco_Menu {
     /**
      * Funcion para agregar el cuerpo de la pagina a la pagina
      *
@@ -57,7 +56,7 @@ class MECON_Marco_MenuHorizontal extends MECON_Marco_Menu {
                     'width="'.$width.'%"');
         }
 
-        $imagen = new MECON_HTML_Image('/MECON/images/general_linea.gif', 
+        $imagen = new MLIB_HTML_Image('/MLIB/images/general_linea.gif', 
                 str_repeat('=', 108));
         $tmp = $this->_tabla->addRow(array($imagen->toHtml()), 
                 'align="center"  height="1" colspan="'. $colspan .'"');
@@ -69,7 +68,7 @@ class MECON_Marco_MenuHorizontal extends MECON_Marco_Menu {
         $this->_tabla->addRow($row,
                 'align="left" bgcolor="#FFFFFF" colspan="'
                 . $colspan .'"');
-        $imagen = new MECON_HTML_Image('/MECON/images/general_linea2.gif',
+        $imagen = new MLIB_HTML_Image('/MLIB/images/general_linea2.gif',
                 str_repeat('.', 108), 'border="0" align="center"');
         $this->_tabla->addRow(array ($imagen->toHtml()), 
                 'align="center" colspan="'. $colspan .'"');
index 0a18d65d4078e193fca86b0fa8bf0fb721a5edf2..f4bf4d21e004d36e92b38df00fbacb7bd76bf2ef 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,15 +23,15 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/Marco/Menu.php';
-require_once 'MECON/HTML/Image.php';
+require_once 'MLIB/Marco/Menu.php';
+require_once 'MLIB/HTML/Image.php';
 
 /**
  * Clase que se encarga del manejo de los menues ocultos.
  *
  * @access public
  */
-class MECON_Marco_MenuOculto extends MECON_Marco_Menu {
+class MLIB_Marco_MenuOculto extends MLIB_Marco_Menu {
     /**
      * Funcion para agregar el cuerpo de la pagina a la pagina
      *
@@ -47,8 +46,8 @@ class MECON_Marco_MenuOculto extends MECON_Marco_Menu {
     {
         $this->resultado[] = $this->_armarEncabezado($titulo . 
                 $this->_configuracion['subtitulo']);
-        $this->resultado[] =& new MECON_HTML_Image(
-                '/MECON/images/general_linea2.gif',
+        $this->resultado[] =& new MLIB_HTML_Image(
+                '/MLIB/images/general_linea2.gif',
                 str_repeat('-', 108), 
                 'border="0" align="center"');
         if ($menu) {
index 201121c4598b68e7c18ec30cd0717e17061aab66..cdafa96fa7fe5ade2fe88703f648bc224462b63d 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,8 +24,8 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 require_once 'HTML/Table.php';
-require_once 'MECON/HTML/Image.php';
-require_once 'MECON/Marco/MenuHorizontal.php';
+require_once 'MLIB/HTML/Image.php';
+require_once 'MLIB/Marco/MenuHorizontal.php';
 
 
 /**
@@ -34,7 +33,7 @@ require_once 'MECON/Marco/MenuHorizontal.php';
  *
  * @access public
  */
-class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
+class MLIB_Marco_MenuPrincipal extends MLIB_Marco_MenuHorizontal {
     /**
      * Contiene el objeto seccion que se encuentra seleccionada. Se utiliza para mostrar el menu.
      *
@@ -49,9 +48,9 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
      * @return void
      * @access public
      */
-    function MECON_Marco_MenuPrincipal($configuracion) 
+    function MLIB_Marco_MenuPrincipal($configuracion) 
     {
-        parent::MECON_Marco_Menu($configuracion);
+        parent::MLIB_Marco_Menu($configuracion);
 
         if (!is_null($configuracion['secciones'] || $configuracion['secciones'] == '')) {
             $this->_armarArraySecciones($this->_obtenerConfSecciones());
@@ -76,7 +75,7 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
         //ARMO EL MENU PRINCIPAL
         $colspan = count($this->_componentes);
         //Agrego el copete
-        $copete =& new MECON_Marco_Copete 
+        $copete =& new MLIB_Marco_Copete 
             (@$this->_configuracion['directorios']['imagenes'],
              @$this->_configuracion['ayuda'], 
              @$this->_configuracion['titulo_sistema']
@@ -94,8 +93,8 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
                     'width="'.$width.'%"');
         }
         //Agrego la linea de separacion
-        $tmp = $this->_tabla->addRow(array(new MECON_HTML_Image(
-                        '/MECON/images/general_linea.gif', str_repeat('=', 108)
+        $tmp = $this->_tabla->addRow(array(new MLIB_HTML_Image(
+                        '/MLIB/images/general_linea.gif', str_repeat('=', 108)
                         )),'align="center" height="1"');
         $this->_tabla->updateCellAttributes($tmp, 0, 'colspan="'.$colspan.'"');
 
@@ -134,7 +133,7 @@ class MECON_Marco_MenuPrincipal extends MECON_Marco_MenuHorizontal {
                             ),'align="left" bgcolor="#FFFFFF" colspan="'. 
                         $colspan .'"');
                 $this->_tabla->addRow(array(
-                            new MECON_HTML_Image('/MECON/images/general_linea2.gif',
+                            new MLIB_HTML_Image('/MLIB/images/general_linea2.gif',
                                 str_repeat('-', 108))),
                         'border="0" align="center" colspan="'. $colspan .'"');
             }
index bb2cd93ccf29cbb8db261c040f5e66ed3763e5f9..9bdc9cdc13512648c746ec32af18c9754554e4ff 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,14 +23,14 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/Marco/Menu.php';
+require_once 'MLIB/Marco/Menu.php';
 
 /**
  * Clase que se encarga del manejo de los menues verticales
  *
  * @access public
  */
-class MECON_Marco_MenuVertical extends MECON_Marco_Menu {
+class MLIB_Marco_MenuVertical extends MLIB_Marco_Menu {
     /**
      * Funcion para agregar el cuerpo de la pagina a la pagina
      *
@@ -50,28 +49,28 @@ class MECON_Marco_MenuVertical extends MECON_Marco_Menu {
         
         $TABLA = new HTML_Table('width=152 align="left" cellspacing="0"
                                  cellpadding="0" border="0" height="1"
-                                 background="/MECON/images/general_titulo_menu.gif"');
-        $menutmp ='<div class="mecon_marco_subtitle_vertical">&nbsp;'.$titulo.'</div>';
+                                 background="/MLIB/images/general_titulo_menu.gif"');
+        $menutmp ='<div class="MLIB_marco_subtitle_vertical">&nbsp;'.$titulo.'</div>';
         $TABLA->addRow(array ($menutmp),'align="left"');        
         $TABLA->updateCellAttributes(0,0,'colspan="2"');
         
         $TABLA->addRow(
                 array(
-                    '<IMG height="3" src="/MECON/images/general_linea_relieve.gif" width=36>',
-                    '<IMG height="3" src="/MECON/images/general_linea_relieve.gif" width=118>'
+                    '<IMG height="3" src="/MLIB/images/general_linea_relieve.gif" width=36>',
+                    '<IMG height="3" src="/MLIB/images/general_linea_relieve.gif" width=118>'
                     )
                 );
 
         foreach ($this->_componentesVertical as $comp) {
             $TABLA->addRow($comp,'align="left"  height="3"
-                    background="/MECON/images/general_fondo_gris"');
+                    background="/MLIB/images/general_fondo_gris"');
             $TABLA->updateColAttributes(0,
                     'align="right" width="34" height="3"');
             $TABLA->updateColAttributes(1,'align="left"  width="118"');
             $TABLA->addRow(
                 array(
-                    '<IMG height="3" src="/MECON/images/general_linea_relieve.gif" width=36>',
-                    '<IMG height="3" src="/MECON/images/general_linea_relieve.gif" width=118>'
+                    '<IMG height="3" src="/MLIB/images/general_linea_relieve.gif" width=36>',
+                    '<IMG height="3" src="/MLIB/images/general_linea_relieve.gif" width=118>'
                     )
                 );
         }
index 98190e4fbf93b71a8191a6e7be6f1f972d1db60e..f1351372141a4131e6d637e0b6cf71003faf0ae9 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,18 +23,18 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/Marco/ImagenAnimada.php';
-require_once 'MECON/Marco/Menu.php';
-require_once 'MECON/Marco/MenuHorizontal.php';
-require_once 'MECON/Marco/MenuVertical.php';
-require_once 'MECON/Marco/MenuOculto.php';
+require_once 'MLIB/Marco/ImagenAnimada.php';
+require_once 'MLIB/Marco/Menu.php';
+require_once 'MLIB/Marco/MenuHorizontal.php';
+require_once 'MLIB/Marco/MenuVertical.php';
+require_once 'MLIB/Marco/MenuOculto.php';
 
 /**
  * Clase para el manejo de las secciones
  *
  * @access public
  */
-class MECON_Marco_Seccion {
+class MLIB_Marco_Seccion {
     /**
      * Nombre de la seccion.
      *
@@ -101,7 +100,7 @@ class MECON_Marco_Seccion {
      * @return void
      * @access public
      */
-    function MECON_Marco_Seccion($seccion, $configuracion)
+    function MLIB_Marco_Seccion($seccion, $configuracion)
     {
         $this->_nombre   = @strval($seccion['nombre']);
         $imgComun        = @strval($seccion['imagenComun']);
@@ -110,7 +109,7 @@ class MECON_Marco_Seccion {
         $this->_tipoMenu = @strval(strtolower($seccion['tipoMenu']));
         $this->_link     = @strval($seccion['link']);
         
-        $this->_imagen = new MECON_Marco_ImagenAnimada( $imgComun, 
+        $this->_imagen = new MLIB_Marco_ImagenAnimada( $imgComun, 
                                                         $imgMouseOn, 
                                                         $imgSelect,
                                                         $configuracion['directorios']['imagenes'], 
@@ -156,13 +155,13 @@ class MECON_Marco_Seccion {
     function _cargarHijos($hijos)
     {
         if ($this->_tipoMenu == 'vertical'){
-            $tmp = new MECON_Marco_MenuVertical($this->_configuracion);
+            $tmp = new MLIB_Marco_MenuVertical($this->_configuracion);
         }
         elseif ($this->_tipoMenu == 'horizontal') {
-            $tmp = new MECON_Marco_MenuHorizontal($this->_configuracion);
+            $tmp = new MLIB_Marco_MenuHorizontal($this->_configuracion);
         }
         else {
-            $tmp = new MECON_Marco_MenuOculto($this->_configuracion);
+            $tmp = new MLIB_Marco_MenuOculto($this->_configuracion);
         }
         foreach ($hijos as $hijo) {
             $hijo['alt'] = @$hijo['alt'] ? $hijo['alt'] : $hijo['nombre'];
@@ -241,10 +240,10 @@ class MECON_Marco_Seccion {
         
         $sec = array ();
         if ($this->verifSeccionSeleccionada($link_sel)) {
-            $sec[] = $link_start.'<img src="/MECON/images/general_carpeta_f3" border="0">'.$link_end;
+            $sec[] = $link_start.'<img src="/MLIB/images/general_carpeta_f3" border="0">'.$link_end;
         }
         else {
-            $sec[] = $link_start.'<img src="/MECON/images/general_carpeta" border="0">'.$link_end;
+            $sec[] = $link_start.'<img src="/MLIB/images/general_carpeta" border="0">'.$link_end;
         }
         
         $nombre = strstr($this->_nombre, '-');
index a5e85e7dd94a750c07fadfe7a622de7ddaa25f84..eb6e35f1c1559677949ea7366b020cc717888f3b 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,12 +23,12 @@ Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF/external/phppdflib.class.php';
+require_once 'MLIB/PDF/external/phppdflib.class.php';
 
 /**
  * Liberia base para el manejo de pdf's.  
  */
-class MECON_PDF {
+class MLIB_PDF {
 
     /**
      * Orientacion (portrait o landscape).
@@ -92,12 +91,12 @@ class MECON_PDF {
      * @return void
      * @access public
      */
-    function MECON_PDF($tam = "a4", $ori = "portrait", $nombre = "Doc.pdf")
+    function MLIB_PDF($tam = "a4", $ori = "portrait", $nombre = "Doc.pdf")
     {
         setlocale (LC_ALL, 'en_US');
         $this->orientacion = $ori;
         $this->_pdf = new pdffile;
-        $this->_config = include 'MECON/PDF/medidas.php';
+        $this->_config = include 'MLIB/PDF/medidas.php';
         $this->_config = $this->_config[$tam];
         $this->_nombre = $nombre;
     }
index e3f5bd7aac485dca31e4dd295348efc73e117673..0cc44a2a9c9b265347a92d9a20decd14abd3e8ff 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -27,12 +26,12 @@ $Id$
 /**
  * Libreria de Contenidos PDF.                      
  */
-class MECON_PDF_Contenido {
+class MLIB_PDF_Contenido {
 
     /**
      * Class Constructor. Para que se aviven de redefinir este metodo
      *
-     * @param &Object $MARCO MECON_PDF_Marco
+     * @param &Object $MARCO MLIB_PDF_Marco
      *
      * @return void
      * @access public
index b9854f2b3b1461367917dadf18c94a445cc0beb2..99a8fa38d4ba8916b7b4b1bde382cc09c80db024 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,17 +23,17 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF/Contenido.php';
+require_once 'MLIB/PDF/Contenido.php';
 
 /**
  * Libreria de header en PDF.
  */
-class MECON_PDF_Header extends MECON_PDF_Contenido {
+class MLIB_PDF_Header extends MLIB_PDF_Contenido {
 
     /**
      * Funcion que agrega el contenido del encabezado al PDF.
      *
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @return void
      * @access public
index 764984efb592549c11dd48e5592270d56c3031bd..157e1d206b90b943021ff5a6264c34e7c5ea2de6 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,12 +23,12 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF/Header.php';
+require_once 'MLIB/PDF/Header.php';
 
 /**
  * Libreria de header por defecto en PDF.
  */
-class MECON_PDF_HeaderDefecto extends MECON_PDF_Header {
+class MLIB_PDF_HeaderDefecto extends MLIB_PDF_Header {
     /**
      * Configuración del encabezado. Solamente lo que hace al tamaño y
      * orientación pasados por parametro en el constructor.
@@ -83,8 +82,8 @@ class MECON_PDF_HeaderDefecto extends MECON_PDF_Header {
      * @return void           
      * @access public         
      */
-    function MECON_PDF_HeaderDefecto($tam = "a4", $ori = "portrait") {
-        $tmp = include 'MECON/PDF/HeaderDefecto/medidas.php' ; 
+    function MLIB_PDF_HeaderDefecto($tam = "a4", $ori = "portrait") {
+        $tmp = include 'MLIB/PDF/HeaderDefecto/medidas.php' ; 
         $this->_config = $tmp[$tam][$ori]['encabezado'];
 
         //Ver en donde poner esto
@@ -96,7 +95,7 @@ class MECON_PDF_HeaderDefecto extends MECON_PDF_Header {
     /**
      * Funcion que agrega el contenido del encabezado al PDF.
      *
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @return void
      * @access public
@@ -123,7 +122,7 @@ class MECON_PDF_HeaderDefecto extends MECON_PDF_Header {
     /**
      * Funcion que agrega el logo al encabezado de una pagina.
      *
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @return void
      * @access protected
@@ -139,7 +138,7 @@ class MECON_PDF_HeaderDefecto extends MECON_PDF_Header {
      * Funcion que agrega la seccion al encabezado de una pagina.
      *
      * @return void
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @access protected
      */
@@ -163,7 +162,7 @@ class MECON_PDF_HeaderDefecto extends MECON_PDF_Header {
      * Funcion que agrega la subseccion al encabezado de una pagina.
      *
      * @return void
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @access protected
      */
@@ -187,7 +186,7 @@ class MECON_PDF_HeaderDefecto extends MECON_PDF_Header {
      * Funcion que agrega el paginador al encabezado de una pagina.
      *
      * @return void
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @access protected
      */
@@ -207,7 +206,7 @@ class MECON_PDF_HeaderDefecto extends MECON_PDF_Header {
      * Funcion que permite agregar la fecha al encabezado de una pagina.
      *
      * @return void
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @access protected
      */
@@ -231,7 +230,7 @@ class MECON_PDF_HeaderDefecto extends MECON_PDF_Header {
      * Funcion que arma el recuadro del encabezado de las paginas.
      * 
      * @return void
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @access protected
      */
index f9da1d804e626f61b304d2d6f9e85a45a694e6c4..2d6610410ddb587604243901537d90ceeca85173 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -26,7 +25,7 @@ $Id$
 
 /**
  * Este archivo contiene las coordenadas y estilos de los diferentes componentes
- * de MECON_PDF_Marco. Las cordenadas Arrancan en (0,0)
+ * de MLIB_PDF_Marco. Las cordenadas Arrancan en (0,0)
 
     Y ^
       |
@@ -61,7 +60,7 @@ return array (
                                         'X' => 7,
                                         'Y' => 665,
                                         'path' =>
-                                        '/var/www/meconlib/www/images/pdf_logo_portrait.jpg',
+                                        '/var/www/mlib/www/images/pdf_logo_portrait.jpg',
                                     ),
                                 'linea1' => array (
                                         'Xi' => 150,
@@ -111,7 +110,7 @@ return array (
                                         'X' => 7,
                                         'Y' => 495,
                                         'path' =>
-                                        '/var/www/meconlib/www/images/pdf_logo_portrait.jpg',
+                                        '/var/www/mlib/www/images/pdf_logo_portrait.jpg',
                                     ),
                                 'linea1' => array (
                                         'Xi' => 150,
@@ -165,7 +164,7 @@ return array (
                                         'X' => 7,
                                         'Y' => 829,
                                         'path' =>
-                                        '/var/www/meconlib/www/images/pdf_logo_portrait.jpg',
+                                        '/var/www/mlib/www/images/pdf_logo_portrait.jpg',
                                     ),
                                 'linea1' => array (
                                         'Xi' => 150,
@@ -215,7 +214,7 @@ return array (
                                         'X' => 7,
                                         'Y' => 505,
                                         'path' =>
-                                        '/var/www/meconlib/www/images/pdf_logo_portrait.jpg',
+                                        '/var/www/mlib/www/images/pdf_logo_portrait.jpg',
                                     ),
                                 'linea1' => array (
                                         'Xi' => 150,
index c2a78790938037a84e491c709ccdcb31e8aa369f..a93d1f2257152ecf84e89a9f7055e5026cf2f122 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,12 +23,12 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF/Contenido.php';
+require_once 'MLIB/PDF/Contenido.php';
 
 /**
  * Libreria de imagenes para PDF.
  */
-class MECON_PDF_Imagen extends MECON_PDF_Contenido {
+class MLIB_PDF_Imagen extends MLIB_PDF_Contenido {
 
     /**
      * Imagen de Image_Transform.
@@ -67,7 +66,7 @@ class MECON_PDF_Imagen extends MECON_PDF_Contenido {
     var $_param;
 
     /**
-     * Array de MECON_PDF_Texto para agregar al lado de las imagenes.
+     * Array de MLIB_PDF_Texto para agregar al lado de las imagenes.
      * @var array $contenido
      * @access protected
      */
@@ -81,13 +80,13 @@ class MECON_PDF_Imagen extends MECON_PDF_Contenido {
      * @param string $orientacion Orientacion que tendran las nuevas paginas que
      *                            esta clase genere.
      * @param bool $encabezado Indica si las paginas nuevas que genere esta
-     *                         clase tendran el encabezado de MECON_PDF_Marco.
+     *                         clase tendran el encabezado de MLIB_PDF_Marco.
      * @param array $param Parametros de la imagen.
      *
      * @return void
      * @access public
      */
-    function MECON_PDF_Imagen($resource = null, $align = "center", $orientacion =
+    function MLIB_PDF_Imagen($resource = null, $align = "center", $orientacion =
             null, $encabezado = true, $param = array()) {
         $this->_resource = $resource;
         $this->_align = $align;
@@ -99,7 +98,7 @@ class MECON_PDF_Imagen extends MECON_PDF_Contenido {
     /**
      * Permite agregar texto contenido que sera puesto al lado de las imagenes.
      *
-     * @param Object $TEXTO MECON_PDF_Texto.
+     * @param Object $TEXTO MLIB_PDF_Texto.
      *
      * @return void
      * @access public
@@ -124,7 +123,7 @@ class MECON_PDF_Imagen extends MECON_PDF_Contenido {
      * Funcion que agrega el contenido de la tabla que se este utilizando al
      * PDF.
      *
-     * @param &Object $MARCO MECON_PDF_Marco
+     * @param &Object $MARCO MLIB_PDF_Marco
      *
      * @return void
      * @access public
@@ -159,7 +158,7 @@ class MECON_PDF_Imagen extends MECON_PDF_Contenido {
             $this->_resource->scaleByX($anchoPagina);
         }
         //Obtego el nombre temporal
-        $tmp_path = tempnam('/tmp/', 'MECON_PDF_Images_');
+        $tmp_path = tempnam('/tmp/', 'MLIB_PDF_Images_');
         //Salvo la imagen temporalmente
         $this->_resource->save($tmp_path, 'png');
         //Obtengo la posicion Y
@@ -181,7 +180,7 @@ class MECON_PDF_Imagen extends MECON_PDF_Contenido {
     /**
      * Agrega al pdf el texto adjunto a la imagen.
      *
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      * @param array $tam Tamaño de la imagen.
      * @param int $alto Alto disponible en la pagina.
      *
@@ -215,10 +214,10 @@ class MECON_PDF_Imagen extends MECON_PDF_Contenido {
     /**
      * Agrega objeto por objeto el contenido al pdf general.
      *
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      * @param array $coord Coordenadas para el texto.
      * @param int $alto Alto disponible en la pagina.
-     * @param Object $TEXTO MECON_PDF_Texto.
+     * @param Object $TEXTO MLIB_PDF_Texto.
      *
      * @return void
      * @access protected
@@ -320,7 +319,7 @@ class MECON_PDF_Imagen extends MECON_PDF_Contenido {
     /**
      * Permite obtener el valor X segun la alineacion.
      *
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      * @param int width Ancho de la imagen a agregar.
      *
      * @return int
@@ -345,7 +344,7 @@ class MECON_PDF_Imagen extends MECON_PDF_Contenido {
     /**
      * Funcion que se encarga de crear las nuevas paginas.
      *
-     * @param &Object $MARCO MECON_PDF_Marco
+     * @param &Object $MARCO MLIB_PDF_Marco
      *
      * @return void
      * @access protected
index 0005392fb34f549e0a9f9e92faf32220a3bce97d..d6b789c71251f7aaa1827ae3bf96abb5f058141f 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,24 +23,24 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF.php';
-require_once 'MECON/PDF/Separador.php';
-require_once 'MECON/PDF/HeaderDefecto.php';
+require_once 'MLIB/PDF.php';
+require_once 'MLIB/PDF/Separador.php';
+require_once 'MLIB/PDF/HeaderDefecto.php';
 
 /**
  * Libreria que crea un marco estandar para los pdfs.
  */
-class MECON_PDF_Marco extends MECON_PDF {
+class MLIB_PDF_Marco extends MLIB_PDF {
 
     /**
-     * Objeto MECON_PDF_Separador que se utilizara por defecto.
+     * Objeto MLIB_PDF_Separador que se utilizara por defecto.
      * @var Object $separador
      * @access protected
      */
     var $_separador_defecto;
 
     /**
-     * Array de objetos MECON_PDF_Contenido
+     * Array de objetos MLIB_PDF_Contenido
      * @var array $contenido
      * @access protected
      */
@@ -113,7 +112,7 @@ class MECON_PDF_Marco extends MECON_PDF {
     var $_excepciones = array ();
 
     /**
-     * MECON_PDF_Header. Objeto que hay que utilizar como enzabezado. Si hay
+     * MLIB_PDF_Header. Objeto que hay que utilizar como enzabezado. Si hay
      * algo aqui se desecha el encabezado por defecto.
      * @var Object $header
      * @access public
@@ -130,11 +129,11 @@ class MECON_PDF_Marco extends MECON_PDF {
      * @return void
      * @access public
      */
-    function MECON_PDF_Marco($tam = "a4", $ori = "portrait", $nom = 'Doc.pdf') {
-        $this->MECON_PDF($tam, $ori, $nom);
+    function MLIB_PDF_Marco($tam = "a4", $ori = "portrait", $nom = 'Doc.pdf') {
+        $this->MLIB_PDF($tam, $ori, $nom);
         $this->tamanio = $tam;
         $this->_resetConf();
-        $this->_separador_defecto =& new MECON_PDF_Separador();
+        $this->_separador_defecto =& new MLIB_PDF_Separador();
     }
 
     /**
@@ -148,7 +147,7 @@ class MECON_PDF_Marco extends MECON_PDF {
     {
         if(is_null($pagina));
             $pagina = $this->numPage();
-        $tmp = include 'MECON/PDF/Marco/medidas.php' ; 
+        $tmp = include 'MLIB/PDF/Marco/medidas.php' ; 
         $tmp = $tmp[$this->tamanio][$this->getOrientation($pagina)];
         $tmp['Xi'] = $this->_config['Xi'];
         $tmp['Yi'] = $this->_config['Yi'];
@@ -269,7 +268,7 @@ class MECON_PDF_Marco extends MECON_PDF {
      * @access protected
      */
     function _crearHeaderDefecto() {
-        $this->header =& new MECON_PDF_HeaderDefecto($this->tamanio,
+        $this->header =& new MLIB_PDF_HeaderDefecto($this->tamanio,
                 $this->getOrientation($this->numPage()));
         if (@$this->logo) {
             $this->header->logo = $this->logo;
@@ -291,7 +290,7 @@ class MECON_PDF_Marco extends MECON_PDF {
         if ($this->_contenido) {
             foreach ($this->_contenido as $cont) {
                 $cont->toPDF($this); 
-                //MECON_PDF_Marco se pasa por referencia para que se agregen las
+                //MLIB_PDF_Marco se pasa por referencia para que se agregen las
                 //paginas a medida que se van necesitando. Esto permite que varie el
                 //tipo de contenido que se agrega.
             }
index 153db16b4b7a02cfbbb69223ade099f23838f451..1232ac0232956ba844bf6c7d270aa60a4c863536 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -26,7 +25,7 @@ $Id$
 
 /**
  * Este archivo contiene las coordenadas y estilos de los diferentes componentes
- * de MECON_PDF_Marco. Las cordenadas Arrancan en (0,0)
+ * de MLIB_PDF_Marco. Las cordenadas Arrancan en (0,0)
 
     Y ^
       |
index 7c9dbd6a652c2e933e131326c2c8a275a05d92e5..780e54946182a747fe565159bf0eb09c1b3f36ed 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,12 +23,12 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF/Separador.php';
+require_once 'MLIB/PDF/Separador.php';
 
 /**
  * Manejo de los saltos de pagina.
  */
-class MECON_PDF_SaltoPagina extends MECON_PDF_Separador {
+class MLIB_PDF_SaltoPagina extends MLIB_PDF_Separador {
 
     /**
      * Class Constructor
@@ -37,14 +36,14 @@ class MECON_PDF_SaltoPagina extends MECON_PDF_Separador {
      * @return void
      * @access public
      */
-    function MECON_PDF_SaltoPagina() {
-        $this->MECON_PDF_Separador();
+    function MLIB_PDF_SaltoPagina() {
+        $this->MLIB_PDF_Separador();
     }
 
     /**
      * Funcion que agrega el salto de pagina al PDF
      *
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @return void
      * @access public
index 5ca561824db707c38a8374612d2f9ab29831c40c..1c49524a4dadcb62ffea8d936385bc8b5decc9be 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,15 +23,15 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF/Contenido.php';
+require_once 'MLIB/PDF/Contenido.php';
 
 /**
  * Manejo de los separadores del contenido de los PDF's.
  * @TODO Por ahora es muy basica y lo unico que agrega es un espacio en blanco
- * (Disminuye el espacio disponible en MECON_PDF_Marco para el contenido), en un
+ * (Disminuye el espacio disponible en MLIB_PDF_Marco para el contenido), en un
  * futuro la idea es que pueda variarse el separador.
  */
-class MECON_PDF_Separador extends MECON_PDF_Contenido {
+class MLIB_PDF_Separador extends MLIB_PDF_Contenido {
 
     /**
      * Linea a agregar en el separador
@@ -57,7 +56,7 @@ class MECON_PDF_Separador extends MECON_PDF_Contenido {
      * @return void
      * @access public
      */
-    function MECON_PDF_Separador($altura = 27, $linea = false) {
+    function MLIB_PDF_Separador($altura = 27, $linea = false) {
         $this->_alto = $altura;
            $this->_linea = $linea;
     }
@@ -65,7 +64,7 @@ class MECON_PDF_Separador extends MECON_PDF_Contenido {
     /**
      * Funcion que agrega el separador al PDF
      *
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @return void
      * @access public
index 499c406bc3e0f8af596248045ca31889a83d124c..ace8132d471330d7bb95d297a80bbd8ca4ad8074 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,12 +23,12 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF/Contenido.php';
+require_once 'MLIB/PDF/Contenido.php';
 
 /**
  * Libreria que permite agregar una tabla a un pdf.
  */
-class MECON_PDF_Tabla extends MECON_PDF_Contenido {
+class MLIB_PDF_Tabla extends MLIB_PDF_Contenido {
     
     /**
      * Configuracion
@@ -39,14 +38,14 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
     var $_config;
     
     /**
-     * Objeto MECON_HTML_Tabla.
-     * @var &Object $tabla MECON_HTML_Tabla
+     * Objeto MLIB_HTML_Tabla.
+     * @var &Object $tabla MLIB_HTML_Tabla
      * @access protected
      */
     var $_tabla;
     
     /**
-     * Objeto MECON_PDF_Marco
+     * Objeto MLIB_PDF_Marco
      * @var &Object $marco
      * @access protected
      */
@@ -69,17 +68,17 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
     /**
      * Class Constructor
      *
-     * @param &Object $TABLA MECON_HTML_Tabla
+     * @param &Object $TABLA MLIB_HTML_Tabla
      * @param string $orientacion Orientacion que deben tener las nuevas paginas
      * que genere la tabla.
      *
      * @return void
      * @access public
      */
-    function MECON_PDF_Tabla($TABLA, $orientacion = null, $encabezado = true) {
+    function MLIB_PDF_Tabla($TABLA, $orientacion = null, $encabezado = true) {
         $this->_tabla = $TABLA;
         $this->_orientacion = $orientacion;
-        $this->_config = include 'MECON/PDF/Tabla/medidas.php';
+        $this->_config = include 'MLIB/PDF/Tabla/medidas.php';
         $this->_encabezado = $encabezado;
     }
     
@@ -87,7 +86,7 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
      * Funcion que agrega el contenido de la tabla que se este utilizando al
      * PDF.
      *
-     * @param &Object $MARCO MECON_PDF_Marco
+     * @param &Object $MARCO MLIB_PDF_Marco
      *
      * @return void
      * @access public
index d599f567a80e011111cc25f554f9e26eecbf0031..6125c274d8b300369ec4e6d1d002fce151f72763 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
index 82100eaa9d36f52bcb23df91ad67c737ea267c46..745aa54bf51176dd8d307451887e94e10e7d39a0 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,12 +23,12 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF/Contenido.php';
+require_once 'MLIB/PDF/Contenido.php';
 
 /**
  * Libreria de texto en PDF.
  */
-class MECON_PDF_Texto extends MECON_PDF_Contenido {
+class MLIB_PDF_Texto extends MLIB_PDF_Contenido {
     
     /**
      * Parrafos que componen el texto.
@@ -77,12 +76,12 @@ class MECON_PDF_Texto extends MECON_PDF_Contenido {
      * @param string $orientacion Orientacion que tendran las nuevas paginas que
      * esta clase genere.
      * @param bool $encabezado Indica si las paginas nuevas que genere esta
-     * clase tendran el encabezado de MECON_PDF_Marco.
+     * clase tendran el encabezado de MLIB_PDF_Marco.
      *
      * @return void
      * @access public
      */
-    function MECON_PDF_Texto($orientacion = null, $encabezado = true) {
+    function MLIB_PDF_Texto($orientacion = null, $encabezado = true) {
         $this->_orientacion = $orientacion;
         $this->_encabezado = $encabezado;
     }
@@ -90,7 +89,7 @@ class MECON_PDF_Texto extends MECON_PDF_Contenido {
     /**
      * Funcion que se encarga de crear las nuevas paginas.
      *
-     * @param &Object $MARCO MECON_PDF_Marco
+     * @param &Object $MARCO MLIB_PDF_Marco
      *
      * @return void
      * @access protected
@@ -104,7 +103,7 @@ class MECON_PDF_Texto extends MECON_PDF_Contenido {
     /**
      * Funcion que agrega el contenido del texto al PDF.
      *
-     * @param &Object $MARCO MECON_PDF_Marco.
+     * @param &Object $MARCO MLIB_PDF_Marco.
      *
      * @return void
      * @access public
index 5dadbaa54fafec99777fb583801cf5b3784c143b..2603fb470e9822b24b1059182860607ce3316186 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -42,7 +41,7 @@ $Id$
       |  Xi            Xf         X
 
  * Para probar diferentes tamanios de hojas utilizar
- * meconlib/script/PDF_Tam_Hojas.php
+ * mlib/script/PDF_Tam_Hojas.php
  */
 
 
index 03c2b4875d6fd78591f8f899945c8e9bb238b05f..18a5671eb6d2224ab096187305694e80b4e8dfee 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
  
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
  
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,7 +24,7 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 require_once 'DB.php'; // FIXME - esto debe volar!!!
-require_once 'MECON/Tiempo/Intervalo.php';
+require_once 'MLIB/Tiempo/Intervalo.php';
 
 /**
  * Representa un conjunto de entradas y salidas para formar una banda horaria
@@ -35,7 +34,7 @@ require_once 'MECON/Tiempo/Intervalo.php';
  * @version $Rev$
  * @author  Gonzalo Merayo <gmeray@mecon.gov.ar>
  */
-class MECON_Tiempo_Banda {
+class MLIB_Tiempo_Banda {
 
     var $intervalos;
     var $db;
@@ -44,7 +43,7 @@ class MECON_Tiempo_Banda {
      * Constructor.
      * @param $db Conexión opcional a una base de datos.
      */
-    function MECON_Tiempo_Banda($db = null)
+    function MLIB_Tiempo_Banda($db = null)
     {
         $this->db = $db;
         $this->intervalos = array();
@@ -101,14 +100,14 @@ class MECON_Tiempo_Banda {
                     {
                         if($int != null)
                             $inconsistencia = true;
-                        $int = new Mecon_Tiempo_Intervalo(new Mecon_Tiempo_Hora( $r[1] ),
-                                new Mecon_Tiempo_Hora( $r[1] ));
+                        $int = new MLIB_Tiempo_Intervalo(new MLIB_Tiempo_Hora( $r[1] ),
+                                new MLIB_Tiempo_Hora( $r[1] ));
                     }
                     if($r[0] == 'S')
                     {
                         if($int != null)
                         {
-                            $int->setFin( new Mecon_Tiempo_Hora( $r[1] ) );
+                            $int->setFin( new MLIB_Tiempo_Hora( $r[1] ) );
                             $this->agregarIntervalo( $int );
                             $int = null;
                         }
@@ -123,22 +122,22 @@ class MECON_Tiempo_Banda {
             {
                 if($result->numRows() > 0)
                 {//Version Light o Serenos
-                    $int = new Mecon_Tiempo_Intervalo(new Mecon_Tiempo_Hora('00:00'),
-                            new Mecon_Tiempo_Hora('00:00'));
+                    $int = new MLIB_Tiempo_Intervalo(new MLIB_Tiempo_Hora('00:00'),
+                            new MLIB_Tiempo_Hora('00:00'));
                     while( $r = $result->fetchRow() )
                     {
                         if($r[0] == 'E')
                         {
                             // if($int != null)
                             //$inconsistencia = true;
-                            $int = new Mecon_Tiempo_Intervalo(new Mecon_Tiempo_Hora( $r[1] ),
-                                    new Mecon_Tiempo_Hora( $r[1] ));
+                            $int = new MLIB_Tiempo_Intervalo(new MLIB_Tiempo_Hora( $r[1] ),
+                                    new MLIB_Tiempo_Hora( $r[1] ));
                         }
                         if($r[0] == 'S')
                         {
                             if($int != null)
                             {
-                                $int->setFin( new Mecon_Tiempo_Hora( $r[1] ) );
+                                $int->setFin( new MLIB_Tiempo_Hora( $r[1] ) );
                                 $this->agregarIntervalo( $int );
                                 $int = null;
                             }
@@ -169,14 +168,14 @@ class MECON_Tiempo_Banda {
                         {
                             if($int != null)
                                 $inconsistencia = true;
-                            $int = new Mecon_Tiempo_Intervalo(new Mecon_Tiempo_Hora( $r[1] ),
-                                    new Mecon_Tiempo_Hora( $r[1] ));
+                            $int = new MLIB_Tiempo_Intervalo(new MLIB_Tiempo_Hora( $r[1] ),
+                                    new MLIB_Tiempo_Hora( $r[1] ));
                         }
                         if($r[0] == 'S')
                         {
                             if($int != null)
                             {
-                                $int->setFin( new Mecon_Tiempo_Hora( $r[1] ) );
+                                $int->setFin( new MLIB_Tiempo_Hora( $r[1] ) );
                                 $this->agregarIntervalo( $int );
                                 $int = null;
                             }
@@ -191,8 +190,8 @@ class MECON_Tiempo_Banda {
             else
             {
                 //Version Light o Serenos
-                $int = new Mecon_Tiempo_Intervalo(new Mecon_Tiempo_Hora('00:00'),
-                        new Mecon_Tiempo_Hora('00:00'));
+                $int = new MLIB_Tiempo_Intervalo(new MLIB_Tiempo_Hora('00:00'),
+                        new MLIB_Tiempo_Hora('00:00'));
 
                 if(!is_null($accesos))
                 {
@@ -202,14 +201,14 @@ class MECON_Tiempo_Banda {
                         {
                             // if($int != null)
                             //$inconsistencia = true;
-                            $int = new Mecon_Tiempo_Intervalo(new Mecon_Tiempo_Hora( $r[1] ),
-                                    new Mecon_Tiempo_Hora( $r[1] ));
+                            $int = new MLIB_Tiempo_Intervalo(new MLIB_Tiempo_Hora( $r[1] ),
+                                    new MLIB_Tiempo_Hora( $r[1] ));
                         }
                         if($r[0] == 'S')
                         {
                             if($int != null)
                             {
-                                $int->setFin( new Mecon_Tiempo_Hora( $r[1] ) );
+                                $int->setFin( new MLIB_Tiempo_Hora( $r[1] ) );
                                 $this->agregarIntervalo( $int );
                                 $int = null;
                             }
@@ -254,7 +253,7 @@ class MECON_Tiempo_Banda {
     {
         if ($intervalo->invertido()) {
             $intervalo->_chequear();
-            $this->agregarIntervalo(new MECON_Tiempo_Intervalo(new MECON_Tiempo_Hora('00:00'), new MECON_Tiempo_Hora ('24:00')));
+            $this->agregarIntervalo(new MLIB_Tiempo_Intervalo(new MLIB_Tiempo_Hora('00:00'), new MLIB_Tiempo_Hora ('24:00')));
             $this->sacarIntervalo($intervalo);
             return true;
         }
@@ -332,7 +331,7 @@ class MECON_Tiempo_Banda {
                 $d = $int->getDuracion();
                 if($d->greater($t)) {
 #con cortar alcanza
-                    $ini = new MECON_Tiempo_Hora();
+                    $ini = new MLIB_Tiempo_Hora();
                     $ini->copy($int->inicio);
                     $ini->add($t);
                     /*TODO guardar este tiempo como rechazado*/
@@ -357,7 +356,7 @@ class MECON_Tiempo_Banda {
      */
     function chequearIntervalo($intervalo)
     {
-        $t = new MECON_Tiempo_Hora();
+        $t = new MLIB_Tiempo_Hora();
         foreach ($this->intervalos as $i)
             $t->add($i->superponer($intervalo));
         $d = $intervalo->getDuracion();
@@ -374,7 +373,7 @@ class MECON_Tiempo_Banda {
      */
     function chequearBanda($banda)
     {
-        $f = new MECON_Tiempo_Hora();
+        $f = new MLIB_Tiempo_Hora();
         foreach ($banda->intervalos as $i)
             $f->add($this->chequearIntervalo($i));
         return $f;
@@ -462,13 +461,13 @@ class MECON_Tiempo_Banda {
 
     /**
      * Chequea si el período pasado como argumento se superpone con la banda.
-     * @param $periodo Puede ser un MECON_Tiempo_Intervalo o MECON_Tiempo_Banda.
+     * @param $periodo Puede ser un MLIB_Tiempo_Intervalo o MLIB_Tiempo_Banda.
      * @return true si se superpone, false si no.
      */
     function seSuperpone($periodo)
     {
         $intervalos = array($periodo);
-        if (is_a($periodo, 'mecon_tiempo_banda')) {
+        if (is_a($periodo, 'MLIB_tiempo_banda')) {
             $intervalos = $periodo->intervalos;
         }
         foreach ($intervalos as $i) {
index 4da62ff9e1946957f26de376c0dd8d319a12d7c3..c3d3104a844dda9aa2ae2ff5815fc1e94756fdaa 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
  
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
  
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -34,7 +33,7 @@ require_once 'Date/Span.php';
  * @version $Rev$
  * @author  Gonzalo Merayo <gmeray@mecon.gov.ar>
  */
-class MECON_Tiempo_Hora extends Date_Span {
+class MLIB_Tiempo_Hora extends Date_Span {
 
     function set($str)
     {
index 0cc206852eee4534473a676a9a87afa4de9137a5..04c55e9e1311e12f0b8f61c19ff43c9f8d0b260d 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
  
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
  
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -24,7 +23,7 @@ Autor:  Gonzalo Merayo <gmeray@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/Tiempo/Hora.php';
+require_once 'MLIB/Tiempo/Hora.php';
 
 /**
  * Representa un Intervalo entre 2 horas del mismo dia
@@ -33,7 +32,7 @@ require_once 'MECON/Tiempo/Hora.php';
  * @version $Rev$
  * @author  Gonzalo Merayo <gmeray@mecon.gov.ar>
  */
-class MECON_Tiempo_Intervalo {
+class MLIB_Tiempo_Intervalo {
     /**
      *
      * Hora de inicio del intervalo
@@ -59,13 +58,13 @@ class MECON_Tiempo_Intervalo {
      *                       fin es anterior a la de inicio.
      *                       
      */
-    function MECON_Tiempo_Intervalo($inicio = null, $fin = null, $chequear = true)
+    function MLIB_Tiempo_Intervalo($inicio = null, $fin = null, $chequear = true)
     {
         if (!$inicio) {
-            $inicio = new MECON_Tiempo_Hora;
+            $inicio = new MLIB_Tiempo_Hora;
         }
         if (!$fin) {
-            $fin = new MECON_Tiempo_Hora;
+            $fin = new MLIB_Tiempo_Hora;
         }
         $this->inicio = $inicio;
         $this->fin    = $fin;
@@ -109,7 +108,7 @@ class MECON_Tiempo_Intervalo {
 
     function getDuracion()
     {
-        $c = new MECON_Tiempo_Hora;
+        $c = new MLIB_Tiempo_Hora;
         $c->copy($this->fin);
         $c->subtract($this->inicio);
         return $c;
@@ -196,9 +195,9 @@ class MECON_Tiempo_Intervalo {
      */
     function cortar($c)
     {
-        if(is_a($c, 'mecon_tiempo_hora')) {
+        if(is_a($c, 'MLIB_tiempo_hora')) {
             return $this->cortarHora($c);
-        } elseif (is_a($c, 'mecon_tiempo_intervalo')) {
+        } elseif (is_a($c, 'MLIB_tiempo_intervalo')) {
             return $this->cortarIntervalo($c);
         } else {
             return false;
index 84b2a7161938a206e8d99735ab386480adf339bd..caaca5b07da8aefe0768bb9e865c76286f4cc450 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -27,7 +26,7 @@ $Id: PDF.php 428 2003-11-18 14:30:30Z mmarre $
 /**
  * Liberia base para el manejo de xls's.  
  */
-class MECON_XLS {
+class MLIB_XLS {
     /**
       * _xls_data, mantiene el binario temporal del xls  
       *
@@ -42,11 +41,11 @@ class MECON_XLS {
     var $_tabla;
 
     /**
-     *  MECON_XLS Constructor,
+     *  MLIB_XLS Constructor,
      *  @attrib tabla HTML_Tabla tabla de la que saca los datos
      *  @return void
      */
-    function MECON_XLS($tabla)
+    function MLIB_XLS($tabla)
     {
       $this->_tabla=$tabla;
     }
index 4f1c2461fcfd934475e32835745e740cfcdba34f..3e670860c8ae22ff0e1040d049a263dd4efd59de 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  
@@ -25,65 +24,65 @@ $Id$
 -----------------------------------------------------------------------------*/
 
 /**
- * Configuración general de MECONlib.
+ * Configuración general de mlib.
  *
- * @package MECON
+ * @package MLIB
  */
 
-if (!defined('MECON_DIR_ROOT')) {
+if (!defined('MLIB_DIR_ROOT')) {
     /**
      * Directorio raíz respecto de la web.
      */
-    define('MECON_DIR_ROOT', '/MECON');
+    define('MLIB_DIR_ROOT', '/MLIB');
 }
 
-if (!defined('MECON_DIR_FS')) {
+if (!defined('MLIB_DIR_FS')) {
     /**
      * Directorio raíz respecto del sistema de archivos.
      */
-    define('MECON_DIR_FS', '/var/www/meconlib');
+    define('MLIB_DIR_FS', '/var/www/mlib');
 }
 
-if (!defined('MECON_DIR_FS_IMG')) {
+if (!defined('MLIB_DIR_FS_IMG')) {
     /**
      * Directorio de imagenes respecto del sistema de archivos.
      */
-    define('MECON_DIR_FS_IMG', MECON_DIR_FS.'/www/images');
+    define('MLIB_DIR_FS_IMG', MLIB_DIR_FS.'/www/images');
 }
 
-if (!defined('MECON_DIR_CSS')) {
+if (!defined('MLIB_DIR_CSS')) {
     /**
      * Directorio donde se encuentran las hojas de estilo.
      */
-    define('MECON_DIR_CSS', MECON_DIR_ROOT.'/css');
+    define('MLIB_DIR_CSS', MLIB_DIR_ROOT.'/css');
 }
 
-if (!defined('MECON_DIR_IMG')) {
+if (!defined('MLIB_DIR_IMG')) {
     /**
      * Directorio donde se encuentran las imágenes.
      */
-    define('MECON_DIR_IMG', MECON_DIR_ROOT.'/images');
+    define('MLIB_DIR_IMG', MLIB_DIR_ROOT.'/images');
 }
 
-if (!defined('MECON_DIR_JS')) {
+if (!defined('MLIB_DIR_JS')) {
     /**
      * Directorio donde se encuentran los JavaScripts.
      */
-    define('MECON_DIR_JS', MECON_DIR_ROOT.'/js');
+    define('MLIB_DIR_JS', MLIB_DIR_ROOT.'/js');
 }
 
-if (!defined('MECON_DB_DSN')) {
+if (!defined('MLIB_DB_DSN')) {
     /**
      * DSN de la DB a usar por defecto.
      */
-    define('MECON_DB_DSN', 'mysql://intranet:intranet@localhost/intranet');
+    define('MLIB_DB_DSN', 'mysql://intranet:intranet@localhost/intranet');
 }
 
-if (!defined('MECON_DB_OPTS')) {
+if (!defined('MLIB_DB_OPTS')) {
     /**
      * Opciones de la DB a usar por defecto.
      */
-    //define('MECON_DB_OPTS', array('persistent' => true));
+    //define('MLIB_DB_OPTS', array('persistent' => true));
 }
 
 ?>
\ No newline at end of file
index 97082cbb47d903a1bb486b2ddc9d941b54fe930f..c6ad27ff99b79199dcd34a5602b1a4c3cb2c963b 100644 (file)
@@ -1,16 +1,15 @@
 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
 -------------------------------------------------------------------------------
-                             Ministerio de Economía
-                                    meconlib
+                                    mlib
 -------------------------------------------------------------------------------
-This file is part of meconlib.
+This file is part of mlib.
 
-meconlib is free software; you can redistribute it and/or modify it under
+mlib is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
 Software Foundation; either version 2 of the License, or (at your option)
 any later version.
 
-meconlib is distributed in the hope that it will be useful, but WITHOUT
+mlib is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.