Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 45 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
27 jpm 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
33 fred 4
// | PHP version 5.0                                                                                      |
27 jpm 5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of eFlore-Serveur.                                                                 |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
47 jpm 24
// CVS : $Id: eflore_config.php,v 1.5 2004-12-22 13:28:23 jpm Exp $
27 jpm 25
/**
47 jpm 26
* Fichier de configuration contenant les mots de passe, login...
27 jpm 27
*
47 jpm 28
* Ce fichier contient les constantes et éventuellement des variables globales contenant des infos liées à la
29
* sécurité.
27 jpm 30
*
31
*@package eFlore-Serveur
32
*@subpackage Configuration
33
//Auteur original :
34
*@author        Frédéric LEGENS <flegens@free.fr>
35
//Autres auteurs :
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
37
*@copyright     Tela-Botanica 2000-2004
47 jpm 38
*@version       $Revision: 1.5 $ $Date: 2004-12-22 13:28:23 $
27 jpm 39
// +------------------------------------------------------------------------------------------------------+
40
*/
41
 
42
// +------------------------------------------------------------------------------------------------------+
43
// |                                            ENTETE du PROGRAMME                                       |
44
// +------------------------------------------------------------------------------------------------------+
45
 
46
 
47
// +------------------------------------------------------------------------------------------------------+
48
// |                                            CORPS du PROGRAMME                                        |
49
// +------------------------------------------------------------------------------------------------------+
50
// +------------------------------------------------------------------------------------------------------+
51
// Constante de la base de données
52
/** Constante stockant le nom du serveur de la base de donnée.*/
53
define('EFSE_BDD_SERVEUR', 'localhost');
54
/** Constante stockant le nom de la base de donnée.*/
45 jpm 55
define('EFSE_BDD_NOM', '');
27 jpm 56
/** Constante stockant le nom de l'utilisateur.*/
45 jpm 57
define('EFSE_BDD_UTILISATEUR', '');
27 jpm 58
/** Constante stockant le mot de passe de l'utilisateur.*/
45 jpm 59
define('EFSE_BDD_MOT_DE_PASSE', '');
27 jpm 60
 
61
*/
62
/* +--Fin du code ----------------------------------------------------------------------------------------+
63
*
64
* $Log: not supported by cvs2svn $
47 jpm 65
* Revision 1.4  2004/12/22 13:24:47  jpm
66
* Modif.
67
*
45 jpm 68
* Revision 1.3  2004/12/16 22:07:53  fred
69
* correction du numéro de version de PHP
70
*
33 fred 71
* Revision 1.2  2004/12/16 16:40:59  jpm
72
* Ajout de chemin.
73
*
31 jpm 74
* Revision 1.1.1.1  2004/12/16 12:24:36  jpm
75
* Importation initiale eFlore v1.1 et serveur.
27 jpm 76
*
31 jpm 77
*
27 jpm 78
* +-- Fin du code ----------------------------------------------------------------------------------------+
33 fred 79
*/
27 jpm 80
?>