roojs-ui.js
[roojs1] / roojs-ui-debug.js
index 8e4d04d..fdf8b12 100644 (file)
@@ -21862,33 +21862,6 @@ Roo.apply(Roo.htmleditor.FilterBlock.prototype,
         
     
 });
-/**
- * @class Roo.htmleditor.FilterAttributes
- * clean attributes and  styles including http:// etc.. in attribute
- * @constructor
-* Run a new Attribute Filter
-* @param {Object} config Configuration options
- */
-Roo.htmleditor.FilterFileWarning = function(cfg)
-{
-    
-    var atag = cfg.node.getElementsByTagName('a');
-    for(var i =0; i < atags.length;i++) {
-        var str = '' + atags.item(i).getAttribute('href');
-        if (str.match(/^file:/)) {
-            throw new Exception ("got file url");
-        }
-    }
-    // less likely
-    atag = cfg.node.getElementsByTagName('img');
-    for(var i =0; i < atags.length;i++) {
-        var str = '' + atags.item(i).getAttribute('src');
-        if (str.match(/^file:/)) {
-            throw new Exception ("got file url");
-        }
-    }
-}
-
 /***
  * This is based loosely on tinymce 
  * @class Roo.htmleditor.TidySerializer
@@ -25699,12 +25672,7 @@ Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
         if (this.enableBlocks) {
             Roo.htmleditor.Block.initAll(this.doc.body);
         }
-        
-        try {
-            new Roo.htmleditor.FilterFileWarning({ node : d });
-        } catch(e) {
-            Roo.MessageBox.alert("Invalid URLS in content", "The pasted Content contains file:// URLS - you probably want to check all the links in this file");
-        }
+         
         
         e.preventDefault();
         return false;