Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 92 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
92 jpm 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 5.0                                                                                      |
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
// +------------------------------------------------------------------------------------------------------+
182 jp_milcent 24
// CVS : $Id: eribo_config.php,v 1.2 2005-09-30 13:42:19 jp_milcent Exp $
92 jpm 25
/**
26
* Fichier de configuration contenant les mots de passe, login...
27
*
28
* Ce fichier contient les constantes et éventuellement des variables globales contenant des infos liées à la
29
* sécurité.
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
182 jp_milcent 38
*@version       $Revision: 1.2 $ $Date: 2005-09-30 13:42:19 $
92 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.*/
55
define('EFSE_BDD_NOM', '');
56
/** Constante stockant le nom de l'utilisateur.*/
57
define('EFSE_BDD_UTILISATEUR', '');
58
/** Constante stockant le mot de passe de l'utilisateur.*/
59
define('EFSE_BDD_MOT_DE_PASSE', '');
60
 
61
/* +--Fin du code ----------------------------------------------------------------------------------------+
62
*
63
* $Log: not supported by cvs2svn $
182 jp_milcent 64
* Revision 1.1  2005/01/19 15:19:45  jpm
65
* Changement de nom.
66
*
92 jpm 67
* Revision 1.5  2004/12/22 13:28:23  jpm
68
* Les constantes et variables liées à la sécurité.
69
*
70
* Revision 1.4  2004/12/22 13:24:47  jpm
71
* Modif.
72
*
73
* Revision 1.3  2004/12/16 22:07:53  fred
74
* correction du numéro de version de PHP
75
*
76
* Revision 1.2  2004/12/16 16:40:59  jpm
77
* Ajout de chemin.
78
*
79
* Revision 1.1.1.1  2004/12/16 12:24:36  jpm
80
* Importation initiale eFlore v1.1 et serveur.
81
*
82
*
83
* +-- Fin du code ----------------------------------------------------------------------------------------+
84
*/
85
?>