Hide empty pages
[platal.git] / htdocs / javascript / xorg.js
CommitLineData
0337d704 1/***************************************************************************
5ddeb07c 2 * Copyright (C) 2003-2007 Polytechnique.org *
0337d704 3 * http://opensource.polytechnique.org/ *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the Free Software *
17 * Foundation, Inc., *
18 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
19 ***************************************************************************/
20
9f449375 21var is_netscape = (navigator.appName.substring(0,8) == "Netscape");
22var is_IE = (navigator.appName.substring(0,9) == "Microsoft");
0337d704 23
24// {{{ function getNow()
25
0337d704 26function getNow() {
9f449375 27 dt = new Date();
28 dy = dt.getDay();
29 mh = dt.getMonth();
30 wd = dt.getDate();
31 yr = dt.getYear();
0337d704 32 if (yr<1000) yr += 1900;
9f449375 33 hr = dt.getHours();
34 mi = dt.getMinutes();
35
36 time = (mi < 10) ? hr +':0'+mi : hr+':'+mi;
37 days = ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'];
38 months = ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet',
39 'août', 'septembre', 'octobre', 'novembre', 'décembre']
40
41 return days[dy]+' '+wd+' '+months[mh]+' '+yr+'<br />'+time;
42}
43
44// }}}
45// {{{ Events
46
47function eventClosure(obj, methodName) {
48 return (function(e) {
49 e = e || window.event;
50 return obj[methodName](e);
51 });
52}
53
54function attachEvent(obj, evt, f, useCapture) {
55 if (!useCapture) useCapture = false;
56
57 if (obj.addEventListener) {
58 obj.addEventListener(evt, f, useCapture);
59 return true;
60 } else if (obj.attachEvent) {
61 return obj.attachEvent("on"+evt, f);
4d8e2051 62 }
63 return false;
0337d704 64}
65
66// }}}
7e6495d4 67// {{{ dynpost()
68
69function dynpost(action, values)
70{
71 var body = document.getElementsByTagName('body')[0];
72
73 var form = document.createElement('form');
74 form.action = action;
75 form.method = 'post';
76
77 body.appendChild(form);
78
79 for (var k in values) {
80 var input = document.createElement('input');
81 input.type = 'hidden';
82 input.name = k;
83 input.value = values[k];
84 form.appendChild(input);
85 }
86
87 form.submit();
88}
89
d6610b77 90function dynpostkv(action, k, v)
91{
bee33d93 92 var dict = {};
93 dict[k] = v;
94 dynpost(action, dict);
d6610b77 95}
96
7e6495d4 97// }}}
0337d704 98
99/***************************************************************************
100 * POPUP THINGS
101 */
102
103// {{{ function popWin()
104
0337d704 105function popWin(theNode,w,h) {
106 window.open(theNode.href, '_blank',
107 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+w+',height='+h);
108}
109
110// }}}
111// {{{ function auto_links()
112
0337d704 113function auto_links() {
114 nodes = document.getElementsByTagName('a');
115 fqdn = document.URL;
116 fqdn = fqdn.replace(/^https?:\/\/([^\/]*)\/.*$/,'$1');
117 for(var i=0; i<nodes.length; i++) {
118 node = nodes[i];
119 if(!node.href || node.className == 'xdx' || node.href.indexOf('mailto:') > -1 || node.href.indexOf('javascript:')>-1) continue;
120 if(node.href.indexOf(fqdn)<0 || node.className == 'popup') {
121 node.onclick = function () { window.open(this.href); return false; };
122 }
123 if(node.className == 'popup2') {
4d8e2051 124 node.onclick = function () { popWin(this,840,600); return false; };
0337d704 125 }
126 if(matches = (/^popup_([0-9]*)x([0-9]*)$/).exec(node.className)) {
127 var w = matches[1], h = matches[2];
128 node.onclick = function () { popWin(this,w,h); return false; };
129 }
130 }
131}
132
133// }}}
134
135/***************************************************************************
136 * The real OnLoad
137 */
138
139// {{{ function pa_onload
140
4d8e2051 141if (!attachEvent(window, 'load', auto_links)) {
142 window.onload = auto_links;
143}
0337d704 144
145// }}}
146