From 72983121e68289a7497927417e52a8ec5f16aa7b Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Thu, 21 May 2020 05:15:49 +0200 Subject: Drop static content. JQuery, Bootstrap etc. are not maintainable in this repository, just like one should avoid embedding copies of other project in packaging work. We rely on the distro-provided variants instead: $ apt install fonts-font-awesome libjs-bootstrap4 libjs-jquery Ikwiki doesn't copy symlinks for security reasons, so unfortunately deploy one's own sandbox wiki is less easy now. Instructions will follow shortly. Also, port the templates to Bootstrap 4. --- static/js/mathml.js | 70 ----------------------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 static/js/mathml.js (limited to 'static/js/mathml.js') diff --git a/static/js/mathml.js b/static/js/mathml.js deleted file mode 100644 index a72c2e5..0000000 --- a/static/js/mathml.js +++ /dev/null @@ -1,70 +0,0 @@ -/* -March 19, 2004 MathHTML (c) Peter Jipsen http://www.chapman.edu/~jipsen -Released under the GNU General Public License version 2 or later. -See the GNU General Public License (at http://www.gnu.org/copyleft/gpl.html) -for more details. -*/ - -function convertMath(node) {// for Gecko - if (node.nodeType==1) { - var newnode = - document.createElementNS("http://www.w3.org/1998/Math/MathML", - node.nodeName.toLowerCase()); - for(var i=0; i < node.attributes.length; i++) - newnode.setAttribute(node.attributes[i].nodeName, - node.attributes[i].nodeValue); - for (var i=0; i"); - document.write(""); -} -if(typeof window.addEventListener != 'undefined'){ - window.addEventListener('load', convert, false); -} -if(typeof window.attachEvent != 'undefined') { - window.attachEvent('onload', convert); -} -- cgit v1.2.3