├── Rakefile ├── .gitignore ├── app ├── assets │ └── javascripts │ │ └── kindeditor.js ├── uploaders │ └── kindeditor │ │ ├── file_uploader.rb │ │ ├── flash_uploader.rb │ │ ├── image_uploader.rb │ │ ├── media_uploader.rb │ │ └── asset_uploader.rb └── controllers │ └── kindeditor │ └── assets_controller.rb ├── lib ├── rails_kindeditor │ ├── version.rb │ ├── formtastic.rb │ ├── simple_form.rb │ ├── active_record.rb │ ├── engine.rb │ └── helper.rb ├── generators │ └── rails_kindeditor │ │ ├── migration │ │ ├── templates │ │ │ ├── models │ │ │ │ ├── mongoid │ │ │ │ │ └── kindeditor │ │ │ │ │ │ ├── file.rb │ │ │ │ │ │ ├── flash.rb │ │ │ │ │ │ ├── image.rb │ │ │ │ │ │ ├── media.rb │ │ │ │ │ │ └── asset.rb │ │ │ │ └── active_record │ │ │ │ │ └── kindeditor │ │ │ │ │ ├── file.rb │ │ │ │ │ ├── flash.rb │ │ │ │ │ ├── image.rb │ │ │ │ │ ├── media.rb │ │ │ │ │ └── asset.rb │ │ │ └── migration │ │ │ │ └── migration.rb │ │ ├── USAGE │ │ └── migration_generator.rb │ │ └── install │ │ ├── USAGE │ │ ├── templates │ │ ├── load_kindeditor.coffee │ │ ├── application.js │ │ └── rails_kindeditor.rb │ │ └── install_generator.rb ├── tasks │ └── assets.rake └── rails_kindeditor.rb ├── screenshots ├── simple_mode.png └── rails_kindeditor.png ├── Gemfile ├── vendor └── assets │ └── javascripts │ └── kindeditor │ ├── themes │ ├── common │ │ ├── rm.gif │ │ ├── anchor.gif │ │ ├── blank.gif │ │ ├── flash.gif │ │ ├── loading.gif │ │ └── media.gif │ ├── qq │ │ ├── editor.gif │ │ └── qq.css │ ├── default │ │ ├── default.png │ │ └── background.png │ └── simple │ │ └── simple.css │ ├── plugins │ ├── emoticons │ │ ├── images │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 2.gif │ │ │ ├── 3.gif │ │ │ ├── 4.gif │ │ │ ├── 5.gif │ │ │ ├── 6.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ ├── 9.gif │ │ │ ├── 10.gif │ │ │ ├── 100.gif │ │ │ ├── 101.gif │ │ │ ├── 102.gif │ │ │ ├── 103.gif │ │ │ ├── 104.gif │ │ │ ├── 105.gif │ │ │ ├── 106.gif │ │ │ ├── 107.gif │ │ │ ├── 108.gif │ │ │ ├── 109.gif │ │ │ ├── 11.gif │ │ │ ├── 110.gif │ │ │ ├── 111.gif │ │ │ ├── 112.gif │ │ │ ├── 113.gif │ │ │ ├── 114.gif │ │ │ ├── 115.gif │ │ │ ├── 116.gif │ │ │ ├── 117.gif │ │ │ ├── 118.gif │ │ │ ├── 119.gif │ │ │ ├── 12.gif │ │ │ ├── 120.gif │ │ │ ├── 121.gif │ │ │ ├── 122.gif │ │ │ ├── 123.gif │ │ │ ├── 124.gif │ │ │ ├── 125.gif │ │ │ ├── 126.gif │ │ │ ├── 127.gif │ │ │ ├── 128.gif │ │ │ ├── 129.gif │ │ │ ├── 13.gif │ │ │ ├── 130.gif │ │ │ ├── 131.gif │ │ │ ├── 132.gif │ │ │ ├── 133.gif │ │ │ ├── 134.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 72.gif │ │ │ ├── 73.gif │ │ │ ├── 74.gif │ │ │ ├── 75.gif │ │ │ ├── 76.gif │ │ │ ├── 77.gif │ │ │ ├── 78.gif │ │ │ ├── 79.gif │ │ │ ├── 80.gif │ │ │ ├── 81.gif │ │ │ ├── 82.gif │ │ │ ├── 83.gif │ │ │ ├── 84.gif │ │ │ ├── 85.gif │ │ │ ├── 86.gif │ │ │ ├── 87.gif │ │ │ ├── 88.gif │ │ │ ├── 89.gif │ │ │ ├── 90.gif │ │ │ ├── 91.gif │ │ │ ├── 92.gif │ │ │ ├── 93.gif │ │ │ ├── 94.gif │ │ │ ├── 95.gif │ │ │ ├── 96.gif │ │ │ ├── 97.gif │ │ │ ├── 98.gif │ │ │ ├── 99.gif │ │ │ └── static.gif │ │ └── emoticons.js │ ├── image │ │ └── images │ │ │ ├── refresh.png │ │ │ ├── align_left.gif │ │ │ ├── align_top.gif │ │ │ └── align_right.gif │ ├── multiimage │ │ └── images │ │ │ ├── image.png │ │ │ ├── swfupload.swf │ │ │ ├── select-files-en.png │ │ │ └── select-files-zh-CN.png │ ├── filemanager │ │ ├── images │ │ │ ├── go-up.gif │ │ │ ├── file-16.gif │ │ │ ├── file-64.gif │ │ │ ├── folder-16.gif │ │ │ └── folder-64.gif │ │ └── filemanager.js │ ├── template │ │ ├── html │ │ │ ├── 1.html │ │ │ ├── 3.html │ │ │ └── 2.html │ │ └── template.js │ ├── code │ │ ├── prettify.css │ │ └── code.js │ ├── fixtoolbar │ │ └── fixtoolbar.js │ ├── pagebreak │ │ └── pagebreak.js │ ├── preview │ │ └── preview.js │ ├── clearhtml │ │ └── clearhtml.js │ ├── lineheight │ │ └── lineheight.js │ ├── baidumap │ │ ├── map.html │ │ ├── index.html │ │ └── baidumap.js │ ├── autoheight │ │ └── autoheight.js │ ├── plainpaste │ │ └── plainpaste.js │ ├── anchor │ │ └── anchor.js │ ├── wordpaste │ │ └── wordpaste.js │ ├── map │ │ ├── map.html │ │ └── map.js │ ├── quickformat │ │ └── quickformat.js │ ├── link │ │ └── link.js │ ├── insertfile │ │ └── insertfile.js │ ├── flash │ │ └── flash.js │ └── media │ │ └── media.js │ └── lang │ ├── zh-CN.js │ ├── zh-TW.js │ ├── ko.js │ ├── ar.js │ ├── en.js │ └── ru.js ├── config └── routes.rb └── rails_kindeditor.gemspec /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler' 2 | Bundler::GemHelper.install_tasks 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | *.DS_Store -------------------------------------------------------------------------------- /app/assets/javascripts/kindeditor.js: -------------------------------------------------------------------------------- 1 | //= require kindeditor/kindeditor.js 2 | -------------------------------------------------------------------------------- /lib/rails_kindeditor/version.rb: -------------------------------------------------------------------------------- 1 | module RailsKindeditor 2 | VERSION = "0.5.1" 3 | end 4 | -------------------------------------------------------------------------------- /screenshots/simple_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/screenshots/simple_mode.png -------------------------------------------------------------------------------- /screenshots/rails_kindeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/screenshots/rails_kindeditor.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "http://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem 'jquery-rails' 6 | gem 'carrierwave' 7 | gem 'mini_magick' 8 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/themes/common/rm.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/themes/qq/editor.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/themes/common/anchor.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/themes/common/blank.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/themes/common/flash.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/themes/common/loading.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/themes/common/media.gif -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | namespace :kindeditor do 3 | post "/upload" => "assets#create" 4 | get "/filemanager" => "assets#list" 5 | end 6 | end -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/themes/default/default.png -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/templates/models/mongoid/kindeditor/file.rb: -------------------------------------------------------------------------------- 1 | class Kindeditor::File < Kindeditor::Asset 2 | mount_uploader :asset, Kindeditor::FileUploader 3 | end -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/templates/models/mongoid/kindeditor/flash.rb: -------------------------------------------------------------------------------- 1 | class Kindeditor::Flash < Kindeditor::Asset 2 | mount_uploader :asset, Kindeditor::FlashUploader 3 | end -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/templates/models/mongoid/kindeditor/image.rb: -------------------------------------------------------------------------------- 1 | class Kindeditor::Image < Kindeditor::Asset 2 | mount_uploader :asset, Kindeditor::ImageUploader 3 | end -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/templates/models/mongoid/kindeditor/media.rb: -------------------------------------------------------------------------------- 1 | class Kindeditor::Media < Kindeditor::Asset 2 | mount_uploader :asset, Kindeditor::MediaUploader 3 | end -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/themes/default/background.png -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/templates/models/active_record/kindeditor/file.rb: -------------------------------------------------------------------------------- 1 | class Kindeditor::File < Kindeditor::Asset 2 | mount_uploader :asset, Kindeditor::FileUploader 3 | end -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/templates/models/active_record/kindeditor/flash.rb: -------------------------------------------------------------------------------- 1 | class Kindeditor::Flash < Kindeditor::Asset 2 | mount_uploader :asset, Kindeditor::FlashUploader 3 | end -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/templates/models/active_record/kindeditor/image.rb: -------------------------------------------------------------------------------- 1 | class Kindeditor::Image < Kindeditor::Asset 2 | mount_uploader :asset, Kindeditor::ImageUploader 3 | end -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/templates/models/active_record/kindeditor/media.rb: -------------------------------------------------------------------------------- 1 | class Kindeditor::Media < Kindeditor::Asset 2 | mount_uploader :asset, Kindeditor::MediaUploader 3 | end -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /app/uploaders/kindeditor/file_uploader.rb: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | 3 | class Kindeditor::FileUploader < Kindeditor::AssetUploader 4 | 5 | def extension_white_list 6 | EXT_NAMES[:file] 7 | end 8 | 9 | end 10 | 11 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/multiimage/images/select-files-zh-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macrow/rails_kindeditor/HEAD/vendor/assets/javascripts/kindeditor/plugins/multiimage/images/select-files-zh-CN.png -------------------------------------------------------------------------------- /app/uploaders/kindeditor/flash_uploader.rb: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | 3 | class Kindeditor::FlashUploader < Kindeditor::AssetUploader 4 | 5 | def extension_white_list 6 | EXT_NAMES[:flash] 7 | end 8 | 9 | end 10 | 11 | -------------------------------------------------------------------------------- /app/uploaders/kindeditor/image_uploader.rb: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | 3 | class Kindeditor::ImageUploader < Kindeditor::AssetUploader 4 | 5 | def extension_white_list 6 | EXT_NAMES[:image] 7 | end 8 | 9 | end 10 | 11 | -------------------------------------------------------------------------------- /app/uploaders/kindeditor/media_uploader.rb: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | 3 | class Kindeditor::MediaUploader < Kindeditor::AssetUploader 4 | 5 | def extension_white_list 6 | EXT_NAMES[:media] 7 | end 8 | 9 | end 10 | 11 | -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/install/USAGE: -------------------------------------------------------------------------------- 1 | Description: 2 | install kindeditor for your application 3 | 4 | Example: 5 | rails generate rails_kindeditor:install 6 | 7 | This will create: 8 | config/kindeditor.rb 9 | 10 | 11 | -------------------------------------------------------------------------------- /lib/rails_kindeditor/formtastic.rb: -------------------------------------------------------------------------------- 1 | require "formtastic" 2 | 3 | class KindeditorInput 4 | include ::Formtastic::Inputs::Base 5 | 6 | def to_html 7 | input_wrapping do 8 | label_html << 9 | builder.kindeditor(method, input_html_options) 10 | end 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |11 | 在此处输入内容 12 |
13 | 14 | -------------------------------------------------------------------------------- /lib/tasks/assets.rake: -------------------------------------------------------------------------------- 1 | namespace :kindeditor do 2 | desc "copy kindeditor into public folder" 3 | task :assets do 4 | puts "copying kindeditor into public/assets folder ..." 5 | dest_path = "#{Rails.root}/public/assets" 6 | FileUtils.mkdir_p dest_path 7 | FileUtils.cp_r "#{RailsKindeditor.root_path}/vendor/assets/javascripts/kindeditor/", dest_path 8 | end 9 | end -------------------------------------------------------------------------------- /lib/rails_kindeditor/simple_form.rb: -------------------------------------------------------------------------------- 1 | module RailsKindeditor 2 | module SimpleForm 3 | class KindeditorInput < ::SimpleForm::Inputs::Base 4 | def input(wrapper_options) 5 | @builder.kindeditor(attribute_name, input_html_options) 6 | end 7 | end 8 | end 9 | end 10 | 11 | ::SimpleForm::FormBuilder.map_type :kindeditor, :to => RailsKindeditor::SimpleForm::KindeditorInput -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/install/templates/load_kindeditor.coffee: -------------------------------------------------------------------------------- 1 | $(document).on 'turbolinks:before-cache', -> 2 | KindEditor.remove('.rails_kindeditor') 3 | 4 | $(document).on 'turbolinks:load', -> 5 | $('.rails_kindeditor').each -> 6 | KindEditor.create "##{$(this).attr('id')}", "allowFileManager": true, "uploadJson": $(this).data('upload'), "fileManagerJson": $(this).data('filemanager'), "width": '100%', "height": '300' 7 | -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/USAGE: -------------------------------------------------------------------------------- 1 | Description: 2 | Copy model, migration and uploader to your application. 3 | 4 | Example: 5 | rails generate rails_kindeditor:migration 6 | 7 | This will create: 8 | app/models/kindeditor/asset.rb 9 | app/models/kindeditor/file.rb 10 | app/models/kindeditor/flash.rb 11 | app/models/kindeditor/image.rb 12 | app/models/kindeditor/media.rb 13 | db/migrate/xxxxxxxxx_create_kindeditor_assets.rb 14 | 15 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |8 | 在此处输入内容 9 |
10 |22 | 在此处输入内容 23 |
24 |
14 | 标题115 | |
16 |
17 | 标题118 | |
19 |
| 22 | 内容1 23 | | 24 |25 | 内容2 26 | | 27 |
| 30 | 内容3 31 | | 32 |33 | 内容4 34 | | 35 |
39 | 表格说明 40 |
41 | 42 | -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/migration/templates/models/mongoid/kindeditor/asset.rb: -------------------------------------------------------------------------------- 1 | require 'carrierwave/mongoid' 2 | 3 | class Kindeditor::Asset 4 | include Mongoid::Document 5 | include Mongoid::Timestamps 6 | 7 | field :file_size, :type => Integer 8 | field :file_type, :type => String 9 | field :owner_id, :type => Integer 10 | field :asset_type, :type => String 11 | 12 | mount_uploader :asset, Kindeditor::AssetUploader 13 | validates_presence_of :asset 14 | before_save :update_asset_attributes 15 | 16 | def self.collection_name 17 | :kindeditor_assets 18 | end 19 | 20 | private 21 | def update_asset_attributes 22 | if asset.present? && asset_changed? 23 | self.file_size = asset.file.size 24 | self.file_type = asset.file.content_type 25 | end 26 | end 27 | end 28 | -------------------------------------------------------------------------------- /lib/generators/rails_kindeditor/install/templates/application.js: -------------------------------------------------------------------------------- 1 | // This is a manifest file that'll be compiled into application.js, which will include all the files 2 | // listed below. 3 | // 4 | // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's 5 | // vendor/assets/javascripts directory can be referenced here using a relative path. 6 | // 7 | // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the 8 | // compiled file. JavaScript code in this file should be added after the last require_* statement. 9 | // 10 | // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details 11 | // about supported directives. 12 | // 13 | //= require rails-ujs 14 | //= require turbolinks 15 | //= require jquery 16 | //= require jquery_ujs 17 | //= require kindeditor 18 | //= require_tree . 19 | -------------------------------------------------------------------------------- /rails_kindeditor.gemspec: -------------------------------------------------------------------------------- 1 | # -*- encoding: utf-8 -*- 2 | $:.push File.expand_path("../lib", __FILE__) 3 | require "rails_kindeditor/version" 4 | 5 | Gem::Specification.new do |s| 6 | s.name = "rails_kindeditor" 7 | s.version = RailsKindeditor::VERSION 8 | s.platform = Gem::Platform::RUBY 9 | s.authors = "Macrow" 10 | s.email = "Macrow_wh@163.com" 11 | s.homepage = "http://github.com/Macrow" 12 | s.summary = "Kindeditor for Ruby on Rails" 13 | s.description = "rails_kindeditor will helps your rails app integrate with kindeditor, including images and files uploading." 14 | s.license = 'MIT' 15 | 16 | s.rubyforge_project = "rails_kindeditor" 17 | 18 | s.files = `git ls-files`.split("\n") 19 | s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") 20 | s.require_paths = ["lib"] 21 | 22 | s.add_dependency("jquery-rails") 23 | s.add_dependency("carrierwave") 24 | s.add_dependency("mini_magick") 25 | end 26 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/code/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} 2 | 3 | pre.prettyprint { 4 | border: 0; 5 | border-left: 3px solid rgb(204, 204, 204); 6 | margin-left: 2em; 7 | padding: 0.5em; 8 | font-size: 110%; 9 | display: block; 10 | font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; 11 | margin: 1em 0px; 12 | white-space: pre; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/fixtoolbar/fixtoolbar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by chenyihong on 14/12/4. 3 | */ 4 | 5 | KindEditor.plugin('fixtoolbar', function (K) { 6 | var self = this; 7 | if (!self.fixToolBar) { 8 | return; 9 | } 10 | 11 | function init() { 12 | var toolbar = K('.ke-toolbar'); 13 | var originY = toolbar.pos().y; 14 | K(window).bind('scroll', function () { 15 | if (toolbar.css('position') == 'fixed') { 16 | if(document.body.scrollTop - originY < 0){ 17 | toolbar.css('position', 'static'); 18 | toolbar.css('top', 'auto'); 19 | } 20 | } else { 21 | if (toolbar.pos().y - document.body.scrollTop < 0) { 22 | toolbar.css('position', 'fixed'); 23 | toolbar.css('top', 0); 24 | } 25 | } 26 | }); 27 | } 28 | 29 | if (self.isCreated) { 30 | init(); 31 | } else { 32 | self.afterCreate(init); 33 | } 34 | 35 | }); 36 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/kindeditor/plugins/pagebreak/pagebreak.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy