Merge commit 'origin/fusionax' into account
[platal.git] / htdocs / javascript / xorg.js
index 63efb48..89c35b2 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *  Copyright (C) 2003-2004 Polytechnique.org                              *
+ *  Copyright (C) 2003-2009 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
  *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
  ***************************************************************************/
 
-
-/***************************************************************************
- * MISC
- */
+var is_IE       = $.browser.msie;
 
 // {{{ 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+"<br />"+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+'<br />'+time;
+}
+
+// }}}
+// {{{ Search Engine
+
+function canAddSearchEngine()
+{
+    if (((typeof window.sidebar == "object") && $.isFunction(window.sidebar.addSearchEngine))
+        || ((typeof window.external == "object") && $.isFunction(window.external.AddSearchProvider))) {
+        return true;
+    }
+    return false;
+}
+
+function addSearchEngine()
+{
+    var searchURI = "http://www.polytechnique.org/xorg.opensearch.xml";
+    if ((typeof window.sidebar == "object") && $.isFunction(window.sidebar.addSearchEngine)) {
+        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");
+        }
+    }
+}
+
+// }}}
+// {{{ dynpost()
+
+function dynpost(action, values)
+{
+    var form = document.createElement('form');
+    form.action = action;
+    form.method = 'post';
+
+    $('body').get(0).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');
 }
 
 // }}}
@@ -54,60 +125,220 @@ 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) {
+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);
+    return false;
+}
+
+// }}}
+// {{{ function goodiesPopup()
+
+var __goodies_active = true;
+
+var __goodies_ical = {
+    default_title: 'Calendrier 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 = {
+    default_title: 'Fils 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 disableGoodiesPopups() {
+    __goodies_active = false;
+}
+
+function goodiesPopup(node, goodies) {
+    var text = '<div style="text-align: center; line-height: 2.2">';
+    for (var site in goodies.sites) {
+        var entry = goodies.sites[site];
+        var s_alt   = entry["alt"] ? entry["alt"] : "";
+        var s_img   = entry["img"];
+        var s_title = entry["title"] ? entry["title"] : "";
+        var s_url   = entry["url_prefix"].length > 0 ? entry["url_prefix"] + escape(this.href) : this.href;
+
+        text += '<a href="' + s_url + '"><img src="' + s_img + '" title="' + s_title + '" alt="' + s_alt + '"></a><br />';
+    }
+    text += '<a href="https://www.polytechnique.org/Xorg/Goodies">Plus de bonus</a> ...</div>';
+
+    var title = node.title ? node.title : goodies.default_title;
+
+    $(node)
+        .mouseover(
+            function() {
+                if (__goodies_active) {
+                    return overlib(text, CAPTION, title, CLOSETEXT, 'Fermer', DELAY, 800, STICKY, WIDTH, 150);
+                }
+            }
+        )
+        .mouseout(nd);
 }
 
 // }}}
 // {{{ 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 <body onload="javascript:auto_links()">
- */
 function auto_links() {
-    nodes = document.getElementsByTagName('a');
-    fqdn = document.URL;
-    fqdn = fqdn.replace(/^https?:\/\/([^\/]*)\/.*$/,'$1');
-    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.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; };
-       }
-    }
+    url  = document.URL;
+    fqdn = url.replace(/^https?:\/\/([^\/]*)\/.*$/,'$1');
+    light = (url.indexOf('display=light') > url.indexOf('?'));
+
+    $("a,link").each(
+        function(i) {
+            node = $(this);
+            href =  this.href;
+            if(!href || node.hasClass('xdx')
+               || href.indexOf('mailto:') > -1 || href.indexOf('javascript:') > -1) {
+                return;
+            }
+            if ((href.indexOf(fqdn) < 0 && this.className.indexOf('popup') < 0) || node.hasClass('popup')) {
+                node.click(function () { window.open(this.href); return false; });
+            }
+            if (href.indexOf(fqdn) > -1 && light) {
+                href = href.replace(/([^\#\?]*)\??([^\#]*)(\#.*)?/, "$1?display=light&$2$3");
+                this.href = href;
+            }
+            rss  = href.indexOf('rss') > -1;
+            ical = href.indexOf('ical') > -1;
+            if (rss || ical) {
+                if (href.indexOf('http') < 0) {
+                    href = 'http://' + fqdn + '/' + href;
+                }
+            }
+            if (this.nodeName.toLowerCase() == 'a') {
+                if (rss && href.indexOf('prefs/rss') < 0 &&  (href.indexOf('xml') > -1 || href.indexOf('hash'))) {
+                    goodiesPopup(this, __goodies_rss);
+                } else if (ical) {
+                    goodiesPopup(this, __goodies_ical);
+                }
+            }
+            if(matches = (/^popup_([0-9]*)x([0-9]*)$/).exec(this.className)) {
+                var w = matches[1], h = matches[2];
+                node.click(function() { return popWin(this, w, h); });
+            }
+        }
+    );
+    $('.popup2').click(function() { return popWin(this, 840, 600); });
+    $('.popup3').click(function() { return popWin(this, 640, 800); });
 }
 
+
 // }}}
 
+
 /***************************************************************************
- * The real OnLoad
+ * Password check
  */
 
-// {{{ function pa_onload
+// {{{ function checkPassword
 
-function pa_onload() {
-    auto_links();
+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
+ */
+
+$(document).ready(auto_links);
+
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: