Sha256: 83cf982aca855fe452906c3b7e1b6003c04eca4e6d1877c440c85b45efed07dd

Contents?: true

Size: 1.1 KB

Versions: 10

Compression:

Stored size: 1.1 KB

Contents

# Include hook code here
require 'fckeditor'
require 'fckeditor_version'
require 'fckeditor_file_utils'

FckeditorFileUtils.check_and_install

# make plugin controller available to app
config.load_paths += %W(#{Fckeditor::PLUGIN_CONTROLLER_PATH} #{Fckeditor::PLUGIN_HELPER_PATH})

Rails::Initializer.run(:set_load_path, config)

ActionView::Base.send(:include, Fckeditor::Helper)

# require the controller
require 'fckeditor_controller'

# add a route for spellcheck
class ActionController::Routing::RouteSet
  unless (instance_methods.include?('draw_with_fckeditor'))
    class_eval <<-"end_eval", __FILE__, __LINE__  
      alias draw_without_fckeditor draw
      def draw_with_fckeditor
        draw_without_fckeditor do |map|
          map.connect 'fckeditor/check_spelling', :controller => 'fckeditor', :action => 'check_spelling'
          map.connect 'fckeditor/command', :controller => 'fckeditor', :action => 'command'
          map.connect 'fckeditor/upload', :controller => 'fckeditor', :action => 'upload'
          yield map
        end
      end
      alias draw draw_with_fckeditor
    end_eval
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
typo-5.0.3.98.1 vendor/plugins/fckeditor/init.rb
typo-5.0.3.98 vendor/plugins/fckeditor/init.rb
typo-5.1.1 vendor/plugins/fckeditor/init.rb
typo-5.1.2 vendor/plugins/fckeditor/init.rb
typo-5.1.3 vendor/plugins/fckeditor/init.rb
typo-5.1 vendor/plugins/fckeditor/init.rb
typo-5.1.98 vendor/plugins/fckeditor/init.rb
typo-5.2.98 vendor/plugins/fckeditor/init.rb
typo-5.2 vendor/plugins/fckeditor/init.rb
typo-5.3 vendor/plugins/fckeditor/init.rb