Hi Everyone....
Wondering if there is any update on when Beta 2 will be released. I heard first week of September awhile ago, but I haven't heard any updates in a while.
I would like to use a cross browser WYSIWYG editor and FCKEditor seems to have the potential of being the best one out there. I was about to start adding functionality/fixing bugs in the current Beta 1, but I don't want to duplicate effort if Beta 2 is a week away.
Thanks!
Wondering if there is any update on when Beta 2 will be released. I heard first week of September awhile ago, but I haven't heard any updates in a while.
I would like to use a cross browser WYSIWYG editor and FCKEditor seems to have the potential of being the best one out there. I was about to start adding functionality/fixing bugs in the current Beta 1, but I don't want to duplicate effort if Beta 2 is a week away.
Thanks!
RE: Any word on Beta 2's release?
RE: Any word on Beta 2's release?
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: Any word on Beta 2's release?
"Oh kind developer who has created amazing software and make little to no money off of it, can you please see fit when and if the mood strikes you to consider that I would very much appreciate the addition of a full image manager in the next version of your wonderful software. I'm happy to help make this happen, just let me know how I can help out."
Right?
RE: Any word on Beta 2's release?
Be constructive,instead.
RE: Any word on Beta 2's release?
I for one am VERY happy with the results that FCKeditor has resulted in. Terrific job Fredo!
RE: Any word on Beta 2's release?
Always wanted to say something of the kind.
RE: Any word on Beta 2's release?
I hope I'll be able to publish the new beta next week... stay tuned.
Regards,
FredCK
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: Any word on Beta 2's release?
While we're talking new versions... will v.2.0 truly support XHTML?
RE: Any word on Beta 2's release?
I hope the next Beta includes an easier mechanism for others in the community to help with its development. There have already been some very impressive contributions (i have seen two image browsers, both somewhere in the forum...). I for one would love to get involved, but can't for two reasons. Firstly the developer docs are a little thin (and the compilation cryptic!). And secondly there doesnt seem to be any coordinated effort for what is NOT being developed (so someone could volunteer, for instance).
FredCK - you must be very proud that you are now 7th most active on SourceForge, and that is because you have made (and are making) a quality tool. I think everyone is realising that v2.0 has the potential to lead the whole market. I dont know of another *good* cross platform rte. ANd that goes especially for open source.
Good luck in pushing Beta 2!
Rhys
RE: Any word on Beta 2's release?
I'd be interested in porting it to something that would work with konquerer or safari, if that's even possible. Of course, I have no idea how khtml engine runs, but hey, they gotta have _some_ equiv, right?
Right?...(xd goes googl'n)
Dev docs *would* rock, and I'd think SF would have all the tools for group dev, considering. Only question is: Does Mr. CK really want this to be a group deal? Creates a lot of 'organization' work, which is like an anathema to some.
eh. I'll second or tenth the 'ROCKING PRODUCT' comments. ixnay the egativenay
RE: Any word on Beta 2's release?
I just have to add on more here , FCKeditor is by far the BEST editor around.
I hope we can get the Image manager part solved so we can manage images in the best way possible. See my mod witch uses the image manager from htmlArea , this manager works in gecko browsers alone , but in my mod it only works in IE. I'm quite new to advanced javascript and are therefor unable to find whats wrong. (will be buying a book in this soon ) If anyone sees the error in my script and fixes it please let me know . to see the mod in action and download it please go to http://www.prosjektweb.net/sider/hjem.php?KATID=187 . The best thing is if Fredrico could use this as default manager.
RE: Any word on Beta 2's release?
Nice!!!
Fred, I for one would vote to have this integrated!
RE: Any word on Beta 2's release?
Im using this Image Manager for both - IE + Mozilla - without any problems.
But I did not integrate it with fckeditor 2. On one hand there is no need to integrate it, on the other hand Im still using fckeditor 1.6
Basically, Im using the example of the image manager. There is an IFrame in my website backend in order to use images in any backend application that might need image urls. The IFrames textbox receives the images url from the image manager (as shown in the example). Now, I can use it anywhere I want.
In order to insert an image into the fckeditor, I added a button, that copies the image url from the IFrame into the editor.
works just fine for me
RE: Any word on Beta 2's release?
this is what i mean:
http://www.racon-clan.de/uploads/images ... nager2.jpg
if you like to give it a try, here is the code for the button:
fck_toolbaritems.js:
TBI.prototype.PasteImage = new TBButton("PasteImage" , lang["PasteImage"] , "pasteImage()" ,TBCMD_CUSTOM) ;
fck_actions.js:
function pasteImage() {
insertHtml(top.pictures.document.getElementById("file").value);
SetFocus() ;
}
('pictures' is the frames name, 'file' is the textboxs id)
as i said, this is for fckeditor 1.6. but it should work for fckeditor 2 as well, shouldnt it?