From b033597ada02ef045bc9fbdb2237f81935b73e47 Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 11 Nov 2019 21:30:38 +0100 Subject: sse notifications --- view/php/theme_init.php | 1 + 1 file changed, 1 insertion(+) (limited to 'view/php') diff --git a/view/php/theme_init.php b/view/php/theme_init.php index d683a3b58..d47325b77 100644 --- a/view/php/theme_init.php +++ b/view/php/theme_init.php @@ -37,6 +37,7 @@ head_add_js('/library/colorbox/jquery.colorbox-min.js'); head_add_js('/library/jquery.AreYouSure/jquery.are-you-sure.js'); head_add_js('/library/tableofcontents/jquery.toc.js'); head_add_js('/vendor/desandro/imagesloaded/imagesloaded.pkgd.min.js'); + /** * Those who require this feature will know what to do with it. * Those who don't, won't. -- cgit v1.2.3 From 3e7d3a20af328217baf2caa46dff6780a6ebf62c Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 31 Jul 2020 09:37:59 +0000 Subject: css fix --- view/php/default.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/php') diff --git a/view/php/default.php b/view/php/default.php index 388c94382..df9b02c4e 100644 --- a/view/php/default.php +++ b/view/php/default.php @@ -17,7 +17,7 @@
- + -- cgit v1.2.3 From c4c47f777724937746c99c064e65f52723443e59 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 20 Aug 2020 22:47:33 +0200 Subject: first cut on implementing additional encryption with the SJCL library. aes only and no backward compatibility. --- view/php/theme_init.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'view/php') diff --git a/view/php/theme_init.php b/view/php/theme_init.php index d47325b77..d7cf0a4e8 100644 --- a/view/php/theme_init.php +++ b/view/php/theme_init.php @@ -27,6 +27,8 @@ head_add_js('/library/cryptojs/rollups/aes.js'); head_add_js('/library/cryptojs/rollups/rabbit.js'); head_add_js('/library/cryptojs/rollups/tripledes.js'); +head_add_js('/library/sjcl/sjcl.js'); + head_add_js('acl.js'); head_add_js('webtoolkit.base64.js'); head_add_js('main.js'); -- cgit v1.2.3 From 4e0fc81e5dfaad3c3ed47a02df4589f5b25a88be Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 22 Aug 2020 22:14:29 +0200 Subject: move cryptojs to addon --- view/php/theme_init.php | 4 ---- 1 file changed, 4 deletions(-) (limited to 'view/php') diff --git a/view/php/theme_init.php b/view/php/theme_init.php index d7cf0a4e8..a0118fa71 100644 --- a/view/php/theme_init.php +++ b/view/php/theme_init.php @@ -22,10 +22,6 @@ head_add_js('/library/jquery.timeago.js'); head_add_js('/library/readmore.js/readmore.js'); head_add_js('/library/sticky-kit/sticky-kit.min.js'); head_add_js('/library/jgrowl/jquery.jgrowl.min.js'); -head_add_js('/library/cryptojs/components/core-min.js'); -head_add_js('/library/cryptojs/rollups/aes.js'); -head_add_js('/library/cryptojs/rollups/rabbit.js'); -head_add_js('/library/cryptojs/rollups/tripledes.js'); head_add_js('/library/sjcl/sjcl.js'); -- cgit v1.2.3