Skip to content
gramos edited this page Sep 12, 2010 · 5 revisions

h2 FCKeditor on Rails

This can now be used as a plugin with both Engines and appable_plugins in Rails 1.2.

Q: What is it?
A: A Rails like way to use the FCKeditor in a Rails app, it basically works just like the normal helpers.

It supports the “default” upload interface, I’ve thought about mcpuk support
but since I’m not even using this in any projects currently I don’t have the
need or the time to implement all that mcpuk does. Maybe one of these days.

Sample usage:


<%= fckeditor(:object, :param, 
	{:width => '600px', :height => '500px'}, # fck options
	{:class => 'fancy'} # html options
) %>
</pre>

Basic install:


./script/plugin install git://github.com/UnderpantsGnome/fckeditor_on_rails.git
</pre>	
Drop a current copy of FCKeditor into public/fckeditor and setup whichever method below you are using

Install steps for AppablePlugins

appable_plugins info

Required plugins (in proper load order) for using with the appable_plugins:


loaded_plugins 
plugin_dependencies 
plugin_routing 
appable_plugins 
fckeditor_on_rails
</pre>

Install steps for RailsEngines

Rails Engines info

Required plugins (in proper load order) for using with Engines:


engines
fckeditor_on_rails
</pre>

By default it attempts to copy a functional test into your project, if you don’t want it running the tests just remove test/functional/fckeditor_controller_test.rb

Uninstall:


./script/plugin remove fckeditor_on_rails
</pre>

This will also remove the installed functional test

Clone this wiki locally