Line 30... |
Line 30... |
30 |
// | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
30 |
// | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
31 |
// | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
31 |
// | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
32 |
// | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
|
32 |
// | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
|
33 |
// | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
33 |
// | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
34 |
// +------------------------------------------------------------------------------------------------------+
|
34 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// CVS : $Id: instal_base_de_donnees.inc.php,v 1.28 2006-10-06 15:23:00 florian Exp $
|
35 |
// CVS : $Id: instal_base_de_donnees.inc.php,v 1.29 2006-12-01 14:05:57 alexandre_tb Exp $
|
36 |
/**
|
36 |
/**
|
37 |
* Page de création de la base de données de Papyrus.
|
37 |
* Page de création de la base de données de Papyrus.
|
38 |
*
|
38 |
*
|
39 |
* Page permettant de créer la base de données de Papyrus.
|
39 |
* Page permettant de créer la base de données de Papyrus.
|
40 |
*
|
40 |
*
|
Line 45... |
Line 45... |
45 |
*@author David DELON
|
45 |
*@author David DELON
|
46 |
*@author Patrick PAUL
|
46 |
*@author Patrick PAUL
|
47 |
*@author Eric FELDSTEIN
|
47 |
*@author Eric FELDSTEIN
|
48 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
48 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
49 |
*@copyright Tela-Botanica 2000-2004
|
49 |
*@copyright Tela-Botanica 2000-2004
|
50 |
*@version $Revision: 1.28 $ $Date: 2006-10-06 15:23:00 $
|
50 |
*@version $Revision: 1.29 $ $Date: 2006-12-01 14:05:57 $
|
51 |
// +------------------------------------------------------------------------------------------------------+
|
51 |
// +------------------------------------------------------------------------------------------------------+
|
52 |
**/
|
52 |
**/
|
Line 53... |
Line 53... |
53 |
|
53 |
|
54 |
// +------------------------------------------------------------------------------------------------------+
|
54 |
// +------------------------------------------------------------------------------------------------------+
|
Line 217... |
Line 217... |
217 |
$sortie .= creerFormulaire($bdd);
|
217 |
$sortie .= creerFormulaire($bdd);
|
218 |
$sortie .= '<li><input type="hidden" name="pref_serial" value="'.htmlentities(serialize($pref)).'" /></li>'."\n";
|
218 |
$sortie .= '<li><input type="hidden" name="pref_serial" value="'.htmlentities(serialize($pref)).'" /></li>'."\n";
|
219 |
$sortie .= '<li><input type="submit" value="Tester" /></li>'."\n";
|
219 |
$sortie .= '<li><input type="submit" value="Tester" /></li>'."\n";
|
220 |
$sortie .= ' </ul>'."\n";
|
220 |
$sortie .= ' </ul>'."\n";
|
221 |
$sortie .= ' </form>';
|
221 |
$sortie .= ' </form>';
|
222 |
} else if ($erreur == 2 && !empty($sortie_verif)) {
|
222 |
} else if ($erreur == 2 && !empty($sortie_test)) {
|
223 |
// Vérification du fichier avec interuption...
|
223 |
// Vérification du fichier avec interuption...
|
224 |
$sortie .= creerFormulaire($bdd);
|
224 |
$sortie .= creerFormulaire($bdd);
|
225 |
$sortie .= $sortie_test;
|
225 |
$sortie .= $sortie_test;
|
226 |
$sortie .= '<li><input type="hidden" name="pref_serial" value="'.htmlentities(serialize($pref)).'" /></li>'."\n";
|
226 |
$sortie .= '<li><input type="hidden" name="pref_serial" value="'.htmlentities(serialize($pref)).'" /></li>'."\n";
|
227 |
$sortie .= '<li><input type="submit" value="Tester à nouveau" /></li>'."\n";
|
227 |
$sortie .= '<li><input type="submit" value="Tester à nouveau" /></li>'."\n";
|
228 |
$sortie .= ' </ul>'."\n";
|
228 |
$sortie .= ' </ul>'."\n";
|
229 |
$sortie .= ' </form>';
|
229 |
$sortie .= ' </form>';
|
230 |
$sortie .= '<div class="code"><code>'.$sortie_verif.'</code></div>';
|
230 |
//$sortie .= '<div class="code"><code>'.$sortie_verif.'</code></div>';
|
231 |
} else if (($erreur == 0 || $erreur == 1) && !empty($sortie_verif)) {
|
231 |
} else if (($erreur == 0 || $erreur == 1) && !empty($sortie_verif)) {
|
232 |
// Vérification du fichier sans interuption... passage à l'étape suivante
|
232 |
// Vérification du fichier sans interuption... passage à l'étape suivante
|
233 |
$sortie .= creerFormulaire($bdd, true);
|
233 |
$sortie .= creerFormulaire($bdd, true);
|
234 |
$sortie .= $sortie_test;
|
234 |
$sortie .= $sortie_test;
|
235 |
$sortie .= ' </ul>'."\n";
|
235 |
$sortie .= ' </ul>'."\n";
|
Line 288... |
Line 288... |
288 |
|
288 |
|
289 |
|
289 |
|
290 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
290 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
291 |
*
|
- |
|
292 |
* $Log: not supported by cvs2svn $
|
- |
|
293 |
* Revision 1.28 2006/10/06 15:23:00 florian
|
291 |
*
|
294 |
* amelioration graphique de l'installateur
|
292 |
* $Log: not supported by cvs2svn $
|
295 |
*
|
293 |
* Revision 1.27 2006/10/06 10:35:38 alexandre_tb
|
296 |
* Revision 1.27 2006/10/06 10:35:38 alexandre_tb
|
294 |
* correction du lien vers l'inscription.
|
297 |
* correction du lien vers l'inscription.
|
295 |
*
|
298 |
*
|