Subversion Repositories eFlore/Archives.herbiers

Rev

Rev 12 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12 Rev 13
1
<?php
1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
3
// +------------------------------------------------------------------------------------------------------+
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2005 Tela Botanica (accueil@tela-botanica.org)                                         |
6
// | Copyright (C) 2005 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of Herbier.                                                                        |
8
// | This file is part of Herbier.                                                                        |
9
// |                                                                                                      |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
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                                 |
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                                    |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: hb_config.inc.php,v 1.5 2006-10-31 15:06:44 jp_milcent Exp $
24
// CVS : $Id: hb_config.inc.php,v 1.6 2006-10-31 15:19:15 jp_milcent Exp $
25
/**
25
/**
26
* Configuration générale des applications de Herbier
26
* Configuration générale des applications de Herbier
27
*
27
*
28
* Ce fichier permet de stocker les valeurs de configuration communes aux différentes applications 
28
* Ce fichier permet de stocker les valeurs de configuration communes aux différentes applications 
29
* constituant Herbier.
29
* constituant Herbier.
30
*
30
*
31
*@package Herbier
31
*@package Herbier
32
*@subpackage Configuration
32
*@subpackage Configuration
33
//Auteur original :
33
//Auteur original :
34
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
34
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
35
//Autres auteurs :
35
//Autres auteurs :
36
*@author        Jean-Pascal MILCENT <jpm@clapas.org>
36
*@author        Jean-Pascal MILCENT <jpm@clapas.org>
37
*@copyright     Tela-Botanica 2000-2005
37
*@copyright     Tela-Botanica 2000-2005
38
*@version       $Revision: 1.5 $ $Date: 2006-10-31 15:06:44 $
38
*@version       $Revision: 1.6 $ $Date: 2006-10-31 15:19:15 $
39
// +------------------------------------------------------------------------------------------------------+
39
// +------------------------------------------------------------------------------------------------------+
40
*/
40
*/
41
 
41
 
42
// +------------------------------------------------------------------------------------------------------+
42
// +------------------------------------------------------------------------------------------------------+
43
// |                                            ENTETE du PROGRAMME                                       |
43
// |                                            ENTETE du PROGRAMME                                       |
44
// +------------------------------------------------------------------------------------------------------+
44
// +------------------------------------------------------------------------------------------------------+
45
 
-
 
46
// Paramêtres indiquant que l'on est en français pourpermettre la mise en majuscule des caractères accentués
45
// Paramêtres indiquant que l'on est en français pourpermettre la mise en majuscule des caractères accentués
47
setlocale(LC_CTYPE, "fr_FR");
46
setlocale(LC_CTYPE, "fr_FR");
-
 
47
 
-
 
48
// Pour une utilisation hors de Papyrus
-
 
49
if (!defined('PAP_VERSION')) {
-
 
50
	define('HB_URL', 'http://'.$_SERVER['HTTP_HOST'].'/'.'page:herbiers_recherche');
-
 
51
}
48
 
52
 
49
// +------------------------------------------------------------------------------------------------------+
53
// +------------------------------------------------------------------------------------------------------+
50
/** Definition de la variable globale de Herbier.*/
54
/** Definition de la variable globale de Herbier.*/
51
$GLOBALS['_HERBIER_'] = array();
55
$GLOBALS['_HERBIER_'] = array();
52
/** Variable globale stockant une URL de base de l'application recherche de plante sous forme d'objet Pear URL.*/
56
/** Variable globale stockant une URL de base de l'application recherche de plante sous forme d'objet Pear URL.*/
53
$GLOBALS['_HERBIER_']['url'] =& $GLOBALS['_GEN_commun']['url'];
57
$GLOBALS['_HERBIER_']['url'] =& $GLOBALS['_GEN_commun']['url'];
54
/** Variable globale stockant l'objet Pear d'identification.*/
58
/** Variable globale stockant l'objet Pear d'identification.*/
55
$GLOBALS['_HERBIER_']['auth'] =& $GLOBALS['_GEN_commun']['pear_auth'];
59
$GLOBALS['_HERBIER_']['auth'] =& $GLOBALS['_GEN_commun']['pear_auth'];
56
/** Variable globale stockant l'objet Pear DB.*/
60
/** Variable globale stockant l'objet Pear DB.*/
57
$GLOBALS['_HERBIER_']['bdd'] = null;
61
$GLOBALS['_HERBIER_']['bdd'] = null;
58
 
62
 
59
// +------------------------------------------------------------------------------------------------------+
63
// +------------------------------------------------------------------------------------------------------+
60
// Définition de la langue
64
// Définition de la langue
61
/** Constante stockant la valeur i18n fournie par Papyrus et pouvant être passée dans l'url.*/
65
/** Constante stockant la valeur i18n fournie par Papyrus et pouvant être passée dans l'url.*/
62
define('HB_I18N', $GLOBALS['_GEN_commun']['i18n']);
66
define('HB_I18N', $GLOBALS['_GEN_commun']['i18n']);
63
 
67
 
64
// +------------------------------------------------------------------------------------------------------+
68
// +------------------------------------------------------------------------------------------------------+
65
// Définition des arguments de l'appel de l'application
69
// Définition des arguments de l'appel de l'application
66
/** Constante stockant la demande d'authentification pour accéder aux applications.*/
70
/** Constante stockant la demande d'authentification pour accéder aux applications.*/
67
define('HB_ARGUMENT_AUTH', 0);
71
define('HB_ARGUMENT_AUTH', 0);
68
if (!isset($GLOBALS['_GEN_commun']['info_application']->application)) {
72
if (!isset($GLOBALS['_GEN_commun']['info_application']->application)) {
69
    $GLOBALS['_GEN_commun']['info_application']->application = $_REQUEST['appli'];
73
    $GLOBALS['_GEN_commun']['info_application']->application = $_REQUEST['appli'];
70
}
74
}
71
define('HB_ARGUMENT_APPLI', $GLOBALS['_GEN_commun']['info_application']->application);
75
define('HB_ARGUMENT_APPLI', $GLOBALS['_GEN_commun']['info_application']->application);
72
 
76
 
73
// +------------------------------------------------------------------------------------------------------+
77
// +------------------------------------------------------------------------------------------------------+
74
// Définition des chemins de fichiers.
78
// Définition des chemins de fichiers.
75
/** Constante stockant le chemin du dossier contenant l'API partagée.*/
79
/** Constante stockant le chemin du dossier contenant l'API partagée.*/
76
define('HB_CHEMIN_API', GEN_CHEMIN_API);
80
define('HB_CHEMIN_API', GEN_CHEMIN_API);
77
/** Constante stockant le chemin du dossier contenant l'API JPGraph.*/
81
/** Constante stockant le chemin du dossier contenant l'API JPGraph.*/
78
define('HB_CHEMIN_API_PEAR', PAP_CHEMIN_API_PEAR);
82
define('HB_CHEMIN_API_PEAR', PAP_CHEMIN_API_PEAR);
79
/** Constante stockant le chemin du dossier contenant l'API Débogage.*/
83
/** Constante stockant le chemin du dossier contenant l'API Débogage.*/
80
define('HB_CHEMIN_API_DEBOGAGE', HB_CHEMIN_API.'debogage'.GEN_SEP);
84
define('HB_CHEMIN_API_DEBOGAGE', HB_CHEMIN_API.'debogage'.GEN_SEP);
81
/** Constante stockant le chemin du dossier contenant l'API Fragmenteur.*/
85
/** Constante stockant le chemin du dossier contenant l'API Fragmenteur.*/
82
define('HB_CHEMIN_API_FRAGMENTEUR', HB_CHEMIN_API.'fragmenteur'.GEN_SEP);
86
define('HB_CHEMIN_API_FRAGMENTEUR', HB_CHEMIN_API.'fragmenteur'.GEN_SEP);
83
/** Constante stockant le chemin du dossier contenant l'API Formulaire.*/
87
/** Constante stockant le chemin du dossier contenant l'API Formulaire.*/
84
define('HB_CHEMIN_API_FORMULAIRE', HB_CHEMIN_API.'formulaire'.GEN_SEP);
88
define('HB_CHEMIN_API_FORMULAIRE', HB_CHEMIN_API.'formulaire'.GEN_SEP);
85
/** Constante stockant le chemin du dossier contenant l'API Date.*/
89
/** Constante stockant le chemin du dossier contenant l'API Date.*/
86
define('HB_CHEMIN_API_FORM', HB_CHEMIN_API.'formulaire'.GEN_SEP);
90
define('HB_CHEMIN_API_FORM', HB_CHEMIN_API.'formulaire'.GEN_SEP);
87
 
91
 
88
/** Constante stockant le chemin du dossier contenant l'API Date.*/
92
/** Constante stockant le chemin du dossier contenant l'API Date.*/
89
define('HB_CHEMIN_API_DATE', HB_CHEMIN_API.'date'.GEN_SEP);
93
define('HB_CHEMIN_API_DATE', HB_CHEMIN_API.'date'.GEN_SEP);
90
/** Constante stockant le chemin du dossier contenant l'API Fragmenteur.*/
94
/** Constante stockant le chemin du dossier contenant l'API Fragmenteur.*/
91
define('HB_CHEMIN_API_VOIRAUSSI', HB_CHEMIN_API.'voiraussi'.GEN_SEP);
95
define('HB_CHEMIN_API_VOIRAUSSI', HB_CHEMIN_API.'voiraussi'.GEN_SEP);
92
 
96
 
93
/** Constante stockant le chemin du dossier racine de l'application.*/
97
/** Constante stockant le chemin du dossier racine de l'application.*/
94
define('HB_CHEMIN_RACINE', GEN_CHEMIN_CLIENT.'herbier'.GEN_SEP);
98
define('HB_CHEMIN_RACINE', GEN_CHEMIN_CLIENT.'herbier'.GEN_SEP);
95
 
99
 
96
/** Constante stockant le chemin absolu du dossier racine de l'application.*/
100
/** Constante stockant le chemin absolu du dossier racine de l'application.*/
97
define('HB_CHEMIN_ABSO_RACINE', PAP_CHEMIN_RACINE.GEN_CHEMIN_CLIENT.'herbier'.GEN_SEP);
101
define('HB_CHEMIN_ABSO_RACINE', PAP_CHEMIN_RACINE.GEN_CHEMIN_CLIENT.'herbier'.GEN_SEP);
98
/** Constante stockant le chemin du dossier contenant les applications spécifiques de Herbier.*/
102
/** Constante stockant le chemin du dossier contenant les applications spécifiques de Herbier.*/
99
define('HB_CHEMIN_MODULE', HB_CHEMIN_RACINE.'applications'.GEN_SEP);
103
define('HB_CHEMIN_MODULE', HB_CHEMIN_RACINE.'applications'.GEN_SEP);
100
/** Constante stockant le chemin absolu du dossier contenant les applications spécifiques de Herbier.*/
104
/** Constante stockant le chemin absolu du dossier contenant les applications spécifiques de Herbier.*/
101
define('HB_CHEMIN_ABSO_APPLI', HB_CHEMIN_ABSO_RACINE.'applications'.GEN_SEP);
105
define('HB_CHEMIN_ABSO_APPLI', HB_CHEMIN_ABSO_RACINE.'applications'.GEN_SEP);
102
/** Constante stockant le chemin du dossier contenant les traductions générales.*/
106
/** Constante stockant le chemin du dossier contenant les traductions générales.*/
103
define('HB_CHEMIN_LANGUES', HB_CHEMIN_RACINE.'langues'.GEN_SEP);
107
define('HB_CHEMIN_LANGUES', HB_CHEMIN_RACINE.'langues'.GEN_SEP);
104
/** Constante stockant le chemin du dossier contenant la présentation générale.*/
108
/** Constante stockant le chemin du dossier contenant la présentation générale.*/
105
define('HB_CHEMIN_PRESENTATION', HB_CHEMIN_RACINE.'presentations'.GEN_SEP);
109
define('HB_CHEMIN_PRESENTATION', HB_CHEMIN_RACINE.'presentations'.GEN_SEP);
106
/** Constante stockant le chemin absolu du dossier contenant la présentation générale.*/
110
/** Constante stockant le chemin absolu du dossier contenant la présentation générale.*/
107
define('HB_CHEMIN_ABSO_PRESENTATION', HB_CHEMIN_ABSO_RACINE.'presentations'.GEN_SEP);
111
define('HB_CHEMIN_ABSO_PRESENTATION', HB_CHEMIN_ABSO_RACINE.'presentations'.GEN_SEP);
108
/** Constante stockant le chemin du dossier contenant les images de Herbier.*/
112
/** Constante stockant le chemin du dossier contenant les images de Herbier.*/
109
define('HB_CHEMIN_IMAGES', HB_CHEMIN_PRESENTATION.'images'.GEN_SEP);
113
define('HB_CHEMIN_IMAGES', HB_CHEMIN_PRESENTATION.'images'.GEN_SEP);
110
/** Constante stockant le chemin du dossier contenant les styles de Herbier.*/
114
/** Constante stockant le chemin du dossier contenant les styles de Herbier.*/
111
define('HB_CHEMIN_STYLES', HB_CHEMIN_PRESENTATION.'styles'.GEN_SEP);
115
define('HB_CHEMIN_STYLES', HB_CHEMIN_PRESENTATION.'styles'.GEN_SEP);
112
/** Constante stockant le chemin du dossier contenant les scripts côté client de Herbier.*/
116
/** Constante stockant le chemin du dossier contenant les scripts côté client de Herbier.*/
113
define('HB_CHEMIN_SCRIPTS', HB_CHEMIN_PRESENTATION.'scripts'.GEN_SEP);
117
define('HB_CHEMIN_SCRIPTS', HB_CHEMIN_PRESENTATION.'scripts'.GEN_SEP);
114
/** Constante stockant le chemin du dossier contenant la bibliothèque de code générale.*/
118
/** Constante stockant le chemin du dossier contenant la bibliothèque de code générale.*/
115
define('HB_CHEMIN_BIBLIO', HB_CHEMIN_RACINE.'bibliotheque'.GEN_SEP);
119
define('HB_CHEMIN_BIBLIO', HB_CHEMIN_RACINE.'bibliotheque'.GEN_SEP);
116
/** Constante stockant le chemin du dossier contenant les documents de Herbier.*/
120
/** Constante stockant le chemin du dossier contenant les documents de Herbier.*/
117
define('HB_CHEMIN_DOC', HB_CHEMIN_PRESENTATION.'documents'.GEN_SEP);
121
define('HB_CHEMIN_DOC', HB_CHEMIN_PRESENTATION.'documents'.GEN_SEP);
118
/** Constante stockant le chemin absolu du dossier contenant les documents de Herbier.*/
122
/** Constante stockant le chemin absolu du dossier contenant les documents de Herbier.*/
119
define('HB_CHEMIN_ABSO_DOC', HB_CHEMIN_ABSO_PRESENTATION.'documents'.GEN_SEP);
123
define('HB_CHEMIN_ABSO_DOC', HB_CHEMIN_ABSO_PRESENTATION.'documents'.GEN_SEP);
120
/** Constante stockant le chemin du dossier contenant la bibliothèque de Cartographie.*/
124
/** Constante stockant le chemin du dossier contenant la bibliothèque de Cartographie.*/
121
define('HB_CHEMIN_BIBLIO_CARTO', HB_CHEMIN_BIBLIO.'cartographie'.GEN_SEP);
125
define('HB_CHEMIN_BIBLIO_CARTO', HB_CHEMIN_BIBLIO.'cartographie'.GEN_SEP);
122
/** Constante stockant le chemin du dossier contenant les cartes de la bibliothèque de Cartographie.*/
126
/** Constante stockant le chemin du dossier contenant les cartes de la bibliothèque de Cartographie.*/
123
define('HB_CHEMIN_CARTE', HB_CHEMIN_BIBLIO_CARTO.'cartes'.GEN_SEP);
127
define('HB_CHEMIN_CARTE', HB_CHEMIN_BIBLIO_CARTO.'cartes'.GEN_SEP);
124
 
128
 
125
// +------------------------------------------------------------------------------------------------------+
129
// +------------------------------------------------------------------------------------------------------+
126
// Définition de chemin d'accès et de nom de fichier pour la Cartographie
130
// Définition de chemin d'accès et de nom de fichier pour la Cartographie
127
/** Constante stockant le chemin d'accès et le nom du fichier récupérant l'image de la carte et la renvoyant au client.*/
131
/** Constante stockant le chemin d'accès et le nom du fichier récupérant l'image de la carte et la renvoyant au client.*/
128
define('CAR_CHEMIN_CARTE', HB_CHEMIN_BIBLIO_CARTO.'carto.php?session='.session_name());
132
define('CAR_CHEMIN_CARTE', HB_CHEMIN_BIBLIO_CARTO.'carto.php?session='.session_name());
129
/** Constante stockant le chemin d'accès au dossier stockant les cartes temporaires générées par la carto.*/
133
/** Constante stockant le chemin d'accès au dossier stockant les cartes temporaires générées par la carto.*/
130
define('CAR_CHEMIN_TMP', HB_CHEMIN_ABSO_DOC.'cartes_tmp'.GEN_SEP);
134
define('CAR_CHEMIN_TMP', HB_CHEMIN_ABSO_DOC.'cartes_tmp'.GEN_SEP);
131
/** Constante stockant le nom du fichier de la carte de France des départements.*/
135
/** Constante stockant le nom du fichier de la carte de France des départements.*/
132
define('CAR_FICHIER_CARTE_FR_DPT', 'france.png');
136
define('CAR_FICHIER_CARTE_FR_DPT', 'france.png');
133
/** Constante stockant le nom du fichier de la carte de France des départements.*/
137
/** Constante stockant le nom du fichier de la carte de France des départements.*/
134
define('CAR_FICHIER_CARTE_FR_DPT_MASQUE', 'france_masque.png');
138
define('CAR_FICHIER_CARTE_FR_DPT_MASQUE', 'france_masque.png');
135
 
139
 
136
// +------------------------------------------------------------------------------------------------------+
140
// +------------------------------------------------------------------------------------------------------+
137
// Définition des chemins d'accès aux images.
141
// Définition des chemins d'accès aux images.
138
/** Constante stockant le chemin d'accès au fichier ouvrir.png de Herbier.*/
142
/** Constante stockant le chemin d'accès au fichier ouvrir.png de Herbier.*/
139
define('HB_IMG_OUVRIR', HB_CHEMIN_IMAGES.'ouvrir.png');
143
define('HB_IMG_OUVRIR', HB_CHEMIN_IMAGES.'ouvrir.png');
140
/** Constante stockant le chemin d'accès au fichier fermer.png de Herbier.*/
144
/** Constante stockant le chemin d'accès au fichier fermer.png de Herbier.*/
141
define('HB_IMG_FERMER', HB_CHEMIN_IMAGES.'fermer.png');
145
define('HB_IMG_FERMER', HB_CHEMIN_IMAGES.'fermer.png');
142
/** Constante stockant le chemin d'accès au fichier arobrescence_trai.png de Herbier.*/
146
/** Constante stockant le chemin d'accès au fichier arobrescence_trai.png de Herbier.*/
143
define('HB_IMG_ARBO', HB_CHEMIN_IMAGES.'arborescence_trait.png');
147
define('HB_IMG_ARBO', HB_CHEMIN_IMAGES.'arborescence_trait.png');
144
/** Constante stockant le chemin d'accès au fichier arobrescence_trai_fin.png de Herbier.*/
148
/** Constante stockant le chemin d'accès au fichier arobrescence_trai_fin.png de Herbier.*/
145
define('HB_IMG_ARBO_FIN', HB_CHEMIN_IMAGES.'arborescence_trait_fin.png');
149
define('HB_IMG_ARBO_FIN', HB_CHEMIN_IMAGES.'arborescence_trait_fin.png');
146
/** Constante stockant le nom de la classe générique des icones de Herbier.*/
150
/** Constante stockant le nom de la classe générique des icones de Herbier.*/
147
define('HB_CLASS_IMG_ICONE', 'hb_img_icone');
151
define('HB_CLASS_IMG_ICONE', 'hb_img_icone');
148
/** Constante stockant le nom de la classe générique de l'image fermer.png de Herbier.*/
152
/** Constante stockant le nom de la classe générique de l'image fermer.png de Herbier.*/
149
define('HB_CLASS_IMG_FERMER', 'hb_img_fermer');
153
define('HB_CLASS_IMG_FERMER', 'hb_img_fermer');
150
 
154
 
151
 
155
 
152
// +------------------------------------------------------------------------------------------------------+
156
// +------------------------------------------------------------------------------------------------------+
153
// |                                            CORPS du PROGRAMME                                        |
157
// |                                            CORPS du PROGRAMME                                        |
154
// +------------------------------------------------------------------------------------------------------+
158
// +------------------------------------------------------------------------------------------------------+
155
 
159
 
156
// ATTENTION : reprise directe des variables de conf de BiblioBota version 0.0
160
// ATTENTION : reprise directe des variables de conf de BiblioBota version 0.0
157
 
161
 
158
/* +--Fin du code ----------------------------------------------------------------------------------------+
162
/* +--Fin du code ----------------------------------------------------------------------------------------+
159
*
163
*
160
* $Log: not supported by cvs2svn $
164
* $Log: not supported by cvs2svn $
-
 
165
* Revision 1.5  2006/10/31 15:06:44  jp_milcent
-
 
166
* Fin de gestion des flux rss.
-
 
167
*
161
* Revision 1.4  2006/10/31 10:31:36  jp_milcent
168
* Revision 1.4  2006/10/31 10:31:36  jp_milcent
162
* Gestion des chemins rendu compatibles avec une utilisation de l'appli Herbiers hors de Papyrus.
169
* Gestion des chemins rendu compatibles avec une utilisation de l'appli Herbiers hors de Papyrus.
163
*
170
*
164
* Revision 1.3  2006/10/30 18:57:17  jp_milcent
171
* Revision 1.3  2006/10/30 18:57:17  jp_milcent
165
* Début gestion des flux rss.
172
* Début gestion des flux rss.
166
*
173
*
167
* Revision 1.2  2006/09/22 09:19:14  jp_milcent
174
* Revision 1.2  2006/09/22 09:19:14  jp_milcent
168
* Ajout de constantes de chemin.
175
* Ajout de constantes de chemin.
169
*
176
*
170
* Revision 1.1  2005/11/23 10:32:32  jp_milcent
177
* Revision 1.1  2005/11/23 10:32:32  jp_milcent
171
* Ajout au dépot de l'application Herbiers.
178
* Ajout au dépot de l'application Herbiers.
172
* Elle doit à terme migrer dans eFlore.
179
* Elle doit à terme migrer dans eFlore.
173
*
180
*
174
* Revision 1.3  2005/04/06 13:28:51  jpm
181
* Revision 1.3  2005/04/06 13:28:51  jpm
175
* Ajout des constantes de configuration.
182
* Ajout des constantes de configuration.
176
*
183
*
177
* Revision 1.2  2005/03/09 15:58:00  jpm
184
* Revision 1.2  2005/03/09 15:58:00  jpm
178
* Ajout et modification de constantes.
185
* Ajout et modification de constantes.
179
*
186
*
180
* Revision 1.1  2005/03/08 14:13:59  jpm
187
* Revision 1.1  2005/03/08 14:13:59  jpm
181
* Ajout des fichiers de configuration de Herbier.
188
* Ajout des fichiers de configuration de Herbier.
182
*
189
*
183
*
190
*
184
* +-- Fin du code ----------------------------------------------------------------------------------------+
191
* +-- Fin du code ----------------------------------------------------------------------------------------+
185
*/
192
*/
186
?>
193
?>