Comments on: Configuring TinyMCE SpellChecker with rails application /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/ Its all about Ruby On Rails Thu, 14 Mar 2013 06:19:42 +0000 hourly 1 #/?v= By: qwerty /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/comment-page-1/#comment-34116 qwerty Tue, 10 Jan 2012 14:56:45 +0000 /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/#comment-34116 qwerty.qwerty.qwerty qwerty.qwerty.qwerty

]]>
By: kevin /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/comment-page-1/#comment-3775 kevin Sat, 07 Aug 2010 06:11:06 +0000 /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/#comment-3775 you'll want to make sure the lang attribute is sanitized as well, obviously you’ll want to make sure the lang attribute is sanitized as well, obviously

]]>
By: kevin /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/comment-page-1/#comment-3774 kevin Sat, 07 Aug 2010 06:09:38 +0000 /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/#comment-3774 you shouldn't use spelling.rb, as it will open your site to hacking (very easily). make a tempfile instead: tf = Tempfile.new("aspell_buf") # adds pid tf.write(spell_check_text) tf.seek 0 spell_check_response = `cat #{tf.path} | aspell -a -l #{lang}` tf.close! you shouldn’t use spelling.rb, as it will open your site to hacking (very easily).

make a tempfile instead:
tf = Tempfile.new(“aspell_buf”) # adds pid
tf.write(spell_check_text)
tf.seek 0
spell_check_response = `cat #{tf.path} | aspell -a -l #{lang}`
tf.close!

]]>
By: Phil Ayres /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/comment-page-1/#comment-1289 Phil Ayres Thu, 28 Jan 2010 17:16:11 +0000 /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/#comment-1289 Thanks for this. It worked really well for me when I added it to my current tinyMCE configuration. Thanks for this. It worked really well for me when I added it to my current tinyMCE configuration.

]]>
By: Akhil Bansal /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/comment-page-1/#comment-890 Akhil Bansal Thu, 04 Dec 2008 05:31:29 +0000 /2008/08/08/configuring-tinymce-spellchecker-with-rails-application/#comment-890 This code is now included in the latest version of tiny_mce plugin. http://github.com/kete/tiny_mce/tree This code is now included in the latest version of tiny_mce plugin.

http://github.com/kete/tiny_mce/tree

]]>