Identify JavaScript as MIT/Expat for LibreJS

This commit introduces LibreJS compatible `@license' blocks as per
https://www.gnu.org/software/librejs/free-your-javascript.html

The magnet URI can be opened in a BitTorrent client to retrieve a copy
of the MIT/Expat license. Section 3.2.2.1 from the above link has a
list of magnet URIs for various free software licenses.
This commit is contained in:
Mark Dain 2021-04-03 14:03:08 +01:00 committed by Drew DeVault
parent 5cef0aaff2
commit e64550207c
3 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,5 @@
// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
const textarea = document.querySelector("textarea.body");
if (window.location.pathname.endsWith("/reply")) {
// Auto-focus body and scroll to bottom
@ -206,3 +208,5 @@ function formatSI(num) {
}
return signPrefix + parseFloat(sig.toPrecision(3)) + PREFIXES[exponent];
}
// @license-end

View File

@ -1,3 +1,5 @@
// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
const check_all = document.getElementById("action-checkbox-all");
if (check_all) {
check_all.style.display = "inherit";
@ -8,3 +10,5 @@ if (check_all) {
}
});
}
// @license-end

View File

@ -1,6 +1,10 @@
// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
const print = document.getElementById("print");
print.style.display = "inherit";
print.addEventListener("click", e => {
e.preventDefault();
window.print();
});
// @license-end