From: x2000habouzit Date: Thu, 13 Oct 2005 18:42:16 +0000 (+0000) Subject: make javascript smaller, and nicer X-Git-Tag: xorg/0.9.9~107 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;ds=sidebyside;h=9f449375aa254a3af970d5eb0bd7f0478ed7363a;p=platal.git make javascript smaller, and nicer git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@98 839d8a87-29fc-0310-9880-83ba4fa771e5 --- diff --git a/htdocs/javascript/close_on_esc.js b/htdocs/javascript/close_on_esc.js index f4f3d87..7fc4a41 100644 --- a/htdocs/javascript/close_on_esc.js +++ b/htdocs/javascript/close_on_esc.js @@ -18,14 +18,12 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ***************************************************************************/ -function closePopup() { - window.close(); -} -if (navigator.appName=="Microsoft Internet Explorer") { - function keyboardIE() { if (event.keyCode == 27) closePopup(); }; - document.onkeydown = keyboardIE; -} else { - function keyboardOther(e) { if (e.keyCode == 27) closePopup(); }; - document.onkeydown = keyboardOther; +function closePopup(e) { + e = e || window.event; + if (e.keyCode == 27) { + window.close(); + } } +attachEvent(document, 'keydown', closePopup); + diff --git a/htdocs/javascript/xorg.js b/htdocs/javascript/xorg.js index 63efb48..02ef26a 100644 --- a/htdocs/javascript/xorg.js +++ b/htdocs/javascript/xorg.js @@ -18,32 +18,48 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ***************************************************************************/ - -/*************************************************************************** - * MISC - */ +var is_netscape = (navigator.appName.substring(0,8) == "Netscape"); +var is_IE = (navigator.appName.substring(0,9) == "Microsoft"); // {{{ function getNow() -/** - * function used to print the client's computer datetime on the page - */ function getNow() { - dt=new Date(); - dy=dt.getDay(); - mh=dt.getMonth(); - wd=dt.getDate(); - yr=dt.getYear(); + dt = new Date(); + dy = dt.getDay(); + mh = dt.getMonth(); + wd = dt.getDate(); + yr = dt.getYear(); if (yr<1000) yr += 1900; - hr=dt.getHours(); - mi=dt.getMinutes(); - if (mi<10) - time=hr+":0"+mi; - else - time=hr+":"+mi; - days=new Array ("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"); - months=new Array ("janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"); - return days[dy]+" "+wd+" "+months[mh]+" "+yr+"
"+time; + hr = dt.getHours(); + mi = dt.getMinutes(); + + time = (mi < 10) ? hr +':0'+mi : hr+':'+mi; + days = ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi']; + months = ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', + 'août', 'septembre', 'octobre', 'novembre', 'décembre'] + + return days[dy]+' '+wd+' '+months[mh]+' '+yr+'
'+time; +} + +// }}} +// {{{ Events + +function eventClosure(obj, methodName) { + return (function(e) { + e = e || window.event; + return obj[methodName](e); + }); +} + +function attachEvent(obj, evt, f, useCapture) { + if (!useCapture) useCapture = false; + + if (obj.addEventListener) { + obj.addEventListener(evt, f, useCapture); + return true; + } else if (obj.attachEvent) { + return obj.attachEvent("on"+evt, f); + } } // }}} @@ -54,13 +70,6 @@ function getNow() { // {{{ function popWin() -/** - * function that pops an anchor - * - * @param theNode anchor the anchor we are talking about - * @param w int the desired width for the popup - * @param h int the desired height for the popup - */ function popWin(theNode,w,h) { window.open(theNode.href, '_blank', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+w+',height='+h); @@ -69,14 +78,6 @@ function popWin(theNode,w,h) { // }}} // {{{ function auto_links() -/** - * parses an html file, and update the onclik handlers for anchors that need it. - * - * anchors : - * - that points to another host are opened in a new window (mimic the target=_new) - * - of class popup(2) or popup_###x### create real popups (no url bar, ...) - * This function is designed to be used in - */ function auto_links() { nodes = document.getElementsByTagName('a'); fqdn = document.URL; @@ -105,9 +106,7 @@ function auto_links() { // {{{ function pa_onload -function pa_onload() { - auto_links(); -} +attachEvent(document, 'load', auto_links); // }}}