--- /dev/null
+<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
+-------------------------------------------------------------------------------
+ Ministerio de Economía
+ meconlib
+-------------------------------------------------------------------------------
+This file is part of meconlib.
+
+meconlib 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
+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: jue jul 17 15:25:33 ART 2003
+Autor: Leandro Lucarella <llucar@mecon.gov.ar>
+-------------------------------------------------------------------------------
+$Id$
+-----------------------------------------------------------------------------*/
+
+/**
+ * Configuración general de MECONlib.
+ *
+ * @package MECON
+ */
+
+if (!defined('MECON_DIR_ROOT')) {
+ /**
+ * Directorio raíz respecto de la web.
+ */
+ define('MECON_DIR_ROOT', '/MECON');
+}
+
+if (!defined('MECON_DIR_FS')) {
+ /**
+ * Directorio raíz respecto del sistema de archivos.
+ */
+ define('MECON_DIR_FS', '/var/www/meconlib');
+}
+
+if (!defined('MECON_DIR_CSS')) {
+ /**
+ * Directorio donde se encuentran las hojas de estilo.
+ */
+ define('MECON_DIR_CSS', MECON_DIR_ROOT.'/css');
+}
+
+if (!defined('MECON_DIR_IMG')) {
+ /**
+ * Directorio donde se encuentran las imágenes.
+ */
+ define('MECON_DIR_IMG', MECON_DIR_ROOT.'/images');
+}
+
+if (!defined('MECON_DIR_JS')) {
+ /**
+ * Directorio donde se encuentran los JavaScripts.
+ */
+ define('MECON_DIR_JS', MECON_DIR_ROOT.'/js');
+}
+
+if (!defined('MECON_DB_DSN')) {
+ /**
+ * DSN de la DB a usar por defecto.
+ */
+ define('MECON_DB_DSN', 'mysql://intranet:intranet@intranet-db.mecon.ar/intranet');
+}
+
+if (!defined('MECON_DB_OPTS')) {
+ /**
+ * Opciones de la DB a usar por defecto.
+ */
+ define('MECON_DB_OPTS', array('persistent' => true));
+}
+
+?>
\ No newline at end of file