Subversion Repositories Applications.papyrus

Rev

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

Rev 1988 Rev 2061
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) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: installateur.php,v 1.17 2008-11-19 09:25:36 aperonnet Exp $
22
// CVS : $Id: installateur.php,v 1.17 2008-11-19 09:25:36 aperonnet Exp $
23
/**
23
/**
24
* Application Installateur de Papyrus.
24
* Application Installateur de Papyrus.
25
*
25
*
26
* Application permettant de gérer l'installation et les erreurs liés à l'abscence de base de données, 
26
* Application permettant de gérer l'installation et les erreurs liés à l'abscence de base de données,
27
* d'extenssin PHP...
27
* d'extenssin PHP...
28
*
28
*
29
*@package Installateur
29
*@package Installateur
30
//Auteur original :
30
//Auteur original :
31
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
31
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
32
//Autres auteurs :
32
//Autres auteurs :
33
*@author        Aucun
33
*@author        Aucun
34
*@copyright     Tela-Botanica 2000-2004
34
*@copyright     Tela-Botanica 2000-2004
35
*@version       $Revision: 1.17 $ $Date: 2008-11-19 09:25:36 $
35
*@version       $Revision: 1.17 $ $Date: 2008-11-19 09:25:36 $
36
// +------------------------------------------------------------------------------------------------------+
36
// +------------------------------------------------------------------------------------------------------+
37
**/
37
**/
-
 
38
 
-
 
39
 
-
 
40
if(GEN_VERSION == PAP_VERSION) {
-
 
41
	header('location:papyrus.php');
-
 
42
	exit;
38
 
43
}
39
// +------------------------------------------------------------------------------------------------------+
44
// +------------------------------------------------------------------------------------------------------+
40
// |                                            ENTÊTE du PROGRAMME                                       |
45
// |                                            ENTÊTE du PROGRAMME                                       |
41
// +------------------------------------------------------------------------------------------------------+
46
// +------------------------------------------------------------------------------------------------------+
42
// Constante de l'application Installateur. On devrait créer un fichier de config et un de langue pour rendre l'appli portable...
47
// Constante de l'application Installateur. On devrait créer un fichier de config et un de langue pour rendre l'appli portable...
43
preg_match('/^(.*)papyrus.php/', $_SERVER['SCRIPT_FILENAME'], $instal_tab_txt);
48
preg_match('/^(.*)papyrus.php/', $_SERVER['SCRIPT_FILENAME'], $instal_tab_txt);
44
define('INSTAL_CHEMIN_ABSOLU', $instal_tab_txt[1]);
49
define('INSTAL_CHEMIN_ABSOLU', $instal_tab_txt[1]);
45
/** Nom du dossier contenant l'application Installateur.*/
50
/** Nom du dossier contenant l'application Installateur.*/
46
define('INSTAL_DOSSIER_APPLI', INSTAL_CHEMIN_ABSOLU.GEN_CHEMIN_APPLICATION.'installateur'.GEN_SEP);
51
define('INSTAL_DOSSIER_APPLI', INSTAL_CHEMIN_ABSOLU.GEN_CHEMIN_APPLICATION.'installateur'.GEN_SEP);
47
/** Nom du dossier contenant la bibliothèque de code de l'application Installateur.*/
52
/** Nom du dossier contenant la bibliothèque de code de l'application Installateur.*/
48
define('INSTAL_DOSSIER_BIBLIO', INSTAL_DOSSIER_APPLI.'bibliotheque'.GEN_SEP);
53
define('INSTAL_DOSSIER_BIBLIO', INSTAL_DOSSIER_APPLI.'bibliotheque'.GEN_SEP);
49
/** Chemin vers le fichier de configuration de base de l'application Papyrus.*/
54
/** Chemin vers le fichier de configuration de base de l'application Papyrus.*/
50
define('INSTAL_CHEMIN_CONFIG', GEN_CHEMIN_CONFIG.GEN_FICHIER_CONFIG);
55
define('INSTAL_CHEMIN_CONFIG', GEN_CHEMIN_CONFIG.GEN_FICHIER_CONFIG);
51
/** Nom du fichier de configuration de Papyrus à créer.*/
56
/** Nom du fichier de configuration de Papyrus à créer.*/
52
define('INSTAL_FICHIER_CONFIG', GEN_FICHIER_CONFIG);
57
define('INSTAL_FICHIER_CONFIG', GEN_FICHIER_CONFIG);
53
/** Chemin vers le fichier de configuration de base de l'application Papyrus.*/
58
/** Chemin vers le fichier de configuration de base de l'application Papyrus.*/
54
define('INSTAL_CHEMIN_SQL', INSTAL_CHEMIN_ABSOLU.GEN_CHEMIN_INSTAL);
59
define('INSTAL_CHEMIN_SQL', INSTAL_CHEMIN_ABSOLU.GEN_CHEMIN_INSTAL);
55
/** Nom de la constante stockant le numéro de la nouvelle version de l'application Papyrus.*/
60
/** Nom de la constante stockant le numéro de la nouvelle version de l'application Papyrus.*/
56
define('INSTAL_VERSION_NOUVELLE_NOM', 'PAP_VERSION');
61
define('INSTAL_VERSION_NOUVELLE_NOM', 'PAP_VERSION');
57
/** Numéro de la nouvelle version de l'application Papyrus.*/
62
/** Numéro de la nouvelle version de l'application Papyrus.*/
58
define('INSTAL_VERSION_NOUVELLE', GEN_VERSION);
63
define('INSTAL_VERSION_NOUVELLE', GEN_VERSION);
59
if (defined('PAP_VERSION')) {
64
if (defined('PAP_VERSION')) {
60
    define('INSTAL_VERSION_ANCIENNE', PAP_VERSION);
65
    define('INSTAL_VERSION_ANCIENNE', PAP_VERSION);
61
} else {
66
} else {
62
    define('INSTAL_VERSION_ANCIENNE', '');
67
    define('INSTAL_VERSION_ANCIENNE', '');
63
}
68
}
64
/** Nombre d'étapes totale de l'installation.*/
69
/** Nombre d'étapes totale de l'installation.*/
65
define('INSTAL_NBRE_ETAPE', 3);
70
define('INSTAL_NBRE_ETAPE', 3);
66
 
71
 
67
// Fichiers à inclure
72
// Fichiers à inclure
68
require_once INSTAL_DOSSIER_BIBLIO.'instal_installation.fonct.php';
73
require_once INSTAL_DOSSIER_BIBLIO.'instal_installation.fonct.php';
69
 
74
 
70
// +------------------------------------------------------------------------------------------------------+
75
// +------------------------------------------------------------------------------------------------------+
71
// |                                          CORPS du PROGRAMME                                          |
76
// |                                          CORPS du PROGRAMME                                          |
72
// +------------------------------------------------------------------------------------------------------+
77
// +------------------------------------------------------------------------------------------------------+
73
function afficherContenuCorps() 
78
function afficherContenuCorps()
74
{
79
{
75
    // Entête XHTML des pages de l'installation de Papyrus
80
    // Entête XHTML des pages de l'installation de Papyrus
76
    $sortie = '';
81
    $sortie = '';
77
    $sortie .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"'."\n";
82
    $sortie .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"'."\n";
78
    $sortie .= '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'."\n";
83
    $sortie .= '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'."\n";
79
    $sortie .= '<html xmlns="http://www.w3.org/1999/xhtml" lang="fr-FR" xml:lang="fr-FR">'."\n";
84
    $sortie .= '<html xmlns="http://www.w3.org/1999/xhtml" lang="fr-FR" xml:lang="fr-FR">'."\n";
80
    $sortie .= '  <head>'."\n";
85
    $sortie .= '  <head>'."\n";
81
    $sortie .= '    <link rel="stylesheet" type="text/css" media="screen" title="Installateur" href="papyrus/applications/installateur/presentations/styles/installateur.css" />'."\n";
86
    $sortie .= '    <link rel="stylesheet" type="text/css" media="screen" title="Installateur" href="papyrus/applications/installateur/presentations/styles/installateur.css" />'."\n";
82
    $sortie .= '    <title>Installation de Papyrus</title>'."\n";
87
    $sortie .= '    <title>Installation de Papyrus</title>'."\n";
83
    $sortie .= '  </head>'."\n";
88
    $sortie .= '  </head>'."\n";
84
 	$sortie .= '  <body xml:lang="fr" lang="fr" >'."\n";
89
 	$sortie .= '  <body xml:lang="fr" lang="fr" >'."\n";
85
	$sortie .= '  <div id="page">'."\n";
90
	$sortie .= '  <div id="page">'."\n";
86
    $sortie .= '  	<div id="zone_bandeau">'."\n";  
91
    $sortie .= '  	<div id="zone_bandeau">'."\n";
87
	$sortie .= '  		<div id="logo">'."\n";    
92
	$sortie .= '  		<div id="logo">'."\n";
88
    $sortie .= '              <img src="papyrus/applications/installateur/presentations/images/Logo_papyrus.jpg" alt="Logo Papyrus" />'."\n";
93
    $sortie .= '              <img src="papyrus/applications/installateur/presentations/images/Logo_papyrus.jpg" alt="Logo Papyrus" />'."\n";
89
    $sortie .= '        </div>'."\n";
94
    $sortie .= '        </div>'."\n";
90
    $sortie .= '        <div id="site_nom">'."\n";
95
    $sortie .= '        <div id="site_nom">'."\n";
91
    $sortie .= '          <h1>Installation de Papyrus</h1>'."\n";
96
    $sortie .= '          <h1>Installation de Papyrus</h1>'."\n";
92
    $sortie .= '        </div>'."\n";
97
    $sortie .= '        </div>'."\n";
93
    $sortie .= '      </div>'."\n";
98
    $sortie .= '      </div>'."\n";
94
    $sortie .= '      <div id="zone_contenu">'."\n";
99
    $sortie .= '      <div id="zone_contenu">'."\n";
95
    // Message situation de l'installation
100
    // Message situation de l'installation
96
    if (defined('PAP_VERSION')) {
101
    if (defined('PAP_VERSION')) {
97
        $sortie .=  '<p class="zone_info">Votre syst&egrave;me Papyrus existant a &eacute;t&eacute; reconnu comme &eacute;tant la version '.
102
        $sortie .=  '<p class="zone_info">Votre syst&egrave;me Papyrus existant a &eacute;t&eacute; reconnu comme &eacute;tant la version '.
98
                    INSTAL_VERSION_ANCIENNE.'.<br />'.
103
                    INSTAL_VERSION_ANCIENNE.'.<br />'.
99
                    'Vous &ecirc;tes sur le point de <strong>mettre &agrave; jour</strong> Papyrus pour la version '.
104
                    'Vous &ecirc;tes sur le point de <strong>mettre &agrave; jour</strong> Papyrus pour la version '.
100
                    INSTAL_VERSION_NOUVELLE.'.<br />'.
105
                    INSTAL_VERSION_NOUVELLE.'.<br />'.
101
                    'Veuillez revoir vos informations de configuration ci-dessous.</p><br style="clear:both;">'."\n";
106
                    'Veuillez revoir vos informations de configuration ci-dessous.</p><br style="clear:both;">'."\n";
102
    } else {
107
    } else {
103
        $sortie .=  '<p class="zone_info">Vous &ecirc;tes sur le point d\'installer Papyrus '.INSTAL_VERSION_NOUVELLE.'.<br />'.
108
        $sortie .=  '<p class="zone_info">Vous &ecirc;tes sur le point d\'installer Papyrus '.INSTAL_VERSION_NOUVELLE.'.<br />'.
104
                    'Veuillez configurer votre Papyrus en remplissant les formulaires &eacute;tape par &eacute;tape.</p><br style="clear:both;">'."\n";
109
                    'Veuillez configurer votre Papyrus en remplissant les formulaires &eacute;tape par &eacute;tape.</p><br style="clear:both;">'."\n";
105
    }
110
    }
106
    
111
 
107
    if(!isset($_GET['installation']) || ($_GET['installation'] == 'form_pref' || $_GET['installation'] == 'verif_pref')) {
112
    if(!isset($_GET['installation']) || ($_GET['installation'] == 'form_pref' || $_GET['installation'] == 'verif_pref')) {
108
        include_once GEN_CHEMIN_APPLICATION.'installateur/instal_preference.inc.php';
113
        include_once GEN_CHEMIN_APPLICATION.'installateur/instal_preference.inc.php';
109
    } else if($_GET['installation'] == 'form_bdd' || $_GET['installation'] == 'verif_bdd') {
114
    } else if($_GET['installation'] == 'form_bdd' || $_GET['installation'] == 'verif_bdd') {
110
        include_once GEN_CHEMIN_APPLICATION.'installateur/instal_base_de_donnees.inc.php';
115
        include_once GEN_CHEMIN_APPLICATION.'installateur/instal_base_de_donnees.inc.php';
111
    } else if($_GET['installation'] == 'form_fichier' || $_GET['installation'] == 'verif_fichier') {
116
    } else if($_GET['installation'] == 'form_fichier' || $_GET['installation'] == 'verif_fichier') {
112
        include_once GEN_CHEMIN_APPLICATION.'installateur/instal_fichier.inc.php';
117
        include_once GEN_CHEMIN_APPLICATION.'installateur/instal_fichier.inc.php';
113
    }
118
    }
114
    
119
 
115
    // Pied XHTML des pages de l'installation de Papyrus
120
    // Pied XHTML des pages de l'installation de Papyrus
116
    $sortie .= '    </div>'."\n";
121
    $sortie .= '    </div>'."\n";
117
    $sortie .= '      <div id="zone_pied">'."\n";
122
    $sortie .= '      <div id="zone_pied">'."\n";
118
    $sortie .= '       <div id="copyright">'."\n";
123
    $sortie .= '       <div id="copyright">'."\n";
119
    $sortie .= '        <a href="http://frenchmozilla.org"><img src="papyrus/applications/installateur/presentations/images/logo-firefox.png" alt="Logo Firefox" /></a>&nbsp;'."\n";
124
    $sortie .= '        <a href="http://frenchmozilla.org"><img src="papyrus/applications/installateur/presentations/images/logo-firefox.png" alt="Logo Firefox" /></a>&nbsp;'."\n";
120
    $sortie .= '        <a href="http://validator.w3.org/check?uri=referer"><img src="papyrus/applications/installateur/presentations/images/logo-xhtml11.png" alt="Logo XHTML" /></a>&nbsp;'."\n";
125
    $sortie .= '        <a href="http://validator.w3.org/check?uri=referer"><img src="papyrus/applications/installateur/presentations/images/logo-xhtml11.png" alt="Logo XHTML" /></a>&nbsp;'."\n";
121
    $sortie .= '        <a href="http://jigsaw.w3.org/css-validator/check/referer"><img src="papyrus/applications/installateur/presentations/images/logo-css.png" alt="Logo CSS" /></a><br />'."\n";
126
    $sortie .= '        <a href="http://jigsaw.w3.org/css-validator/check/referer"><img src="papyrus/applications/installateur/presentations/images/logo-css.png" alt="Logo CSS" /></a><br />'."\n";
122
    $sortie .= '        &copy;&nbsp;<a href="http://www.tela-botanica.org/">Tela Botanica</a> et  <a href="http://www.ecole-et-nature.org/">R&eacute;seau Ecole et Nature</a> / 2004-2006<br />'."\n";
127
    $sortie .= '        &copy;&nbsp;<a href="http://www.tela-botanica.org/">Tela Botanica</a> et  <a href="http://www.ecole-et-nature.org/">R&eacute;seau Ecole et Nature</a> / 2004-2006<br />'."\n";
123
    $sortie .= '        Site utilisant <a href="http://outils-reseaux.org/wiki_papyrus">Papyrus, le CMS coop&eacute;ratif</a>'."\n";
128
    $sortie .= '        Site utilisant <a href="http://outils-reseaux.org/wiki_papyrus">Papyrus, le CMS coop&eacute;ratif</a>'."\n";
124
    $sortie .= '       </div>'."\n";
129
    $sortie .= '       </div>'."\n";
125
    $sortie .= '      </div>'."\n";
130
    $sortie .= '      </div>'."\n";
126
    $sortie .= '  </div>'."\n";
131
    $sortie .= '  </div>'."\n";
127
    $sortie .= ' </body>'."\n";
132
    $sortie .= ' </body>'."\n";
128
    $sortie .= '</html>';
133
    $sortie .= '</html>';
129
    
134
 
130
    return $sortie;
135
    return $sortie;
131
}
136
}
132
 
137
 
133
 
138
 
134
// +------------------------------------------------------------------------------------------------------+
139
// +------------------------------------------------------------------------------------------------------+
135
// |                                            PIED du PROGRAMME                                         |
140
// |                                            PIED du PROGRAMME                                         |
136
// +------------------------------------------------------------------------------------------------------+
141
// +------------------------------------------------------------------------------------------------------+
137
 
142
 
138
/* +--Fin du code ----------------------------------------------------------------------------------------+
143
/* +--Fin du code ----------------------------------------------------------------------------------------+
139
*
144
*
140
* $Log: not supported by cvs2svn $
145
* $Log: not supported by cvs2svn $
141
* Revision 1.16  2007-04-20 13:31:42  florian
146
* Revision 1.16  2007-04-20 13:31:42  florian
142
* remplacement des caracteres speciaux par des entite html
147
* remplacement des caracteres speciaux par des entite html
143
*
148
*
144
* Revision 1.15  2006/10/16 15:49:07  ddelon
149
* Revision 1.15  2006/10/16 15:49:07  ddelon
145
* Refactorisation code mulitlinguisme et gestion menu invisibles
150
* Refactorisation code mulitlinguisme et gestion menu invisibles
146
*
151
*
147
* Revision 1.14  2006/10/09 14:35:50  ddelon
152
* Revision 1.14  2006/10/09 14:35:50  ddelon
148
* bug caractere invalide trainant dans fichier
153
* bug caractere invalide trainant dans fichier
149
*
154
*
150
* Revision 1.13  2006/10/05 15:17:29  florian
155
* Revision 1.13  2006/10/05 15:17:29  florian
151
* changement presentation
156
* changement presentation
152
*
157
*
153
* Revision 1.12  2006/10/05 15:11:17  florian
158
* Revision 1.12  2006/10/05 15:11:17  florian
154
* changement presentation
159
* changement presentation
155
*
160
*
156
* Revision 1.11  2006/10/05 14:41:53  florian
161
* Revision 1.11  2006/10/05 14:41:53  florian
157
* changement presentation
162
* changement presentation
158
*
163
*
159
* Revision 1.10  2005/09/23 14:20:23  florian
164
* Revision 1.10  2005/09/23 14:20:23  florian
160
* nouvel habillage installateur, plus correction de quelques bugs
165
* nouvel habillage installateur, plus correction de quelques bugs
161
*
166
*
162
* Revision 1.9  2004/10/27 11:43:32  jpm
167
* Revision 1.9  2004/10/27 11:43:32  jpm
163
* Correction bogues diff mise à jour / installation.
168
* Correction bogues diff mise à jour / installation.
164
*
169
*
165
* Revision 1.8  2004/10/25 10:22:48  jpm
170
* Revision 1.8  2004/10/25 10:22:48  jpm
166
* Correction de quelques bogues, ajouts d'explications pour l'utilisateur et modification des styles CSS.
171
* Correction de quelques bogues, ajouts d'explications pour l'utilisateur et modification des styles CSS.
167
*
172
*
168
* Revision 1.7  2004/10/22 17:23:04  jpm
173
* Revision 1.7  2004/10/22 17:23:04  jpm
169
* Simplification del'installation de Papyrus.
174
* Simplification del'installation de Papyrus.
170
*
175
*
171
* Revision 1.6  2004/10/19 17:01:12  jpm
176
* Revision 1.6  2004/10/19 17:01:12  jpm
172
* Correction bogues.
177
* Correction bogues.
173
*
178
*
174
* Revision 1.5  2004/10/19 16:47:28  jpm
179
* Revision 1.5  2004/10/19 16:47:28  jpm
175
* Transformation en fonction de l'appel de l'application.
180
* Transformation en fonction de l'appel de l'application.
176
*
181
*
177
* Revision 1.4  2004/10/19 15:59:18  jpm
182
* Revision 1.4  2004/10/19 15:59:18  jpm
178
* Ajout de la gestion des valeurs propre à Papyrus à insérer dans la base de données.
183
* Ajout de la gestion des valeurs propre à Papyrus à insérer dans la base de données.
179
* Ajout des constantes FTP.
184
* Ajout des constantes FTP.
180
*
185
*
181
* Revision 1.3  2004/10/18 09:12:09  jpm
186
* Revision 1.3  2004/10/18 09:12:09  jpm
182
* Changement de nom d'un fichier.
187
* Changement de nom d'un fichier.
183
*
188
*
184
* Revision 1.2  2004/10/15 18:28:59  jpm
189
* Revision 1.2  2004/10/15 18:28:59  jpm
185
* Début appli installateur de Papyrus.
190
* Début appli installateur de Papyrus.
186
*
191
*
187
* Revision 1.1  2004/06/16 14:33:13  jpm
192
* Revision 1.1  2004/06/16 14:33:13  jpm
188
* Changement de nom de Papyrus en Papyrus.
193
* Changement de nom de Papyrus en Papyrus.
189
* Changement de l'arborescence.
194
* Changement de l'arborescence.
190
*
195
*
191
* Revision 1.6  2004/04/22 08:25:48  jpm
196
* Revision 1.6  2004/04/22 08:25:48  jpm
192
* Transformation de $GS_GLOBAL en $_GEN_commun.
197
* Transformation de $GS_GLOBAL en $_GEN_commun.
193
*
198
*
194
* Revision 1.5  2004/04/08 13:21:05  jpm
199
* Revision 1.5  2004/04/08 13:21:05  jpm
195
* Le code pour l'installation uniquement.
200
* Le code pour l'installation uniquement.
196
*
201
*
197
* Revision 1.4  2004/04/08 12:25:16  jpm
202
* Revision 1.4  2004/04/08 12:25:16  jpm
198
* Suppression de tous le code réalisant les vérifications. L'application Installateur ne fera qu'installer Papyrus et non vérifier son bon fonctionnement.
203
* Suppression de tous le code réalisant les vérifications. L'application Installateur ne fera qu'installer Papyrus et non vérifier son bon fonctionnement.
199
*
204
*
200
* Revision 1.3  2004/04/02 16:37:51  jpm
205
* Revision 1.3  2004/04/02 16:37:51  jpm
201
* Modification des commentaires.
206
* Modification des commentaires.
202
*
207
*
203
* Revision 1.2  2004/03/31 16:57:16  jpm
208
* Revision 1.2  2004/03/31 16:57:16  jpm
204
* Ajout de la gestion des erreur de base de données, de la connexion à celle-ci et des extenssions php disponibles.
209
* Ajout de la gestion des erreur de base de données, de la connexion à celle-ci et des extenssions php disponibles.
205
*
210
*
206
* Revision 1.1  2004/03/29 11:00:12  jpm
211
* Revision 1.1  2004/03/29 11:00:12  jpm
207
* Transfert d'un morceau de code gérant les erreurs et l'installation mais qui a actuellement aucun effet sur Papyrus.
212
* Transfert d'un morceau de code gérant les erreurs et l'installation mais qui a actuellement aucun effet sur Papyrus.
208
*
213
*
209
*
214
*
210
* +-- Fin du code ----------------------------------------------------------------------------------------+
215
* +-- Fin du code ----------------------------------------------------------------------------------------+
211
*/
216
*/
212
?>
217
?>