This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Parse a date/time in RFC822 format and return an xs:dateTime value. | |
* | |
* If no input string is supplied, or the string is not a valid RFC822 date/time | |
* value, return the empty sequence. | |
* | |
* Background: | |
* | |
* The original email standard, RFC822, specifies the format of the Date header. | |
* See https://www.w3.org/Protocols/rfc822/#z28 for details. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){ | |
var ac = function(cl) { | |
var dl = document.getElementsByClassName(cl); | |
for (var i = 0; i < dl.length; i++) { | |
dl[i].classList.add('ksu-no-print-url'); | |
} | |
}; | |
ac('ksu-main-content'); | |
ac('ksu-sidebar-secondary'); | |
})(); |