<?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.
-----------------------------------------------------------------------------*/
/**
- * 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