| Line 17... |
Line 17... |
| 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: menu.php,v 1.25 2006-06-28 12:53:34 ddelon Exp $
|
22 |
// CVS : $Id: menu.php,v 1.26 2006-07-04 09:43:21 alexandre_tb Exp $
|
| 23 |
/**
|
23 |
/**
|
| 24 |
* Applette : menu
|
24 |
* Applette : menu
|
| 25 |
*
|
25 |
*
|
| 26 |
* Génère une liste de listes comportant tous les niveaux des menus "classiques" d'un site.
|
26 |
* Génère une liste de listes comportant tous les niveaux des menus "classiques" d'un site.
|
| 27 |
* Nécessite :
|
27 |
* Nécessite :
|
| Line 36... |
Line 36... |
| 36 |
//Auteur original :
|
36 |
//Auteur original :
|
| 37 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
37 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
| 38 |
//Autres auteurs :
|
38 |
//Autres auteurs :
|
| 39 |
*@author Aucun
|
39 |
*@author Aucun
|
| 40 |
*@copyright Tela-Botanica 2000-2004
|
40 |
*@copyright Tela-Botanica 2000-2004
|
| 41 |
*@version $Revision: 1.25 $ $Date: 2006-06-28 12:53:34 $
|
41 |
*@version $Revision: 1.26 $ $Date: 2006-07-04 09:43:21 $
|
| 42 |
// +------------------------------------------------------------------------------------------------------+
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
| 43 |
*/
|
43 |
*/
|
| Line 44... |
Line 44... |
| 44 |
|
44 |
|
| 45 |
// +------------------------------------------------------------------------------------------------------+
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
| Line 139... |
Line 139... |
| 139 |
for (var i=0; i<sfEls.length; i++) {
|
139 |
for (var i=0; i<sfEls.length; i++) {
|
| 140 |
sfEls[i].onmouseover=function() {
|
140 |
sfEls[i].onmouseover=function() {
|
| 141 |
this.className+=" sfhover";
|
141 |
this.className+=" sfhover";
|
| 142 |
}
|
142 |
}
|
| 143 |
sfEls[i].onmouseout=function() {
|
143 |
sfEls[i].onmouseout=function() {
|
| 144 |
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
|
144 |
this.className=this.className.replace(new RegExp(" sfhover\\\\b"), "");
|
| 145 |
}
|
145 |
}
|
| 146 |
}
|
146 |
}
|
| 147 |
}
|
147 |
}
|
| 148 |
if (window.attachEvent) window.attachEvent("onload", sfHover);') ;
|
148 |
if (window.attachEvent) window.attachEvent("onload", sfHover);') ;
|
| 149 |
}
|
149 |
}
|
| Line 482... |
Line 482... |
| 482 |
|
482 |
|
| 483 |
|
483 |
|
| 484 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
484 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
| - |
|
485 |
*
|
| - |
|
486 |
* $Log: not supported by cvs2svn $
|
| - |
|
487 |
* Revision 1.25 2006/06/28 12:53:34 ddelon
|
| 485 |
*
|
488 |
* Multilinguisme : menu par defaut
|
| 486 |
* $Log: not supported by cvs2svn $
|
489 |
*
|
| 487 |
* Revision 1.24 2006/03/13 21:00:20 ddelon
|
490 |
* Revision 1.24 2006/03/13 21:00:20 ddelon
|
| 488 |
* Suppression messages d'erreur multilinguisme
|
491 |
* Suppression messages d'erreur multilinguisme
|
| 489 |
*
|
492 |
*
|