From af07161f05d5ae175ed8b70345df417ce4961344 Mon Sep 17 00:00:00 2001 From: Wookey Date: Thu, 11 Sep 2014 07:40:58 +0100 Subject: remove internal copies of jquery, jquiery-forms, jquery-ui+themes, django-feincms and codemirror --- media/CodeMirror-0.62/js/parsehtmlmixed.js | 74 ------------------------------ 1 file changed, 74 deletions(-) delete mode 100644 media/CodeMirror-0.62/js/parsehtmlmixed.js (limited to 'media/CodeMirror-0.62/js/parsehtmlmixed.js') diff --git a/media/CodeMirror-0.62/js/parsehtmlmixed.js b/media/CodeMirror-0.62/js/parsehtmlmixed.js deleted file mode 100644 index ed1a608..0000000 --- a/media/CodeMirror-0.62/js/parsehtmlmixed.js +++ /dev/null @@ -1,74 +0,0 @@ -var HTMLMixedParser = Editor.Parser = (function() { - if (!(CSSParser && JSParser && XMLParser)) - throw new Error("CSS, JS, and XML parsers must be loaded for HTML mixed mode to work."); - XMLParser.configure({useHTMLKludges: true}); - - function parseMixed(stream) { - var htmlParser = XMLParser.make(stream), localParser = null, inTag = false; - var iter = {next: top, copy: copy}; - - function top() { - var token = htmlParser.next(); - if (token.content == "<") - inTag = true; - else if (token.style == "xml-tagname" && inTag === true) - inTag = token.content.toLowerCase(); - else if (token.content == ">") { - if (inTag == "script") - iter.next = local(JSParser, "