├── assets ├── images │ ├── plus.png │ ├── rich.png │ ├── files.png │ ├── images.png │ ├── loading.png │ ├── x-red.png │ ├── menu-dash.png │ ├── plus-red.png │ ├── view-grid.png │ ├── view-list.png │ ├── insert-many.png │ ├── insert-one.png │ └── document-thumb.png ├── ckeditor │ ├── plugins │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── link │ │ │ ├── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ └── dialogs │ │ │ │ └── anchor.js │ │ ├── smiley │ │ │ └── images │ │ │ │ ├── heart.gif │ │ │ │ ├── heart.png │ │ │ │ ├── kiss.gif │ │ │ │ ├── kiss.png │ │ │ │ ├── envelope.gif │ │ │ │ ├── envelope.png │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── cry_smile.png │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── lightbulb.png │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── omg_smile.png │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── sad_smile.png │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── thumbs_up.png │ │ │ │ ├── wink_smile.gif │ │ │ │ ├── wink_smile.png │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angel_smile.png │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── angry_smile.png │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── broken_heart.png │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── devil_smile.png │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── regular_smile.png │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── shades_smile.png │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── teeth_smile.png │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_down.png │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tongue_smile.png │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── confused_smile.png │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── embarrassed_smile.png │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ └── whatchutalkingabout_smile.png │ │ ├── image │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── icon.png │ │ │ │ ├── hidpi │ │ │ │ ├── icon.png │ │ │ │ └── icon-rtl.png │ │ │ │ └── icon-rtl.png │ │ ├── flash │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── images │ │ │ │ └── hiddenfield.gif │ │ │ └── dialogs │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── button.js │ │ │ │ └── form.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── logo_ckeditor.png │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── about.js │ │ ├── iframe │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ ├── block_pre.png │ │ │ │ ├── block_address.png │ │ │ │ └── block_blockquote.png │ │ ├── templates │ │ │ ├── templates │ │ │ │ ├── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ │ └── default.js │ │ │ └── dialogs │ │ │ │ └── templates.css │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scayt │ │ │ ├── skins │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── dialogs │ │ │ │ ├── dialog.css │ │ │ │ └── toolbar.css │ │ │ ├── README.md │ │ │ ├── CHANGELOG.md │ │ │ └── LICENSE.md │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ └── ja.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ └── colordialog.css │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ └── lang │ │ │ │ └── _translationstatus.txt │ │ ├── wsc │ │ │ ├── README.md │ │ │ ├── skins │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ ├── LICENSE.md │ │ │ └── dialogs │ │ │ │ ├── wsc.css │ │ │ │ ├── ciframe.html │ │ │ │ └── tmpFrameset.html │ │ ├── tableselection │ │ │ └── styles │ │ │ │ └── tableselection.css │ │ └── copyformatting │ │ │ └── styles │ │ │ └── copyformatting.css │ ├── samples │ │ ├── img │ │ │ ├── logo.png │ │ │ ├── github-top.png │ │ │ ├── header-bg.png │ │ │ ├── navigation-tip.png │ │ │ └── header-separator.png │ │ ├── old │ │ │ ├── assets │ │ │ │ ├── sample.jpg │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── uilanguages │ │ │ │ │ └── languages.js │ │ │ │ └── posteddata.php │ │ │ ├── htmlwriter │ │ │ │ └── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ └── outputforflash.swf │ │ │ ├── sample_posteddata.php │ │ │ ├── dialog │ │ │ │ └── assets │ │ │ │ │ └── my_dialog.js │ │ │ └── sample.js │ │ ├── toolbarconfigurator │ │ │ ├── font │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.ttf │ │ │ │ ├── fontello.woff │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ └── fontello.svg │ │ │ ├── lib │ │ │ │ └── codemirror │ │ │ │ │ ├── show-hint.css │ │ │ │ │ ├── neo.css │ │ │ │ │ └── LICENSE │ │ │ └── css │ │ │ │ └── fontello.css │ │ └── js │ │ │ └── sample.js │ ├── skins │ │ └── moono-lisa │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ └── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ ├── spinner.gif │ │ │ ├── hidpi │ │ │ ├── close.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── lock-open.png │ │ │ └── lock-open.png │ ├── config.js │ ├── bower.json │ ├── composer.json │ └── package.json ├── ckeditor-contrib │ ├── skins │ │ ├── kama │ │ │ ├── icons.png │ │ │ ├── images │ │ │ │ ├── mini.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── toolbar_start.gif │ │ │ │ └── dialog_sides_rtl.png │ │ │ └── readme.md │ │ └── moono │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ └── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ ├── spinner.gif │ │ │ ├── hidpi │ │ │ ├── lock.png │ │ │ ├── close.png │ │ │ ├── refresh.png │ │ │ └── lock-open.png │ │ │ └── lock-open.png │ └── plugins │ │ ├── codemirror │ │ ├── icons │ │ │ ├── autocomplete.png │ │ │ ├── autoformat.png │ │ │ ├── searchcode.png │ │ │ ├── commentselectedrange.png │ │ │ └── uncommentselectedrange.png │ │ ├── theme │ │ │ ├── ambiance-mobile.css │ │ │ ├── neat.css │ │ │ ├── elegant.css │ │ │ ├── neo.css │ │ │ ├── eclipse.css │ │ │ ├── cobalt.css │ │ │ ├── rubyblue.css │ │ │ ├── night.css │ │ │ ├── monokai.css │ │ │ ├── the-matrix.css │ │ │ ├── colorforth.css │ │ │ ├── blackboard.css │ │ │ ├── 3024-day.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── 3024-night.css │ │ │ ├── base16-dark.css │ │ │ ├── base16-light.css │ │ │ ├── mbo.css │ │ │ ├── vibrant-ink.css │ │ │ ├── twilight.css │ │ │ ├── midnight.css │ │ │ ├── zenburn.css │ │ │ └── erlang-dark.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bn.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── eo.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── is.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── no.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── sk.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── zh.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── hu.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ru.js │ │ │ ├── th.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eu.js │ │ │ ├── fr-ca.js │ │ │ ├── gl.js │ │ │ ├── it.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── pt-br.js │ │ │ ├── gu.js │ │ │ ├── nl.js │ │ │ ├── de.js │ │ │ └── pl.js │ │ └── js │ │ │ ├── codemirror.mode.bbcode.min.js │ │ │ └── codemirror.mode.bbcodemixed.min.js │ │ ├── mediaembed │ │ └── icons │ │ │ ├── mediaembed.png │ │ │ └── hidpi │ │ │ └── mediaembed.png │ │ └── redmine │ │ └── plugin.js └── stylesheets │ ├── selector.css │ └── editor.css ├── config ├── routes.rb ├── locales │ ├── fa.yml │ ├── zh.yml │ ├── ko.yml │ ├── ja.yml │ ├── en.yml │ ├── nl.yml │ ├── ru.yml │ ├── pt.yml │ ├── fr.yml │ └── pl.yml └── ckeditor.yml.example ├── app ├── views │ ├── messages │ │ └── quote_with_ckeditor.js.erb │ ├── journals │ │ └── new_with_ckeditor.js.erb │ ├── layouts │ │ └── rich │ │ │ └── application.html.erb │ └── rich │ │ └── files │ │ └── _file.html.erb ├── assets │ └── javascripts │ │ ├── browser.js │ │ └── application.js └── models │ └── redmine_ckeditor_setting.rb ├── .gitmodules ├── lib ├── generators │ └── redmine_ckeditor │ │ └── rich_assets │ │ ├── USAGE │ │ └── rich_assets_generator.rb └── redmine_ckeditor │ ├── tempfile_patch.rb │ ├── rich_files_helper_patch.rb │ ├── application_helper_patch.rb │ ├── queries_helper_patch.rb │ ├── mail_handler_patch.rb │ ├── messages_controller_patch.rb │ ├── journals_controller_patch.rb │ ├── wiki_formatting │ └── formatter.rb │ ├── helper.rb │ └── pdf_patch.rb ├── test └── test_helper.rb ├── db └── migrate │ ├── 20130418001208_add_uri_cache_to_rich_image.rich.rb │ ├── 20130418001207_create_rich_rich_images.rich.rb │ └── 20130418001209_refactor_image_to_file.rich.rb ├── Gemfile └── init.rb /assets/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/plus.png -------------------------------------------------------------------------------- /assets/images/rich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/rich.png -------------------------------------------------------------------------------- /assets/images/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/files.png -------------------------------------------------------------------------------- /assets/images/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/images.png -------------------------------------------------------------------------------- /assets/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/loading.png -------------------------------------------------------------------------------- /assets/images/x-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/x-red.png -------------------------------------------------------------------------------- /assets/images/menu-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/menu-dash.png -------------------------------------------------------------------------------- /assets/images/plus-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/plus-red.png -------------------------------------------------------------------------------- /assets/images/view-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/view-grid.png -------------------------------------------------------------------------------- /assets/images/view-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/view-list.png -------------------------------------------------------------------------------- /assets/images/insert-many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/insert-many.png -------------------------------------------------------------------------------- /assets/images/insert-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/insert-one.png -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | RedmineApp::Application.routes.draw do 2 | mount Rich::Engine => '/rich', :as => 'rich' 3 | end 4 | -------------------------------------------------------------------------------- /assets/images/document-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/images/document-thumb.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/kama/icons.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/icons.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/close.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/lock.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /app/views/messages/quote_with_ckeditor.js.erb: -------------------------------------------------------------------------------- 1 | <%= render :file => "messages/quote" %> 2 | CKEDITOR.instances['message_content'].setData($('#message_content').val()); 3 | -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /assets/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /config/locales/fa.yml: -------------------------------------------------------------------------------- 1 | fa: 2 | ckeditor_toolbar_buttons: تنظیمات نوار ابزار CKEditor 3 | add: اضافه 4 | remove: حذف 5 | separator: جداساز 6 | line_break: سر خط 7 | 8 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "app/assets/javascripts/ckeditor-releases"] 2 | path = app/assets/javascripts/ckeditor-releases 3 | url = git://github.com/ckeditor/ckeditor-releases.git 4 | -------------------------------------------------------------------------------- /app/assets/javascripts/browser.js: -------------------------------------------------------------------------------- 1 | //= require fileuploader 2 | //= require rich/browser/extensions 3 | //= require rich/browser/uploader 4 | //= require rich/browser/filebrowser 5 | -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /assets/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /assets/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /assets/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /lib/generators/redmine_ckeditor/rich_assets/USAGE: -------------------------------------------------------------------------------- 1 | Description: 2 | Generate rich asset files for Redmine 3 | 4 | Example: 5 | rails generate redmine_ckeditor:rich_assets 6 | -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/codemirror/icons/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/plugins/codemirror/icons/autocomplete.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/codemirror/icons/autoformat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/plugins/codemirror/icons/autoformat.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/codemirror/icons/searchcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/plugins/codemirror/icons/searchcode.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/mediaembed/icons/mediaembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/plugins/mediaembed/icons/mediaembed.png -------------------------------------------------------------------------------- /assets/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /assets/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/mediaembed/icons/hidpi/mediaembed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/plugins/mediaembed/icons/hidpi/mediaembed.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/codemirror/icons/commentselectedrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/plugins/codemirror/icons/commentselectedrange.png -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/codemirror/icons/uncommentselectedrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor-contrib/plugins/codemirror/icons/uncommentselectedrange.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- 1 | // 2 | //= require rich/editor/ckeditor_path 3 | //= require ckeditor-releases/ckeditor 4 | //= require rich/editor/rich_editor 5 | //= require rich/editor/rich_picker 6 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-ono/redmine_ckeditor/HEAD/assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- 1 | # Load the normal Rails helper 2 | require File.expand_path(File.dirname(__FILE__) + '/../../../../test/test_helper') 3 | 4 | # Ensure that we are using the temporary fixture path 5 | Engines::Testing.set_fixture_path 6 | -------------------------------------------------------------------------------- /db/migrate/20130418001208_add_uri_cache_to_rich_image.rich.rb: -------------------------------------------------------------------------------- 1 | # This migration comes from rich (originally 20111117202133) 2 | class AddUriCacheToRichImage < ActiveRecord::Migration[4.2] 3 | def change 4 | add_column :rich_rich_images, :uri_cache, :text 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /assets/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rich', git: 'https://github.com/a-ono/rich.git', tag: '1.5.2' 4 | gem 'kaminari' 5 | gem 'htmlentities' 6 | gem 'paperclip', '~> 6.1.0' 7 | gem 'pandoc-ruby' 8 | 9 | # It is needed for upgrading CKEditor 10 | #gem 'sprockets-rails', '< 3.0.0' 11 | -------------------------------------------------------------------------------- /lib/redmine_ckeditor/tempfile_patch.rb: -------------------------------------------------------------------------------- 1 | module RedmineCkeditor 2 | module TempfilePatch 3 | def initialize(basename, *rest) 4 | super.tap do |f| 5 | f.binmode if basename == "raw-upload." 6 | end 7 | end 8 | end 9 | end 10 | 11 | Tempfile.prepend RedmineCkeditor::TempfilePatch 12 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /app/views/journals/new_with_ckeditor.js.erb: -------------------------------------------------------------------------------- 1 | <% 2 | # when quoting a private journal, check the private checkbox 3 | if @journal && @journal.private_notes? 4 | %> 5 | $('#issue_private_notes').attr('checked', true); 6 | <% end %> 7 | 8 | CKEDITOR.instances['issue_notes'].setData(<%= @content.inspect.html_safe %>); 9 | showAndScrollTo("update", "issue_notes"); 10 | -------------------------------------------------------------------------------- /assets/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | }; 11 | -------------------------------------------------------------------------------- /assets/stylesheets/selector.css: -------------------------------------------------------------------------------- 1 | div.selector-container select { 2 | float: left; 3 | padding: 3px; 4 | width: 250px; 5 | } 6 | 7 | div.selector-container div.container { 8 | float: left; 9 | padding: 3px; 10 | } 11 | 12 | div.selector-container div.clear { 13 | clear: left; 14 | height: 1em; 15 | } 16 | 17 | div.selector-container input.button { 18 | width: 8em; 19 | } 20 | -------------------------------------------------------------------------------- /lib/redmine_ckeditor/rich_files_helper_patch.rb: -------------------------------------------------------------------------------- 1 | module RedmineCkeditor 2 | module RichFilesHelperPatch 3 | def thumb_for_file(file) 4 | Redmine::Utils.relative_url_root + if file.simplified_type == "image" 5 | file.rich_file.url(:rich_thumb) 6 | else 7 | "/plugin_assets/redmine_ckeditor/images/document-thumb.png" 8 | end 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /assets/stylesheets/editor.css: -------------------------------------------------------------------------------- 1 | /* 2 | This file defines the default set of CSS styles available in the Rich editor 3 | */ 4 | 5 | 6 | p.caption { 7 | font-style: italic; 8 | color: grey; 9 | } 10 | 11 | span.highlight { 12 | background: yellow; 13 | } 14 | 15 | img.left { 16 | float: left; 17 | } 18 | 19 | img.right { 20 | float: right; 21 | } 22 | 23 | html, body { 24 | height: 100%; 25 | } 26 | -------------------------------------------------------------------------------- /lib/redmine_ckeditor/application_helper_patch.rb: -------------------------------------------------------------------------------- 1 | module RedmineCkeditor 2 | module ApplicationHelperPatch 3 | include RedmineCkeditor::Helper 4 | 5 | def format_activity_description(text) 6 | if RedmineCkeditor.enabled? 7 | simple_format(truncate(HTMLEntities.new.decode(strip_tags(text.to_s)), :length => 120)) 8 | else 9 | super 10 | end 11 | end 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /lib/redmine_ckeditor/queries_helper_patch.rb: -------------------------------------------------------------------------------- 1 | module RedmineCkeditor 2 | module QueriesHelperPatch 3 | def csv_value(column, issue, value) 4 | if RedmineCkeditor.enabled? && column.name == :description 5 | text = Rails::Html::FullSanitizer.new.sanitize(value.to_s) 6 | text.gsub(/(?:\r\n\t*)+/, "\r").gsub(" ", " ").strip 7 | else 8 | super 9 | end 10 | end 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /config/locales/zh.yml: -------------------------------------------------------------------------------- 1 | zh: 2 | ckeditor_skin: 主题设置 3 | ckeditor_ui_color: UI颜色设置 4 | ckeditor_enter_mode: 输入模式 5 | ckeditor_startup_show_blocks: 启动时显示文本块 6 | ckeditor_toolbar_can_collapse: 工具栏合拢 7 | ckeditor_toolbar_location: 工具栏位置 8 | ckeditor_toolbar_buttons: 工具栏按钮 9 | ckeditor_width: 宽度 10 | ckeditor_height: 高度 11 | add: 新增 12 | remove: 移除 13 | separator: 分割符 14 | subgroup: 子菜单 15 | line_break: 换行符 16 | 17 | -------------------------------------------------------------------------------- /app/views/layouts/rich/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |#{ll(I18n.locale, :text_user_wrote, @message.author)}
" 11 | @content << "#{ActionView::Base.full_sanitizer.sanitize(@message.content.to_s)}" 12 | 13 | render "quote_with_ckeditor" 14 | end 15 | end 16 | end 17 | -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- 1 | fr: 2 | ckeditor_skin: Thème 3 | ckeditor_ui_color: Couleur de l'interface 4 | ckeditor_enter_mode: Type de blocs 5 | ckeditor_startup_show_blocks: Montrer les blocs au démarrage 6 | ckeditor_toolbar_can_collapse: La barre d'outil peut être réduite 7 | ckeditor_toolbar_location: "Emplacement de la barre d'outil" 8 | ckeditor_toolbar_buttons: "Préférences de la barre d'outil CKEditor" 9 | ckeditor_width: Largeur 10 | ckeditor_height: Hauteur 11 | add: Ajouter 12 | remove: Supprimer 13 | separator: Séparateur 14 | subgroup: Sous-groupe 15 | line_break: Saut de ligne 16 | 17 | -------------------------------------------------------------------------------- /config/locales/pl.yml: -------------------------------------------------------------------------------- 1 | pl: 2 | ckeditor_skin: Skórka 3 | ckeditor_ui_color: Kolor interfejsu użytkownika 4 | ckeditor_enter_mode: Znacznik po wybraniu Enter 5 | ckeditor_startup_show_blocks: Pokazywanie bloków HTML odrazu po uruchomieniu 6 | ckeditor_toolbar_can_collapse: Pasek narzędzi może zostać zwinięty 7 | ckeditor_toolbar_location: Lokalizacja paska narzędzi 8 | ckeditor_toolbar_buttons: Przyciski paska narzędzi 9 | ckeditor_width: Wysokość 10 | ckeditor_height: Szerokość 11 | add: Dodaj 12 | remove: Usuń 13 | separator: Separator 14 | subgroup: Pod grupa 15 | line_break: Linia rozdzielająca 16 | -------------------------------------------------------------------------------- /app/views/rich/files/_file.html.erb: -------------------------------------------------------------------------------- 1 |
<%= file.rich_file_file_name %>
11 | <%= link_to "delete", file.id.to_s, :method => :delete, :remote => true, :data => { :confirm => t(:delete_confirm) }, :class => "delete", :title => t(:delete) %> 12 |#{ll(I18n.locale, :text_user_wrote, user)}
" 17 | @content << "#{text}" 18 | 19 | render "new_with_ckeditor" 20 | rescue ActiveRecord::RecordNotFound 21 | render_404 22 | end 23 | end 24 | end 25 | -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/codemirror/theme/neat.css: -------------------------------------------------------------------------------- 1 | .cm-s-neat span.cm-comment { color: #a86; } 2 | .cm-s-neat span.cm-keyword { line-height: 1em; font-weight: bold; color: blue; } 3 | .cm-s-neat span.cm-string { color: #a22; } 4 | .cm-s-neat span.cm-builtin { line-height: 1em; font-weight: bold; color: #077; } 5 | .cm-s-neat span.cm-special { line-height: 1em; font-weight: bold; color: #0aa; } 6 | .cm-s-neat span.cm-variable { color: black; } 7 | .cm-s-neat span.cm-number, .cm-s-neat span.cm-atom { color: #3a3; } 8 | .cm-s-neat span.cm-meta {color: #555;} 9 | .cm-s-neat span.cm-link { color: #3a3; } 10 | 11 | .cm-s-neat .CodeMirror-activeline-background {background: #e8f2ff !important;} 12 | .cm-s-neat .CodeMirror-matchingbracket {outline:1px solid grey; color:black !important;} 13 | -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require 'redmine' 2 | require 'redmine_ckeditor' 3 | 4 | ActiveSupport::Reloader.to_prepare do 5 | RedmineCkeditor.apply_patch 6 | end 7 | 8 | Redmine::Plugin.register :redmine_ckeditor do 9 | name 'Redmine CKEditor plugin' 10 | author 'Akihiro Ono' 11 | description 'This is a CKEditor plugin for Redmine' 12 | version '1.2.3' 13 | requires_redmine :version_or_higher => '4.0.0' 14 | url 'http://github.com/a-ono/redmine_ckeditor' 15 | 16 | settings(:partial => 'settings/ckeditor') 17 | 18 | wiki_format_provider 'CKEditor', RedmineCkeditor::WikiFormatting::Formatter, 19 | RedmineCkeditor::WikiFormatting::Helper 20 | end 21 | 22 | (Loofah::VERSION >= "2.3.0" ? Loofah::HTML5::SafeList : Loofah::HTML5::WhiteList)::ALLOWED_PROTOCOLS.replace RedmineCkeditor.allowed_protocols 23 | -------------------------------------------------------------------------------- /assets/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /assets/ckeditor-contrib/plugins/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- 1 | .cm-s-elegant span.cm-number, .cm-s-elegant span.cm-string, .cm-s-elegant span.cm-atom {color: #762;} 2 | .cm-s-elegant span.cm-comment {color: #262; font-style: italic; line-height: 1em;} 3 | .cm-s-elegant span.cm-meta {color: #555; font-style: italic; line-height: 1em;} 4 | .cm-s-elegant span.cm-variable {color: black;} 5 | .cm-s-elegant span.cm-variable-2 {color: #b11;} 6 | .cm-s-elegant span.cm-qualifier {color: #555;} 7 | .cm-s-elegant span.cm-keyword {color: #730;} 8 | .cm-s-elegant span.cm-builtin {color: #30a;} 9 | .cm-s-elegant span.cm-link {color: #762;} 10 | .cm-s-elegant span.cm-error {background-color: #fdd;} 11 | 12 | .cm-s-elegant .CodeMirror-activeline-background {background: #e8f2ff !important;} 13 | .cm-s-elegant .CodeMirror-matchingbracket {outline:1px solid grey; color:black !important;} 14 | -------------------------------------------------------------------------------- /assets/ckeditor/samples/old/sample_posteddata.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | ------------------------------------------------------------------------------------------- 4 | CKEditor - Posted Data 5 | 6 | We are sorry, but your Web server does not support the PHP language used in this script. 7 | 8 | Please note that CKEditor can be used with any other server-side language than just PHP. 9 | To save the content created with CKEditor you need to read the POST data on the server 10 | side and write it to a file or the database. 11 | 12 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 13 | For licensing, see LICENSE.md or http://ckeditor.com/license 14 | ------------------------------------------------------------------------------------------- 15 | 16 |