X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=htdocs%2Fjavascript%2Fxorg.js;h=e8b795235f8b6b962403fca170584cc4d19fde35;hb=55546c0db778c2d8f9d7debd30117931dc39ff16;hp=02ef26a8abd78a0a9404eb03973bdaa1d804243d;hpb=9f449375aa254a3af970d5eb0bd7f0478ed7363a;p=platal.git diff --git a/htdocs/javascript/xorg.js b/htdocs/javascript/xorg.js index 02ef26a..e8b7952 100644 --- a/htdocs/javascript/xorg.js +++ b/htdocs/javascript/xorg.js @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2003-2004 Polytechnique.org * + * Copyright (C) 2003-2008 Polytechnique.org * * http://opensource.polytechnique.org/ * * * * This program is free software; you can redistribute it and/or modify * @@ -32,16 +32,46 @@ function getNow() { if (yr<1000) yr += 1900; 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'] + months = ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', + 'août', 'septembre', 'octobre', 'novembre', 'décembre'] return days[dy]+' '+wd+' '+months[mh]+' '+yr+'
'+time; } // }}} +// {{{ Search Engine + +function canAddSearchEngine() +{ + if (((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function")) + || ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function"))) { + return true; + } + return false; +} + +function addSearchEngine() +{ + var searchURI = "http://www.polytechnique.org/xorg.opensearch.xml"; + if ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function")) { + window.sidebar.addSearchEngine( + searchURI, + "http://www.polytechnique.org/images/xorg.png", + "Annuaire Polytechnique.org", + "Academic"); + } else { + try { + window.external.AddSearchProvider(searchURI); + } catch(e) { + alert("Impossible d'installer la barre de recherche"); + } + } +} + +// }}} // {{{ Events function eventClosure(obj, methodName) { @@ -60,6 +90,55 @@ function attachEvent(obj, evt, f, useCapture) { } else if (obj.attachEvent) { return obj.attachEvent("on"+evt, f); } + return false; +} + +// }}} +// {{{ dynpost() + +function dynpost(action, values) +{ + var body = document.getElementsByTagName('body')[0]; + + var form = document.createElement('form'); + form.action = action; + form.method = 'post'; + + body.appendChild(form); + + for (var k in values) { + var input = document.createElement('input'); + input.type = 'hidden'; + input.name = k; + input.value = values[k]; + form.appendChild(input); + } + + form.submit(); +} + +function dynpostkv(action, k, v) +{ + var dict = {}; + dict[k] = v; + dynpost(action, dict); +} + +// }}} +// {{{ function RegExp.escape() + +RegExp.escape = function(text) { + if (!arguments.callee.sRE) { + var specials = [ + '/', '.', '*', '+', '?', '|', + '(', ')', '[', ']', '{', '}', + '\\', '^' , '$' + ]; + arguments.callee.sRE = new RegExp( + '(\\' + specials.join('|\\') + ')', 'g' + ); + } + return text.replace(arguments.callee.sRE, '\\$1'); } // }}} @@ -72,41 +151,225 @@ function attachEvent(obj, evt, f, useCapture) { 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); + 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+w+',height='+h); +} + +// }}} +// {{{ function goodiesPopup() + +function goodiesPopup(node) { + if (node.href.indexOf('ical') > -1) { + __goodies_popup(node, __goodies_ical_sites, 'Calendrier iCal'); + } else if (node.href.indexOf('rss') > -1 && node.href.indexOf('prefs/rss') < 0 && (node.href.indexOf('xml') > -1 || node.href.indexOf('hash'))) { + __goodies_popup(node, __goodies_rss_sites, 'Fil rss'); + } +} + +function disableGoodiesPopups() { + __goodies_active = false; +} + +var __goodies_active = true; +var __goodies_ical_sites = [ + {'url_prefix': '', + 'img': 'images/icons/calendar_view_day.gif', + 'title': 'Calendrier iCal'}, + {'url_prefix': 'http://www.google.com/calendar/render?cid=', + 'img': 'images/goodies/add-google-calendar.gif', + 'title': 'Ajouter à Google Calendar'}, + {'url_prefix': 'https://www.google.com/calendar/hosted/polytechnique.org/render?cid=', + 'img': 'images/goodies/add-google-calendar.gif', + 'title': 'Ajouter à Google Apps / Calendar'} +]; +var __goodies_rss_sites = [ + {'url_prefix': '', + 'img': 'images/icons/feed.gif', + 'title': 'Fil rss'}, + {'url_prefix': 'http://fusion.google.com/add?feedurl=', + 'img': 'images/goodies/add-google.gif', + 'alt': 'Add to Google', + 'title': 'Ajouter à iGoogle/Google Reader'}, + {'url_prefix': 'http://www.netvibes.com/subscribe.php?url=', + 'img': 'images/goodies/add-netvibes.gif', + 'title': 'Ajouter à Netvibes'}, + {'url_prefix': 'http://add.my.yahoo.com/content?.intl=fr&url=', + 'img': 'images/goodies/add-yahoo.gif', + 'alt': 'Add to My Yahoo!', + 'title': 'Ajouter à My Yahoo!'}, + {'url_prefix': 'http://www.newsgator.com/ngs/subscriber/subext.aspx?url=', + 'img': 'images/goodies/add-newsgator.gif', + 'alt': 'Subscribe in NewsGator Online', + 'title': 'Ajouter à Newsgator'} +]; + +function __goodies_popupText(url, sites) { + var text = '
'; + for (var site in sites) { + var s_alt = (sites[site]["alt"] ? sites[site]["alt"] : ""); + var s_img = sites[site]["img"]; + var s_title = (sites[site]["title"] ? sites[site]["title"] : ""); + var s_url = (sites[site]["url_prefix"].length > 0 ? sites[site]["url_prefix"] + escape(url) : url); + + text += '' + s_alt + '
'; + } + text += 'Plus de bonus ...
' + return text; +} + +function __goodies_popup(node, sites, default_title) { + var mouseover_cb = function() { + if (__goodies_active) { + var rss_text = __goodies_popupText(node.href, sites); + var rss_title = (node.title ? node.title : default_title); + return overlib(rss_text, CAPTION, rss_title, CLOSETEXT, 'Fermer', DELAY, 800, STICKY, WIDTH, 150); + } + } + var mouseout_cb = function() { + nd(); + } + + node.onmouseover = mouseover_cb; + node.onmouseout = mouseout_cb; } // }}} // {{{ function auto_links() function auto_links() { - nodes = document.getElementsByTagName('a'); - fqdn = document.URL; - fqdn = fqdn.replace(/^https?:\/\/([^\/]*)\/.*$/,'$1'); - for(var i=0; i -1 || node.href.indexOf('javascript:')>-1) continue; - if(node.href.indexOf(fqdn)<0 || node.className == 'popup') { - node.onclick = function () { window.open(this.href); return false; }; - } - if(node.className == 'popup2') { - node.onclick = function () { popWin(this,840,600); return false; }; - } - if(matches = (/^popup_([0-9]*)x([0-9]*)$/).exec(node.className)) { - var w = matches[1], h = matches[2]; - node.onclick = function () { popWin(this,w,h); return false; }; - } + auto_links_nodes(document.getElementsByTagName('a')); + auto_links_nodes(document.getElementsByTagName('link')); +} + +function auto_links_nodes(nodes) { + url = document.URL; + fqdn = url.replace(/^https?:\/\/([^\/]*)\/.*$/,'$1'); + light = (url.indexOf('display=light') > url.indexOf('?')); + for(var i=0; i < nodes.length; i++) { + node = nodes[i]; + if(!node.href || node.className == 'xdx' + || node.href.indexOf('mailto:') > -1 || node.href.indexOf('javascript:') > -1) + continue; + if (node.href.indexOf(fqdn) < 0 || node.className == 'popup') { + node.onclick = function () { window.open(this.href); return false; }; + } + if (node.href.indexOf(fqdn) > -1 && light) { + node.href = node.href.replace(/([^\#\?]*)\??([^\#]*)(\#.*)?/, + "$1?display=light&$2$3"); + } + if (node.href.indexOf('rss') > -1 || node.href.indexOf('ical') > -1) { + node.href = node.href.replace(/https/, 'http'); + if (node.href.indexOf('http') < 0) { + node.href = 'http://' + fqdn + '/' + node.href; + } + if (node.nodeName.toLowerCase() == 'a') { + goodiesPopup(node); + } + } + if(node.className == 'popup2') { + node.onclick = function () { popWin(this,840,600); return false; }; + } + if(node.className == 'popup3') { + node.onclick = function () { popWin(this, 640, 800); return false; }; + } + if(matches = (/^popup_([0-9]*)x([0-9]*)$/).exec(node.className)) { + var w = matches[1], h = matches[2]; + node.onclick = function () { popWin(this,w,h); return false; }; + } + } +} + +// }}} + + +/*************************************************************************** + * Password check + */ + +// {{{ function checkPassword + +function getType(char) { + if (char >= 'a' && char <= 'z') { + return 1; + } else if (char >= 'A' && char <= 'Z') { + return 2; + } else if (char >= '0' && char <= '9') { + return 3; + } else { + return 4; + } +} + +function checkPassword(box, okLabel) { + var prev = 0; + var prop = 0; + var pass = box.value; + var types = Array(0, 0, 0, 0, 0); + var firstType = true; + for (i = 0 ; i < pass.length ; ++i) { + type = getType(pass.charAt(i)); + if (prev != 0 && prev != type) { + prop += 5; + } + prop += i; + if (types[type] == 0 && !firstType) { + prop += 15; + } else { + firstType = false; + } + types[type]++; + prev = type; + } + if (pass.length < 6) { + prop *= 0.75; + } + if (prop > 100) { + prop = 100; + } else if (prop < 0) { + prop = 0; + } + if (prop >= 60) { + color = "#4f4"; + bgcolor = "#050"; + ok = true; + } else if (prop >= 40) { + color = "#ff4"; + bgcolor = "#750"; + ok = true; + } else { + color = "#f20"; + bgcolor = "#700"; + ok = false; + } + $("#passwords_measure") + .stop() + .animate({ width: prop + "%", + backgroundColor: color + }, 750) + .parent().stop() + .animate({ backgroundColor: bgcolor }, 750); + var submitButton = $(":submit[@name='" + passwordprompt_submit + "']"); + if (ok && pass.length >= 6) { + submitButton.attr("value", okLabel); + submitButton.removeAttr("disabled"); + } else { + submitButton.attr("value", "Mot de passe trop faible"); + submitButton.attr("disabled", "disabled"); } } // }}} + /*************************************************************************** * The real OnLoad */ // {{{ function pa_onload -attachEvent(document, 'load', auto_links); +if (!attachEvent(window, 'load', auto_links)) { + window.onload = auto_links; +} // }}} +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: