My goal is to integrate this extension in a wiki application other than mediawiki, but that conforms to MediaWiki syntax. I was easily able to add this extension to my edit page which was just a standard textarea. The problem is that the existing wiki markup is not rendered properly, nor am I able to toggle between WYSIWIG and Wiki code mode. After a little digging, it appears that a mediawiki rendering page (index.php?) is called via Ajax to perform both of these operations.
I would like to mimic this functionality using the technology the wiki is written in (not php). For simplicity sake, I'll ask this in terms of static HTML pages. If I wanted to write an HTML page to mimic this functionality, what would it look like? Would it be called via POST or GET? What forms / fields is the FCK code expecting?
I know this may seem a bit off topic, but I simply love the functionality of the FCK+MediaWiki extension and would like to bring this to a different community.
Thanks,
Tyler
I would like to mimic this functionality using the technology the wiki is written in (not php). For simplicity sake, I'll ask this in terms of static HTML pages. If I wanted to write an HTML page to mimic this functionality, what would it look like? Would it be called via POST or GET? What forms / fields is the FCK code expecting?
I know this may seem a bit off topic, but I simply love the functionality of the FCK+MediaWiki extension and would like to bring this to a different community.
Thanks,
Tyler

Re: MediaWiki+FCK implementation details
--
Antti Salonen
Quosis Oy
Re: MediaWiki+FCK implementation details
MediawWiki plugin is more complicated because due to it's sophisticated wiki syntax, we were unable to perform Wiki -> HTML transformation using pure JavaScript.
That's why we have used Ajax calls for that (it's up to you which way you choose).
In fact, simple ajax call wasn't enough, we had to also modify some of the MediaWiki classes so that it returned simplified/modified HTML to make HTML -> Wiki transformation easier.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: MediaWiki+FCK implementation details
http://www.mediawiki.org/wiki/Extension ... d_Wikia%29
Re: MediaWiki+FCK implementation details
Thanks. Actually we ended up integrating just basic fckeditor to our wiki for now, and doing html->wiki transformation when saving (user can only edit richtext, not wiki markup). We might later allow wiki markup editing with data processor / ajax html<->wiki transformation.
--
Antti Salonen
Quosis Oy
Re: MediaWiki+FCK implementation details
http://apex.oracle.comhttp://www.fckeditor.net/whosusing
Re: MediaWiki+FCK implementation details