﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2844	Make <APPLET> tag act like <EMBED> or <OBJECT>	fredlefred		"It's a very small change in code (i made it in 5 min in packed javascript...).

It's needed to make possible to insert, for exemple, geogebra applet in fckeditor.

in : _source/internals/fck.js:
replace :


{{{
    sTags += sTags.length > 0 ? '|ABBR|XML|EMBED|OBJECT' : 'ABBR|XML|EMBED|OBJECT' ;

}}}


by :


{{{
    sTags += sTags.length > 0 ? '|ABBR|XML|EMBED|OBJECT|APPLET' : 'ABBR|XML|EMBED|OBJECT|APPLET' ;

}}}


in : _source/internals/fcklistslib.js:
replace :


{{{
    StyleObjectElements : { img:1,hr:1,li:1,table:1,tr:1,td:1,embed:1,object:1,ol:1,ul:1 },

}}}


by :


{{{
    StyleObjectElements : { img:1,hr:1,li:1,table:1,tr:1,td:1,embed:1,object:1,applet:1,ol:1,ul:1 },

}}}



in : _source/internals/fckdocumentprocessor.js
after :


{{{
    processElementsByName( 'embed', doc );

}}}


add :


{{{
    processElementsByName( 'applet', doc );
}}}

That's all folk's !"	Bug	closed	Normal		Core : Output Data	FCKeditor 2.6.4 Beta	invalid	HasPatch	
