renamed: fichier/dir/aa -> fichier/dir/aa.txt
new file: fichier/dir/sa.html renamed: fichier/dir/zz -> fichier/dir/zz.txt renamed: fichier/ff -> fichier/ff.txt deleted: sauv/aa renamed: sauv/ff -> sauv/ff.txt modified: v/Vue1.rb
This commit is contained in:
parent
765ae0e23e
commit
1a4096fd82
21
fichier/dir/sa.html
Normal file
21
fichier/dir/sa.html
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE HTML>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf8" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="style/styles.css">
|
||||||
|
|
||||||
|
<title>Boutique Marchande sur le Web</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="bandeau">
|
||||||
|
<h1>Boutique marchande</h1>
|
||||||
|
</div>
|
||||||
|
<div id="menu">
|
||||||
|
<ul>
|
||||||
|
<li><a href="http://google.fr">Accueil</a></li>
|
||||||
|
<li><a href="http://cdz.dqz">Consultation des promotions et nouveautés</a></li>
|
||||||
|
<li><a href="https://google.com">Consultation des produits par catégorie</a></li>
|
||||||
|
<li><a href="http://a.d">Recherche d’un produit à commander (client nouveau)</a></ul>
|
||||||
|
</div>
|
||||||
|
<div id="contenu">
|
@ -73,7 +73,16 @@ class Vue1
|
|||||||
@ctrl.recupUrlsDoss(@chaine)
|
@ctrl.recupUrlsDoss(@chaine)
|
||||||
else
|
else
|
||||||
if(File.exist?(@chaine)) #si c'est un fichier -> existant utilisation du controleur adéquat
|
if(File.exist?(@chaine)) #si c'est un fichier -> existant utilisation du controleur adéquat
|
||||||
|
if(File.extname(@chaine)== ".txt" || File.extname(@chaine)== ".html" )
|
||||||
@ctrl.recupUrls(@chaine)
|
@ctrl.recupUrls(@chaine)
|
||||||
|
else
|
||||||
|
i = Gtk::MessageDialog.new(Gtk::Window.new, Gtk::Dialog::DESTROY_WITH_PARENT,
|
||||||
|
Gtk::MessageDialog::ERROR,
|
||||||
|
Gtk::MessageDialog::BUTTONS_CLOSE,
|
||||||
|
"Erreur : fichier extension invalide !")
|
||||||
|
i.run
|
||||||
|
i.destroy
|
||||||
|
end
|
||||||
else #gestion saisie invalide
|
else #gestion saisie invalide
|
||||||
d = Gtk::MessageDialog.new(Gtk::Window.new, Gtk::Dialog::DESTROY_WITH_PARENT,
|
d = Gtk::MessageDialog.new(Gtk::Window.new, Gtk::Dialog::DESTROY_WITH_PARENT,
|
||||||
Gtk::MessageDialog::ERROR,
|
Gtk::MessageDialog::ERROR,
|
||||||
|
Reference in New Issue
Block a user