]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se agrega un archivo con valores de configuración por defecto comunes a
authorLeandro Lucarella <llucax@gmail.com>
Thu, 17 Jul 2003 19:33:41 +0000 (19:33 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 17 Jul 2003 19:33:41 +0000 (19:33 +0000)
MECONlib.

lib/MECON/defaults.php [new file with mode: 0644]

diff --git a/lib/MECON/defaults.php b/lib/MECON/defaults.php
new file mode 100644 (file)
index 0000000..82ffcfe
--- /dev/null
@@ -0,0 +1,82 @@
+<?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