mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 17:37:51 +01:00
add a license notice
This commit is contained in:
parent
73efab6556
commit
7b13bc7c29
1 changed files with 4 additions and 2 deletions
|
@ -8,6 +8,7 @@ const {
|
||||||
initlog,
|
initlog,
|
||||||
init,
|
init,
|
||||||
} = require("../libpoketube-initsys.js");
|
} = require("../libpoketube-initsys.js");
|
||||||
|
|
||||||
const {
|
const {
|
||||||
IsJsonString,
|
IsJsonString,
|
||||||
convert,
|
convert,
|
||||||
|
@ -19,6 +20,7 @@ const {
|
||||||
} = require("../ptutils/libpt-coreutils.js");
|
} = require("../ptutils/libpt-coreutils.js");
|
||||||
|
|
||||||
const sha384 = modules.hash;
|
const sha384 = modules.hash;
|
||||||
|
const notice = "/* the code is Licensed in gpl-3.0-or-later. This program comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. See the GNU General Public License for more detailsYou should have received a copy of the GNU General Public Licensealong with this program. If not, see <https://www.gnu.org/licenses/>. - add the param nomin to view source code. (eg poketube.fun/css/poketube.css?nomin=true) */"
|
||||||
|
|
||||||
module.exports = function (app, config, renderTemplate) {
|
module.exports = function (app, config, renderTemplate) {
|
||||||
var html_location = "./css/";
|
var html_location = "./css/";
|
||||||
|
@ -77,13 +79,13 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (req.params.id.endsWith(".css")) {
|
if (req.params.id.endsWith(".css") && !req.query.nomin) {
|
||||||
// Minimize the CSS file
|
// Minimize the CSS file
|
||||||
const css = fs.readFileSync(filePath, "utf8");
|
const css = fs.readFileSync(filePath, "utf8");
|
||||||
const minimizedCss = new CleanCSS().minify(css).styles;
|
const minimizedCss = new CleanCSS().minify(css).styles;
|
||||||
// Serve the minimized CSS file
|
// Serve the minimized CSS file
|
||||||
res.header("Content-Type", "text/css");
|
res.header("Content-Type", "text/css");
|
||||||
res.send(minimizedCss);
|
res.send(notice + " " + minimizedCss);
|
||||||
} else {
|
} else {
|
||||||
// Serve the original file
|
// Serve the original file
|
||||||
res.sendFile(req.params.id, { root: html_location });
|
res.sendFile(req.params.id, { root: html_location });
|
||||||
|
|
Loading…
Reference in a new issue