roojs-ui.js
[roojs1] / roojs-bootstrap-debug.js
index bb80db7..98ab829 100644 (file)
@@ -26741,33 +26741,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");
-        }
-    }
-}
-
 /**
  * @class Roo.htmleditor.KeyEnter
  * Handle Enter press..
@@ -29313,12 +29286,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;