2 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license
\r
8 var htmlFilterRules =
\r
12 $ : function( element )
\r
14 var realHtml = element.attributes._cke_realelement,
\r
15 realFragment = realHtml && new CKEDITOR.htmlParser.fragment.fromHtml( decodeURIComponent( realHtml ) ),
\r
16 realElement = realFragment && realFragment.children[ 0 ];
\r
20 // If we have width/height in the element, we must move it into
\r
21 // the real element.
\r
23 var style = element.attributes.style;
\r
27 // Get the width from the style.
\r
28 var match = /(?:^|\s)width\s*:\s*(\d+)/.exec( style ),
\r
29 width = match && match[1];
\r
31 // Get the height from the style.
\r
32 match = /(?:^|\s)height\s*:\s*(\d+)/.exec( style );
\r
33 var height = match && match[1];
\r
36 realElement.attributes.width = width;
\r
39 realElement.attributes.height = height;
\r
48 CKEDITOR.plugins.add( 'fakeobjects',
\r
50 requires : [ 'htmlwriter' ],
\r
52 afterInit : function( editor )
\r
54 var dataProcessor = editor.dataProcessor,
\r
55 htmlFilter = dataProcessor && dataProcessor.htmlFilter;
\r
58 htmlFilter.addRules( htmlFilterRules );
\r
63 CKEDITOR.editor.prototype.createFakeElement = function( realElement, className, realElementType, isResizable )
\r
65 var lang = this.lang.fakeobjects;
\r
68 'class' : className,
\r
69 src : CKEDITOR.getUrl( 'images/spacer.gif' ),
\r
70 _cke_realelement : encodeURIComponent( realElement.getOuterHtml() ),
\r
71 alt : lang[ realElementType ] || lang.unknown
\r
73 if ( realElementType )
\r
74 attributes._cke_real_element_type = realElementType;
\r
76 attributes._cke_resizable = isResizable;
\r
78 return this.document.createElement( 'img', { attributes : attributes } );
\r
81 CKEDITOR.editor.prototype.createFakeParserElement = function( realElement, className, realElementType, isResizable )
\r
83 var writer = new CKEDITOR.htmlParser.basicWriter();
\r
85 realElement.writeHtml( writer );
\r
87 var html = writer.getHtml();
\r
88 var lang = this.lang.fakeobjects;
\r
92 'class' : className,
\r
93 src : CKEDITOR.getUrl( 'images/spacer.gif' ),
\r
94 _cke_realelement : encodeURIComponent( html ),
\r
95 alt : lang[ realElementType ] || lang.unknown
\r
98 if ( realElementType )
\r
99 attributes._cke_real_element_type = realElementType;
\r
102 attributes._cke_resizable = isResizable;
\r
104 return new CKEDITOR.htmlParser.element( 'img', attributes );
\r
107 CKEDITOR.editor.prototype.restoreRealElement = function( fakeElement )
\r
109 var html = decodeURIComponent( fakeElement.getAttribute( '_cke_realelement' ) );
\r
110 return CKEDITOR.dom.element.createFromHtml( html, this.document );
\r