ietf
[Top] [All Lists]

Agenda for IETF 81 not available

2011-06-24 10:09:03
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

According to the IETF web site, the preliminary agenda for IETF 81 should have
been published yesterday, but is still not available.

Something similar happened for the previous IETF meeting, so I wrote a
Greasemonkey script that fixes the dates in the IETF web site so they match 
reality:


// ==UserScript==
// @name           fix-ietf
// @namespace      http://shalmaneser.org/fix-ietf
// @description    Align IETF meeting important dates with reality
// @include        http://www.ietf.org/meeting/cutoff-dates-*
// ==/UserScript==
var days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday",
"Saturday" ];
var e = document.getElementsByTagName('strong');
for (var i = e.length -1; i >= 0; i--) {
        if (e[i].nextSibling !== null &&
e[i].nextSibling.nodeValue.indexOf('Preliminary agenda') !== -1) {
                var d = new Date(e[i].childNodes[0].nodeValue.slice(0, 10));
                d.setTime(d.getTime() + 5 * 86400000);
                e[i].childNodes[0].nodeValue = d.getFullYear() + "-" + 
(d.getMonth() < 9 ? "0"
: "") + (d.getMonth() + 1) + "-" + d.getDate() + " (" + days[d.getDay()] + "):";
        }
}

- -- 
Marc Petit-Huguenin
Personal email: marc(_at_)petit-huguenin(_dot_)org
Professional email: petithug(_at_)acm(_dot_)org
Blog: http://blog.marc.petit-huguenin.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk4EqFUACgkQ9RoMZyVa61d2zQCeITfOgnwB3GGRksdvp5LWU3ie
ffIAnjFBMAY/09WIb+fyxpxOcKflS1/v
=u6vZ
-----END PGP SIGNATURE-----
_______________________________________________
Ietf mailing list
Ietf(_at_)ietf(_dot_)org
https://www.ietf.org/mailman/listinfo/ietf

<Prev in Thread] Current Thread [Next in Thread>
  • Agenda for IETF 81 not available, Marc Petit-Huguenin <=