-----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@xxxxxxxxxxxxxxxxxx Professional email: petithug@xxxxxxx 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@xxxxxxxx https://www.ietf.org/mailman/listinfo/ietf