Twitter iPhone pliant OnePlus 11 PS5 Disney+ Orange Livebox Windows 11

selfhtml event ça marche chez vous ?

7 réponses
Avatar
yvon_thoraval
j'essaie, en vain (safari/webkit firefox sur mac os x), les pages de
tests chez selfhtml :

<http://fr.selfhtml.org/javascript/objets/event.htm>

peu d'exemples fonctionnent ???

7 réponses

Avatar
ASM
j'essaie, en vain (safari/webkit firefox sur mac os x), les pages de
tests chez selfhtml :

<http://fr.selfhtml.org/javascript/objets/event.htm>

peu d'exemples fonctionnent ???


pour sûr ! selfhtml préfère IE :-(

http://perso.orange.fr/stephane.moriaux/truc/key_enter_tab.htm
http://perso.orange.fr/stephane.moriaux/truc/key_code.htm
http://perso.orange.fr/stephane.moriaux/truc/coord_carte.htm
http://www.quirksmode.org/js/events_properties.html
http://www.quirksmode.org/js/events_order.html
http://www.aidejavascript.com/article144.html

etc ...

Avatar
yvon_thoraval
ASM wrote:

http://perso.orange.fr/stephane.moriaux/truc/key_enter_tab.htm
http://perso.orange.fr/stephane.moriaux/truc/key_code.htm
http://perso.orange.fr/stephane.moriaux/truc/coord_carte.htm
http://www.quirksmode.org/js/events_properties.html
http://www.quirksmode.org/js/events_order.html
http://www.aidejavascript.com/article144.html


ok, merci, je suis les mains dans le camboui : je re-config apache2 de
manière à avoir les SSI et surtout mod_ruby...


j'ai commencé de regarder ta version de mes css...

Avatar
ASM
ASM wrote:

http://perso.orange.fr/stephane.moriaux/truc/key_code.htm



rajouté le Shift qui manquait

ok, merci, je suis les mains dans le camboui : je re-config apache2 de
manière à avoir les SSI et surtout mod_ruby...


SSI ->
Finder : Pomme F recherche : httpd.conf (invisible)
l'ouvrir avec un texteur
chercher : SSI
débloquer les lignes :

#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml

Bien sûr après avoir fait un back du fichier *.conf

j'ai commencé de regarder ta version de mes css...


que la partie menu.

--
ASM


Avatar
yvon_thoraval
ASM wrote:

http://perso.orange.fr/stephane.moriaux/truc/key_code.htm



rajouté le Shift qui manquait

ok, merci, je suis les mains dans le camboui : je re-config apache2 de
manière à avoir les SSI et surtout mod_ruby...


SSI ->
Finder : Pomme F recherche : httpd.conf (invisible)
l'ouvrir avec un texteur
chercher : SSI
débloquer les lignes :

#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml



ouh là tu es trop )))

Bien sûr après avoir fait un back du fichier *.conf

j'ai commencé de regarder ta version de mes css...


que la partie menu.


oui, oui...



Avatar
yvon_thoraval
ASM wrote:

SSI ->
Finder : Pomme F recherche : httpd.conf (invisible)
l'ouvrir avec un texteur
chercher : SSI
débloquer les lignes :

#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml


apparemment avec Apache2, ça ne suffit pas j'ai fait ce que tu écrit
juste au dessus + :

<IfModule dir_module>
DirectoryIndex index.html index.rhtml index.shtml index.php
</IfModule>


et j'obtiens (en pointant <http://yvon-thoraval.com/SSI/>)

Internal Server Error

contenu de mon fichier index.shtml :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="fr">
<head>
<title>SSI - Test</title>
<meta http-equiv="Content-type" content="text/html;
charset=UTF-8">
</head>
<body>
<h1>SSI - Test</h1>
L'heure GMT est <!--#echo var="DATE_GMT" --> et il fait
beau.
</body>
</html>

Avatar
ASM
ASM wrote:

débloquer les lignes :

#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml


apparemment avec Apache2, ça ne suffit pas j'ai fait ce que tu écrit
juste au dessus + :

<IfModule dir_module>
DirectoryIndex index.html index.rhtml index.shtml index.php
</IfModule>


Il faut lire ce qui est écrit dans ce *.conf
et comme il est dit juste au-dessus des lignes débloquées :
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)

Donc voir aussi :
Options Indexes FollowSymLinks
à compléter :
Options Indexes FollowSymLinks MultiViews Includes

MultiViews, si je ne me trompe, est pour se passer du suffixe dans les
liens (voir sur un ng traitant d'Apache ?)

--
ASM


Avatar
pere.noel
ASM wrote:


Il faut lire ce qui est écrit dans ce *.conf
et comme il est dit juste au-dessus des lignes débloquées :
# To parse .shtml files for server-side includes (SSI):
# (You will also need to add "Includes" to the "Options" directive.)

Donc voir aussi :
Options Indexes FollowSymLinks
à compléter :
Options Indexes FollowSymLinks MultiViews Includes

MultiViews, si je ne me trompe, est pour se passer du suffixe dans les
liens (voir sur un ng traitant d'Apache ?)


ok, merci, j'ai voulu aller trop vite )))