Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 50 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 50 Rev 81
Line 19... Line 19...
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: eflore_config_avancee.inc.php,v 1.2 2004-12-22 13:33:18 jpm Exp $
24
// CVS : $Id: eflore_config_avancee.inc.php,v 1.3 2005-01-19 12:54:47 jpm Exp $
25
/**
25
/**
26
* Fichier de configuration avancée d'eFlore-Serveur
26
* Fichier de configuration avancée d'eFlore-Serveur
27
*
27
*
28
* Ce fichier contient les constantes et éventuellement des variables globales contenant toutes les info
28
* Ce fichier contient les constantes et éventuellement des variables globales contenant toutes les info
29
* nécessaire à la configuration du programme eFlore-Serveur.
29
* nécessaire à la configuration du programme eFlore-Serveur.
Line 33... Line 33...
33
//Auteur original :
33
//Auteur original :
34
*@author        Frédéric LEGENS <flegens@free.fr>
34
*@author        Frédéric LEGENS <flegens@free.fr>
35
//Autres auteurs :
35
//Autres auteurs :
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
36
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
37
*@copyright     Tela-Botanica 2000-2004
37
*@copyright     Tela-Botanica 2000-2004
38
*@version       $Revision: 1.2 $ $Date: 2004-12-22 13:33:18 $
38
*@version       $Revision: 1.3 $ $Date: 2005-01-19 12:54:47 $
39
// +------------------------------------------------------------------------------------------------------+
39
// +------------------------------------------------------------------------------------------------------+
40
*/
40
*/
Line 41... Line 41...
41
 
41
 
42
// +------------------------------------------------------------------------------------------------------+
42
// +------------------------------------------------------------------------------------------------------+
Line 64... Line 64...
64
define('EFSE_CHEMIN_CONFIG', 'configuration'.EFSE_SEP);
64
define('EFSE_CHEMIN_CONFIG', 'configuration'.EFSE_SEP);
65
/** Constante stockant le chemin vers la bibliothèque.*/
65
/** Constante stockant le chemin vers la bibliothèque.*/
66
define('EFSE_CHEMIN_BIBLIO', 'bibliotheque'.EFSE_SEP);
66
define('EFSE_CHEMIN_BIBLIO', 'bibliotheque'.EFSE_SEP);
67
/** Constante stockant le chemin vers la bibliothèque des classes.*/
67
/** Constante stockant le chemin vers la bibliothèque des classes.*/
68
define('EFSE_CHEMIN_CLASSE', EFSE_CHEMIN_BIBLIO.'classes'.EFSE_SEP);
68
define('EFSE_CHEMIN_CLASSE', EFSE_CHEMIN_BIBLIO.'classes'.EFSE_SEP);
-
 
69
/** Constante stockant le chemin vers la bibliothèque des fonctions.*/
-
 
70
define('EFSE_CHEMIN_FONCTION', EFSE_CHEMIN_BIBLIO.'fonctions'.EFSE_SEP);
69
/** Constante stockant le chemin vers la bibliothèque des interfaces.*/
71
/** Constante stockant le chemin vers la bibliothèque des interfaces.*/
70
define('EFSE_CHEMIN_INTERFACE', EFSE_CHEMIN_BIBLIO.'interfaces'.EFSE_SEP);
72
define('EFSE_CHEMIN_INTERFACE', EFSE_CHEMIN_BIBLIO.'interfaces'.EFSE_SEP);
71
/** Constante stockant le chemin vers le dossier des définitions.*/
73
/** Constante stockant le chemin vers le dossier des définitions.*/
72
define('EFSE_CHEMIN_DEFINITION', 'definitions'.EFSE_SEP);
74
define('EFSE_CHEMIN_DEFINITION', 'definitions'.EFSE_SEP);
73
/** Constante stockant le chemin vers les groupes de macro-éléments.*/
75
/** Constante stockant le chemin vers les groupes de macro-éléments.*/
Line 86... Line 88...
86
define('EFSE_CHEMIN_MV_VUE', EFSE_CHEMIN_MV.'vues'.EFSE_SEP);
88
define('EFSE_CHEMIN_MV_VUE', EFSE_CHEMIN_MV.'vues'.EFSE_SEP);
87
/** Constante stockant le chemin vers le dossier permettant d'automatiser la création de PHP pour les groupes de macro-éléments.*/
89
/** Constante stockant le chemin vers le dossier permettant d'automatiser la création de PHP pour les groupes de macro-éléments.*/
88
define('EFSE_CHEMIN_MV_MACRO_GROUPE', EFSE_CHEMIN_MV_MODELE.'groupes_macro_elements'.EFSE_SEP);
90
define('EFSE_CHEMIN_MV_MACRO_GROUPE', EFSE_CHEMIN_MV_MODELE.'groupes_macro_elements'.EFSE_SEP);
89
/** Constante stockant le chemin vers le dossier permettant d'automatiser la création de PHP pour les macro-éléments.*/
91
/** Constante stockant le chemin vers le dossier permettant d'automatiser la création de PHP pour les macro-éléments.*/
90
define('EFSE_CHEMIN_MV_MACRO', EFSE_CHEMIN_MV_MODELE.'macro_elements'.EFSE_SEP);
92
define('EFSE_CHEMIN_MV_MACRO', EFSE_CHEMIN_MV_MODELE.'macro_elements'.EFSE_SEP);
-
 
93
/** Constante stockant le chemin vers le dossier du générateur vis à vis de la racine des fichiers du serveur.*/
-
 
94
define('EFSE_CHEMIN_GENERATEUR', 'generateur'.EFSE_SEP);
-
 
95
/** Constante stockant le chemin pour aller à la racine du serveur vis à vis du fichier principal du générateur.*/
-
 
96
define('EFSE_CHEMIN_GENERATEUR_RACINE', '..'.EFSE_SEP);
-
 
97
/** Constante stockant le chemin vers le dossier xslt du générateur vis à vis de l'emplacement du fichier principal du générateur.*/
-
 
98
define('EFSE_CHEMIN_GENE_XSLT', 'xslt'.EFSE_SEP);
-
 
99
/** Constante stockant le chemin vers le dossier css du générateur.*/
-
 
100
define('EFSE_CHEMIN_GENE_CSS', 'css'.EFSE_SEP);
Line 91... Line 101...
91
 
101
 
92
/** Constante stockant le chemin vers la carte des services principaux.*/
102
/** Constante stockant le chemin vers la carte des services principaux.*/
93
define('EFSE_FICHIER_MAP', EFSE_CHEMIN_MV.'eflore_services.map');
103
define('EFSE_FICHIER_MAP', EFSE_CHEMIN_MV.'eflore_services.map');
94
/** Constante stockant le chemin vers le fichier de configuration principal.*/
104
/** Constante stockant le chemin vers le fichier de configuration principal.*/
Line 95... Line -...
95
define('EFSE_FICHIER_CONFIG', EFSE_CHEMIN_CONFIG.'eflore_config.php');
-
 
96
 
-
 
Line 97... Line -...
97
/** Constante stockant la valeur de la racine des chemins.*/
-
 
98
define('EFSE_CHEMIN_GENERATEUR_RACINE', '..'.EFSE_SEP);
105
define('EFSE_FICHIER_CONFIG', EFSE_CHEMIN_CONFIG.'eflore_config.php');
99
 
106
 
100
*/
107
 
-
 
108
/* +--Fin du code ----------------------------------------------------------------------------------------+
-
 
109
*
-
 
110
* $Log: not supported by cvs2svn $
101
/* +--Fin du code ----------------------------------------------------------------------------------------+
111
* Revision 1.2  2004/12/22 13:33:18  jpm
102
*
112
* Modification commentaire.
103
* $Log: not supported by cvs2svn $
113
*
104
* Revision 1.1  2004/12/22 13:28:16  jpm
114
* Revision 1.1  2004/12/22 13:28:16  jpm
105
* Les constantes et variables non liées à la sécurité.
115
* Les constantes et variables non liées à la sécurité.