esp-ckeditor 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (340) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +32 -0
  3. data/Rakefile +28 -0
  4. data/app/assets/javascripts/esp-ckeditor/_source/core/_bootstrap.js +87 -0
  5. data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor.js +141 -0
  6. data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_base.js +227 -0
  7. data/app/assets/javascripts/esp-ckeditor/_source/core/ckeditor_basic.js +238 -0
  8. data/app/assets/javascripts/esp-ckeditor/_source/core/command.js +209 -0
  9. data/app/assets/javascripts/esp-ckeditor/_source/core/commanddefinition.js +129 -0
  10. data/app/assets/javascripts/esp-ckeditor/_source/core/config.js +423 -0
  11. data/app/assets/javascripts/esp-ckeditor/_source/core/dataprocessor.js +65 -0
  12. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/comment.js +32 -0
  13. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/document.js +251 -0
  14. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/documentfragment.js +49 -0
  15. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/domobject.js +258 -0
  16. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/element.js +1691 -0
  17. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/elementpath.js +119 -0
  18. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/event.js +145 -0
  19. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/node.js +696 -0
  20. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/nodelist.js +26 -0
  21. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/range.js +2054 -0
  22. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/rangelist.js +213 -0
  23. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/text.js +128 -0
  24. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/walker.js +462 -0
  25. data/app/assets/javascripts/esp-ckeditor/_source/core/dom/window.js +96 -0
  26. data/app/assets/javascripts/esp-ckeditor/_source/core/dom.js +20 -0
  27. data/app/assets/javascripts/esp-ckeditor/_source/core/dtd.js +266 -0
  28. data/app/assets/javascripts/esp-ckeditor/_source/core/editor.js +1060 -0
  29. data/app/assets/javascripts/esp-ckeditor/_source/core/editor_basic.js +186 -0
  30. data/app/assets/javascripts/esp-ckeditor/_source/core/env.js +305 -0
  31. data/app/assets/javascripts/esp-ckeditor/_source/core/event.js +342 -0
  32. data/app/assets/javascripts/esp-ckeditor/_source/core/eventInfo.js +120 -0
  33. data/app/assets/javascripts/esp-ckeditor/_source/core/focusmanager.js +152 -0
  34. data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  35. data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/cdata.js +43 -0
  36. data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/comment.js +60 -0
  37. data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/element.js +308 -0
  38. data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/filter.js +288 -0
  39. data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/fragment.js +518 -0
  40. data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser/text.js +53 -0
  41. data/app/assets/javascripts/esp-ckeditor/_source/core/htmlparser.js +224 -0
  42. data/app/assets/javascripts/esp-ckeditor/_source/core/lang.js +157 -0
  43. data/app/assets/javascripts/esp-ckeditor/_source/core/loader.js +240 -0
  44. data/app/assets/javascripts/esp-ckeditor/_source/core/plugindefinition.js +83 -0
  45. data/app/assets/javascripts/esp-ckeditor/_source/core/plugins.js +103 -0
  46. data/app/assets/javascripts/esp-ckeditor/_source/core/resourcemanager.js +238 -0
  47. data/app/assets/javascripts/esp-ckeditor/_source/core/scriptloader.js +180 -0
  48. data/app/assets/javascripts/esp-ckeditor/_source/core/skins.js +184 -0
  49. data/app/assets/javascripts/esp-ckeditor/_source/core/themes.js +19 -0
  50. data/app/assets/javascripts/esp-ckeditor/_source/core/tools.js +763 -0
  51. data/app/assets/javascripts/esp-ckeditor/_source/core/ui.js +128 -0
  52. data/app/assets/javascripts/esp-ckeditor/_source/lang/_languages.js +27 -0
  53. data/app/assets/javascripts/esp-ckeditor/_source/lang/en.js +815 -0
  54. data/app/assets/javascripts/esp-ckeditor/_source/lang/ru.js +815 -0
  55. data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
  56. data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  57. data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
  58. data/app/assets/javascripts/esp-ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
  59. data/app/assets/javascripts/esp-ckeditor/_source/plugins/basicstyles/plugin.js +129 -0
  60. data/app/assets/javascripts/esp-ckeditor/_source/plugins/button/plugin.js +290 -0
  61. data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
  62. data/app/assets/javascripts/esp-ckeditor/_source/plugins/clipboard/plugin.js +453 -0
  63. data/app/assets/javascripts/esp-ckeditor/_source/plugins/contextmenu/plugin.js +179 -0
  64. data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -0
  65. data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialog/plugin.js +3308 -0
  66. data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -0
  67. data/app/assets/javascripts/esp-ckeditor/_source/plugins/dialogui/plugin.js +1541 -0
  68. data/app/assets/javascripts/esp-ckeditor/_source/plugins/domiterator/plugin.js +361 -0
  69. data/app/assets/javascripts/esp-ckeditor/_source/plugins/editingblock/plugin.js +278 -0
  70. data/app/assets/javascripts/esp-ckeditor/_source/plugins/elementspath/plugin.js +218 -0
  71. data/app/assets/javascripts/esp-ckeditor/_source/plugins/enterkey/plugin.js +433 -0
  72. data/app/assets/javascripts/esp-ckeditor/_source/plugins/entities/plugin.js +250 -0
  73. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/dialogs/esp_attachment.js +234 -0
  74. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/images/esp_attachment.png +0 -0
  75. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/en.js +22 -0
  76. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/ru.js +22 -0
  77. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/lang/uk.js +22 -0
  78. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_attachment/plugin.js +23 -0
  79. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/dialogs/esp_audio.js +207 -0
  80. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/esp_audio.png +0 -0
  81. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/images/placeholder.png +0 -0
  82. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/en.js +18 -0
  83. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/ru.js +18 -0
  84. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/lang/uk.js +18 -0
  85. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_audio/plugin.js +182 -0
  86. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/dialogs/esp_blockquote.js +132 -0
  87. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_blockquote/plugin.js +235 -0
  88. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/dialogs/esp_image.js +1414 -0
  89. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/images/esp_image.png +0 -0
  90. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/en.js +9 -0
  91. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/ru.js +9 -0
  92. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/lang/uk.js +9 -0
  93. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_image/plugin.js +80 -0
  94. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_anchor.js +145 -0
  95. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/dialogs/esp_link.js +1396 -0
  96. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/anchor.png +0 -0
  97. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_anchor.png +0 -0
  98. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_link.png +0 -0
  99. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/images/esp_unlink.png +0 -0
  100. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/en.js +8 -0
  101. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/ru.js +8 -0
  102. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/lang/uk.js +8 -0
  103. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_link/plugin.js +379 -0
  104. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_address.png +0 -0
  105. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_blockquote.png +0 -0
  106. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_div.png +0 -0
  107. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h1.png +0 -0
  108. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h2.png +0 -0
  109. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h3.png +0 -0
  110. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h4.png +0 -0
  111. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h5.png +0 -0
  112. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_h6.png +0 -0
  113. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_p.png +0 -0
  114. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/block_pre.png +0 -0
  115. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
  116. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_showblocks/plugin.js +163 -0
  117. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/dialogs/esp_video.js +277 -0
  118. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/esp_video.png +0 -0
  119. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/images/placeholder.png +0 -0
  120. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/en.js +19 -0
  121. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/ru.js +19 -0
  122. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/lang/uk.js +19 -0
  123. data/app/assets/javascripts/esp-ckeditor/_source/plugins/esp_video/plugin.js +182 -0
  124. data/app/assets/javascripts/esp-ckeditor/_source/plugins/fakeobjects/plugin.js +175 -0
  125. data/app/assets/javascripts/esp-ckeditor/_source/plugins/filebrowser/plugin.js +534 -0
  126. data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/dialogs/find.js +915 -0
  127. data/app/assets/javascripts/esp-ckeditor/_source/plugins/find/plugin.js +47 -0
  128. data/app/assets/javascripts/esp-ckeditor/_source/plugins/floatpanel/plugin.js +428 -0
  129. data/app/assets/javascripts/esp-ckeditor/_source/plugins/format/plugin.js +197 -0
  130. data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmldataprocessor/plugin.js +596 -0
  131. data/app/assets/javascripts/esp-ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
  132. data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/dialogs/image.js +1407 -0
  133. data/app/assets/javascripts/esp-ckeditor/_source/plugins/image/plugin.js +81 -0
  134. data/app/assets/javascripts/esp-ckeditor/_source/plugins/indent/plugin.js +461 -0
  135. data/app/assets/javascripts/esp-ckeditor/_source/plugins/justify/plugin.js +253 -0
  136. data/app/assets/javascripts/esp-ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
  137. data/app/assets/javascripts/esp-ckeditor/_source/plugins/list/plugin.js +774 -0
  138. data/app/assets/javascripts/esp-ckeditor/_source/plugins/listblock/plugin.js +266 -0
  139. data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -0
  140. data/app/assets/javascripts/esp-ckeditor/_source/plugins/liststyle/plugin.js +66 -0
  141. data/app/assets/javascripts/esp-ckeditor/_source/plugins/maximize/plugin.js +353 -0
  142. data/app/assets/javascripts/esp-ckeditor/_source/plugins/menu/plugin.js +541 -0
  143. data/app/assets/javascripts/esp-ckeditor/_source/plugins/panel/plugin.js +400 -0
  144. data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -0
  145. data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
  146. data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
  147. data/app/assets/javascripts/esp-ckeditor/_source/plugins/pastetext/plugin.js +98 -0
  148. data/app/assets/javascripts/esp-ckeditor/_source/plugins/popup/plugin.js +64 -0
  149. data/app/assets/javascripts/esp-ckeditor/_source/plugins/removeformat/plugin.js +185 -0
  150. data/app/assets/javascripts/esp-ckeditor/_source/plugins/resize/plugin.js +168 -0
  151. data/app/assets/javascripts/esp-ckeditor/_source/plugins/richcombo/plugin.js +381 -0
  152. data/app/assets/javascripts/esp-ckeditor/_source/plugins/selection/plugin.js +1729 -0
  153. data/app/assets/javascripts/esp-ckeditor/_source/plugins/showborders/plugin.js +207 -0
  154. data/app/assets/javascripts/esp-ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
  155. data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/plugin.js +1700 -0
  156. data/app/assets/javascripts/esp-ckeditor/_source/plugins/styles/styles/default.js +88 -0
  157. data/app/assets/javascripts/esp-ckeditor/_source/plugins/stylescombo/plugin.js +218 -0
  158. data/app/assets/javascripts/esp-ckeditor/_source/plugins/tab/plugin.js +367 -0
  159. data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/dialogs/table.js +623 -0
  160. data/app/assets/javascripts/esp-ckeditor/_source/plugins/table/plugin.js +78 -0
  161. data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
  162. data/app/assets/javascripts/esp-ckeditor/_source/plugins/tabletools/plugin.js +1194 -0
  163. data/app/assets/javascripts/esp-ckeditor/_source/plugins/toolbar/plugin.js +545 -0
  164. data/app/assets/javascripts/esp-ckeditor/_source/plugins/undo/plugin.js +578 -0
  165. data/app/assets/javascripts/esp-ckeditor/_source/plugins/wysiwygarea/plugin.js +1347 -0
  166. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/dialog.css +988 -0
  167. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/editor.css +25 -0
  168. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/elementspath.css +73 -0
  169. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.css +367 -0
  170. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons.png +0 -0
  171. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/icons_rtl.png +0 -0
  172. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  173. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  174. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  175. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/mini.gif +0 -0
  176. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/noimage.png +0 -0
  177. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites.png +0 -0
  178. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  179. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  180. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/mainui.css +209 -0
  181. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/menu.css +232 -0
  182. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/panel.css +227 -0
  183. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/presets.css +49 -0
  184. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/reset.css +85 -0
  185. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/richcombo.css +287 -0
  186. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/skin.js +236 -0
  187. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/templates.css +88 -0
  188. data/app/assets/javascripts/esp-ckeditor/_source/skins/kama/toolbar.css +412 -0
  189. data/app/assets/javascripts/esp-ckeditor/_source/themes/default/theme.js +407 -0
  190. data/app/assets/javascripts/esp-ckeditor/application.js +8 -0
  191. data/app/assets/javascripts/esp-ckeditor/ckeditor.js +137 -0
  192. data/app/assets/javascripts/esp-ckeditor/ckeditor.pack +194 -0
  193. data/app/assets/javascripts/esp-ckeditor/ckeditor_source.js +35 -0
  194. data/app/assets/javascripts/esp-ckeditor/ckpackager.jar +0 -0
  195. data/app/assets/javascripts/esp-ckeditor/ckpackager.txt +2 -0
  196. data/app/assets/javascripts/esp-ckeditor/config.js +147 -0
  197. data/app/assets/javascripts/esp-ckeditor/contents.css +38 -0
  198. data/app/assets/javascripts/esp-ckeditor/images/spacer.gif +0 -0
  199. data/app/assets/javascripts/esp-ckeditor/init_ckeditor.js +1 -0
  200. data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +1 -0
  201. data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/en.js +1 -0
  202. data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/lang/he.js +1 -0
  203. data/app/assets/javascripts/esp-ckeditor/plugins/a11yhelp/plugin.js +1 -0
  204. data/app/assets/javascripts/esp-ckeditor/plugins/basicstyles/plugin.js +1 -0
  205. data/app/assets/javascripts/esp-ckeditor/plugins/button/plugin.js +1 -0
  206. data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/dialogs/paste.js +1 -0
  207. data/app/assets/javascripts/esp-ckeditor/plugins/clipboard/plugin.js +1 -0
  208. data/app/assets/javascripts/esp-ckeditor/plugins/contextmenu/plugin.js +1 -0
  209. data/app/assets/javascripts/esp-ckeditor/plugins/dialog/dialogDefinition.js +0 -0
  210. data/app/assets/javascripts/esp-ckeditor/plugins/dialog/plugin.js +1 -0
  211. data/app/assets/javascripts/esp-ckeditor/plugins/dialogadvtab/plugin.js +1 -0
  212. data/app/assets/javascripts/esp-ckeditor/plugins/dialogui/plugin.js +1 -0
  213. data/app/assets/javascripts/esp-ckeditor/plugins/domiterator/plugin.js +1 -0
  214. data/app/assets/javascripts/esp-ckeditor/plugins/editingblock/plugin.js +1 -0
  215. data/app/assets/javascripts/esp-ckeditor/plugins/elementspath/plugin.js +1 -0
  216. data/app/assets/javascripts/esp-ckeditor/plugins/enterkey/plugin.js +1 -0
  217. data/app/assets/javascripts/esp-ckeditor/plugins/entities/plugin.js +1 -0
  218. data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/dialogs/esp_attachment.js +1 -0
  219. data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/images/esp_attachment.png +0 -0
  220. data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/en.js +1 -0
  221. data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/ru.js +1 -0
  222. data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/lang/uk.js +1 -0
  223. data/app/assets/javascripts/esp-ckeditor/plugins/esp_attachment/plugin.js +1 -0
  224. data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/dialogs/esp_audio.js +1 -0
  225. data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/esp_audio.png +0 -0
  226. data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/images/placeholder.png +0 -0
  227. data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/en.js +1 -0
  228. data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/ru.js +1 -0
  229. data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/lang/uk.js +1 -0
  230. data/app/assets/javascripts/esp-ckeditor/plugins/esp_audio/plugin.js +1 -0
  231. data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/dialogs/esp_blockquote.js +1 -0
  232. data/app/assets/javascripts/esp-ckeditor/plugins/esp_blockquote/plugin.js +1 -0
  233. data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/dialogs/esp_image.js +1 -0
  234. data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/images/esp_image.png +0 -0
  235. data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/en.js +1 -0
  236. data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/ru.js +1 -0
  237. data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/lang/uk.js +1 -0
  238. data/app/assets/javascripts/esp-ckeditor/plugins/esp_image/plugin.js +1 -0
  239. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_anchor.js +1 -0
  240. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/dialogs/esp_link.js +1 -0
  241. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/anchor.png +0 -0
  242. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_anchor.png +0 -0
  243. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_link.png +0 -0
  244. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/images/esp_unlink.png +0 -0
  245. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/en.js +1 -0
  246. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/ru.js +1 -0
  247. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/lang/uk.js +1 -0
  248. data/app/assets/javascripts/esp-ckeditor/plugins/esp_link/plugin.js +1 -0
  249. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_address.png +0 -0
  250. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_blockquote.png +0 -0
  251. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_div.png +0 -0
  252. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h1.png +0 -0
  253. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h2.png +0 -0
  254. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h3.png +0 -0
  255. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h4.png +0 -0
  256. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h5.png +0 -0
  257. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_h6.png +0 -0
  258. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_p.png +0 -0
  259. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/block_pre.png +0 -0
  260. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/images/esp_showblocks.png +0 -0
  261. data/app/assets/javascripts/esp-ckeditor/plugins/esp_showblocks/plugin.js +1 -0
  262. data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/dialogs/esp_video.js +1 -0
  263. data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/esp_video.png +0 -0
  264. data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/images/placeholder.png +0 -0
  265. data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/en.js +1 -0
  266. data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/ru.js +1 -0
  267. data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/lang/uk.js +1 -0
  268. data/app/assets/javascripts/esp-ckeditor/plugins/esp_video/plugin.js +1 -0
  269. data/app/assets/javascripts/esp-ckeditor/plugins/fakeobjects/plugin.js +1 -0
  270. data/app/assets/javascripts/esp-ckeditor/plugins/filebrowser/plugin.js +1 -0
  271. data/app/assets/javascripts/esp-ckeditor/plugins/find/dialogs/find.js +1 -0
  272. data/app/assets/javascripts/esp-ckeditor/plugins/find/plugin.js +1 -0
  273. data/app/assets/javascripts/esp-ckeditor/plugins/floatpanel/plugin.js +1 -0
  274. data/app/assets/javascripts/esp-ckeditor/plugins/format/plugin.js +1 -0
  275. data/app/assets/javascripts/esp-ckeditor/plugins/htmldataprocessor/plugin.js +1 -0
  276. data/app/assets/javascripts/esp-ckeditor/plugins/htmlwriter/plugin.js +1 -0
  277. data/app/assets/javascripts/esp-ckeditor/plugins/image/dialogs/image.js +1 -0
  278. data/app/assets/javascripts/esp-ckeditor/plugins/image/plugin.js +1 -0
  279. data/app/assets/javascripts/esp-ckeditor/plugins/indent/plugin.js +1 -0
  280. data/app/assets/javascripts/esp-ckeditor/plugins/justify/plugin.js +1 -0
  281. data/app/assets/javascripts/esp-ckeditor/plugins/keystrokes/plugin.js +1 -0
  282. data/app/assets/javascripts/esp-ckeditor/plugins/list/plugin.js +1 -0
  283. data/app/assets/javascripts/esp-ckeditor/plugins/listblock/plugin.js +1 -0
  284. data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -0
  285. data/app/assets/javascripts/esp-ckeditor/plugins/liststyle/plugin.js +1 -0
  286. data/app/assets/javascripts/esp-ckeditor/plugins/maximize/plugin.js +1 -0
  287. data/app/assets/javascripts/esp-ckeditor/plugins/menu/plugin.js +1 -0
  288. data/app/assets/javascripts/esp-ckeditor/plugins/panel/plugin.js +1 -0
  289. data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/filter/default.js +1 -0
  290. data/app/assets/javascripts/esp-ckeditor/plugins/pastefromword/plugin.js +1 -0
  291. data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/dialogs/pastetext.js +1 -0
  292. data/app/assets/javascripts/esp-ckeditor/plugins/pastetext/plugin.js +1 -0
  293. data/app/assets/javascripts/esp-ckeditor/plugins/popup/plugin.js +1 -0
  294. data/app/assets/javascripts/esp-ckeditor/plugins/removeformat/plugin.js +1 -0
  295. data/app/assets/javascripts/esp-ckeditor/plugins/resize/plugin.js +1 -0
  296. data/app/assets/javascripts/esp-ckeditor/plugins/richcombo/plugin.js +1 -0
  297. data/app/assets/javascripts/esp-ckeditor/plugins/selection/plugin.js +1 -0
  298. data/app/assets/javascripts/esp-ckeditor/plugins/showborders/plugin.js +1 -0
  299. data/app/assets/javascripts/esp-ckeditor/plugins/sourcearea/plugin.js +1 -0
  300. data/app/assets/javascripts/esp-ckeditor/plugins/styles/plugin.js +1 -0
  301. data/app/assets/javascripts/esp-ckeditor/plugins/styles/styles/default.js +1 -0
  302. data/app/assets/javascripts/esp-ckeditor/plugins/stylescombo/plugin.js +1 -0
  303. data/app/assets/javascripts/esp-ckeditor/plugins/tab/plugin.js +1 -0
  304. data/app/assets/javascripts/esp-ckeditor/plugins/table/dialogs/table.js +1 -0
  305. data/app/assets/javascripts/esp-ckeditor/plugins/table/plugin.js +1 -0
  306. data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/dialogs/tableCell.js +1 -0
  307. data/app/assets/javascripts/esp-ckeditor/plugins/tabletools/plugin.js +1 -0
  308. data/app/assets/javascripts/esp-ckeditor/plugins/toolbar/plugin.js +1 -0
  309. data/app/assets/javascripts/esp-ckeditor/plugins/undo/plugin.js +1 -0
  310. data/app/assets/javascripts/esp-ckeditor/plugins/wysiwygarea/plugin.js +1 -0
  311. data/app/assets/javascripts/esp-ckeditor/skins/kama/dialog.css +988 -0
  312. data/app/assets/javascripts/esp-ckeditor/skins/kama/editor.css +25 -0
  313. data/app/assets/javascripts/esp-ckeditor/skins/kama/elementspath.css +73 -0
  314. data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.css +367 -0
  315. data/app/assets/javascripts/esp-ckeditor/skins/kama/icons.png +0 -0
  316. data/app/assets/javascripts/esp-ckeditor/skins/kama/icons_rtl.png +0 -0
  317. data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  318. data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides.png +0 -0
  319. data/app/assets/javascripts/esp-ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  320. data/app/assets/javascripts/esp-ckeditor/skins/kama/images/mini.gif +0 -0
  321. data/app/assets/javascripts/esp-ckeditor/skins/kama/images/noimage.png +0 -0
  322. data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites.png +0 -0
  323. data/app/assets/javascripts/esp-ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  324. data/app/assets/javascripts/esp-ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  325. data/app/assets/javascripts/esp-ckeditor/skins/kama/mainui.css +209 -0
  326. data/app/assets/javascripts/esp-ckeditor/skins/kama/menu.css +232 -0
  327. data/app/assets/javascripts/esp-ckeditor/skins/kama/panel.css +227 -0
  328. data/app/assets/javascripts/esp-ckeditor/skins/kama/presets.css +49 -0
  329. data/app/assets/javascripts/esp-ckeditor/skins/kama/reset.css +85 -0
  330. data/app/assets/javascripts/esp-ckeditor/skins/kama/richcombo.css +287 -0
  331. data/app/assets/javascripts/esp-ckeditor/skins/kama/skin.js +236 -0
  332. data/app/assets/javascripts/esp-ckeditor/skins/kama/templates.css +88 -0
  333. data/app/assets/javascripts/esp-ckeditor/skins/kama/toolbar.css +412 -0
  334. data/app/inputs/ckeditor_input.rb +42 -0
  335. data/config/routes.rb +2 -0
  336. data/lib/esp-ckeditor/engine.rb +9 -0
  337. data/lib/esp-ckeditor/version.rb +3 -0
  338. data/lib/esp-ckeditor.rb +17 -0
  339. data/lib/tasks/esp-ckeditor_tasks.rake +4 -0
  340. metadata +434 -0
@@ -0,0 +1,223 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.dialog.add( 'paste', function( editor )
7
+ {
8
+ var lang = editor.lang.clipboard;
9
+ var isCustomDomain = CKEDITOR.env.isCustomDomain();
10
+
11
+ function onPasteFrameLoad( win )
12
+ {
13
+ var doc = new CKEDITOR.dom.document( win.document ),
14
+ docElement = doc.$;
15
+
16
+ var script = doc.getById( 'cke_actscrpt' );
17
+ script && script.remove();
18
+
19
+ CKEDITOR.env.ie ?
20
+ docElement.body.contentEditable = "true" :
21
+ docElement.designMode = "on";
22
+
23
+ // IE before version 8 will leave cursor blinking inside the document after
24
+ // editor blurred unless we clean up the selection. (#4716)
25
+ if ( CKEDITOR.env.ie && CKEDITOR.env.version < 8 )
26
+ {
27
+ doc.getWindow().on( 'blur', function()
28
+ {
29
+ docElement.selection.empty();
30
+ } );
31
+ }
32
+
33
+ doc.on( "keydown", function( e )
34
+ {
35
+ var domEvent = e.data,
36
+ key = domEvent.getKeystroke(),
37
+ processed;
38
+
39
+ switch( key )
40
+ {
41
+ case 27 :
42
+ this.hide();
43
+ processed = 1;
44
+ break;
45
+
46
+ case 9 :
47
+ case CKEDITOR.SHIFT + 9 :
48
+ this.changeFocus( true );
49
+ processed = 1;
50
+ }
51
+
52
+ processed && domEvent.preventDefault();
53
+ }, this );
54
+
55
+ editor.fire( 'ariaWidget', new CKEDITOR.dom.element( win.frameElement ) );
56
+ }
57
+
58
+ return {
59
+ title : lang.title,
60
+
61
+ minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 370 : 350,
62
+ minHeight : CKEDITOR.env.quirks ? 250 : 245,
63
+ onShow : function()
64
+ {
65
+ // FIREFOX BUG: Force the browser to render the dialog to make the to-be-
66
+ // inserted iframe editable. (#3366)
67
+ this.parts.dialog.$.offsetHeight;
68
+
69
+ this.setupContent();
70
+ },
71
+
72
+ onHide : function()
73
+ {
74
+ if ( CKEDITOR.env.ie )
75
+ this.getParentEditor().document.getBody().$.contentEditable = 'true';
76
+ },
77
+
78
+ onLoad : function()
79
+ {
80
+ if ( ( CKEDITOR.env.ie7Compat || CKEDITOR.env.ie6Compat ) && editor.lang.dir == 'rtl' )
81
+ this.parts.contents.setStyle( 'overflow', 'hidden' );
82
+ },
83
+
84
+ onOk : function()
85
+ {
86
+ this.commitContent();
87
+ },
88
+
89
+ contents : [
90
+ {
91
+ id : 'general',
92
+ label : editor.lang.common.generalTab,
93
+ elements : [
94
+ {
95
+ type : 'html',
96
+ id : 'securityMsg',
97
+ html : '<div style="white-space:normal;width:340px;">' + lang.securityMsg + '</div>'
98
+ },
99
+ {
100
+ type : 'html',
101
+ id : 'pasteMsg',
102
+ html : '<div style="white-space:normal;width:340px;">'+lang.pasteMsg +'</div>'
103
+ },
104
+ {
105
+ type : 'html',
106
+ id : 'editing_area',
107
+ style : 'width: 100%; height: 100%;',
108
+ html : '',
109
+ focus : function()
110
+ {
111
+ var win = this.getInputElement().$.contentWindow;
112
+
113
+ // #3291 : JAWS needs the 500ms delay to detect that the editor iframe
114
+ // iframe is no longer editable. So that it will put the focus into the
115
+ // Paste from Word dialog's editable area instead.
116
+ setTimeout( function()
117
+ {
118
+ win.focus();
119
+ }, 500 );
120
+ },
121
+ setup : function()
122
+ {
123
+ var dialog = this.getDialog();
124
+ var htmlToLoad =
125
+ '<html dir="' + editor.config.contentsLangDirection + '"' +
126
+ ' lang="' + ( editor.config.contentsLanguage || editor.langCode ) + '">' +
127
+ '<head><style>body { margin: 3px; height: 95%; } </style></head><body>' +
128
+ '<script id="cke_actscrpt" type="text/javascript">' +
129
+ 'window.parent.CKEDITOR.tools.callFunction( ' + CKEDITOR.tools.addFunction( onPasteFrameLoad, dialog ) + ', this );' +
130
+ '</script></body>' +
131
+ '</html>';
132
+
133
+ var src =
134
+ CKEDITOR.env.air ?
135
+ 'javascript:void(0)' :
136
+ isCustomDomain ?
137
+ 'javascript:void((function(){' +
138
+ 'document.open();' +
139
+ 'document.domain=\'' + document.domain + '\';' +
140
+ 'document.close();' +
141
+ '})())"'
142
+ :
143
+ '';
144
+
145
+ var iframe = CKEDITOR.dom.element.createFromHtml(
146
+ '<iframe' +
147
+ ' class="cke_pasteframe"' +
148
+ ' frameborder="0" ' +
149
+ ' allowTransparency="true"' +
150
+ ' src="' + src + '"' +
151
+ ' role="region"' +
152
+ ' aria-label="' + lang.pasteArea + '"' +
153
+ ' aria-describedby="' + dialog.getContentElement( 'general', 'pasteMsg' ).domId + '"' +
154
+ ' aria-multiple="true"' +
155
+ '></iframe>' );
156
+
157
+ iframe.on( 'load', function( e )
158
+ {
159
+ e.removeListener();
160
+
161
+ var doc = iframe.getFrameDocument();
162
+ doc.write( htmlToLoad );
163
+
164
+ if ( CKEDITOR.env.air )
165
+ onPasteFrameLoad.call( this, doc.getWindow().$ );
166
+ }, dialog );
167
+
168
+ iframe.setCustomData( 'dialog', dialog );
169
+
170
+ var container = this.getElement();
171
+ container.setHtml( '' );
172
+ container.append( iframe );
173
+
174
+ // IE need a redirect on focus to make
175
+ // the cursor blinking inside iframe. (#5461)
176
+ if ( CKEDITOR.env.ie )
177
+ {
178
+ var focusGrabber = CKEDITOR.dom.element.createFromHtml( '<span tabindex="-1" style="position:absolute;" role="presentation"></span>' );
179
+ focusGrabber.on( 'focus', function()
180
+ {
181
+ iframe.$.contentWindow.focus();
182
+ });
183
+ container.append( focusGrabber );
184
+
185
+ // Override focus handler on field.
186
+ this.focus = function()
187
+ {
188
+ focusGrabber.focus();
189
+ this.fire( 'focus' );
190
+ };
191
+ }
192
+
193
+ this.getInputElement = function(){ return iframe; };
194
+
195
+ // Force container to scale in IE.
196
+ if ( CKEDITOR.env.ie )
197
+ {
198
+ container.setStyle( 'display', 'block' );
199
+ container.setStyle( 'height', ( iframe.$.offsetHeight + 2 ) + 'px' );
200
+ }
201
+ },
202
+ commit : function( data )
203
+ {
204
+ var container = this.getElement(),
205
+ editor = this.getDialog().getParentEditor(),
206
+ body = this.getInputElement().getFrameDocument().getBody(),
207
+ bogus = body.getBogus(),
208
+ html;
209
+ bogus && bogus.remove();
210
+
211
+ // Saving the contents so changes until paste is complete will not take place (#7500)
212
+ html = body.getHtml();
213
+
214
+ setTimeout( function(){
215
+ editor.fire( 'paste', { 'html' : html } );
216
+ }, 0 );
217
+ }
218
+ }
219
+ ]
220
+ }
221
+ ]
222
+ };
223
+ });
@@ -0,0 +1,453 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ /**
7
+ * @file Clipboard support
8
+ */
9
+
10
+ (function()
11
+ {
12
+ // Tries to execute any of the paste, cut or copy commands in IE. Returns a
13
+ // boolean indicating that the operation succeeded.
14
+ var execIECommand = function( editor, command )
15
+ {
16
+ var doc = editor.document,
17
+ body = doc.getBody();
18
+
19
+ var enabled = 0;
20
+ var onExec = function()
21
+ {
22
+ enabled = 1;
23
+ };
24
+
25
+ // The following seems to be the only reliable way to detect that
26
+ // clipboard commands are enabled in IE. It will fire the
27
+ // onpaste/oncut/oncopy events only if the security settings allowed
28
+ // the command to execute.
29
+ body.on( command, onExec );
30
+
31
+ // IE6/7: document.execCommand has problem to paste into positioned element.
32
+ ( CKEDITOR.env.version > 7 ? doc.$ : doc.$.selection.createRange() ) [ 'execCommand' ]( command );
33
+
34
+ body.removeListener( command, onExec );
35
+
36
+ return enabled;
37
+ };
38
+
39
+ // Attempts to execute the Cut and Copy operations.
40
+ var tryToCutCopy =
41
+ CKEDITOR.env.ie ?
42
+ function( editor, type )
43
+ {
44
+ return execIECommand( editor, type );
45
+ }
46
+ : // !IE.
47
+ function( editor, type )
48
+ {
49
+ try
50
+ {
51
+ // Other browsers throw an error if the command is disabled.
52
+ return editor.document.$.execCommand( type, false, null );
53
+ }
54
+ catch( e )
55
+ {
56
+ return false;
57
+ }
58
+ };
59
+
60
+ // A class that represents one of the cut or copy commands.
61
+ var cutCopyCmd = function( type )
62
+ {
63
+ this.type = type;
64
+ this.canUndo = this.type == 'cut'; // We can't undo copy to clipboard.
65
+ this.startDisabled = true;
66
+ };
67
+
68
+ cutCopyCmd.prototype =
69
+ {
70
+ exec : function( editor, data )
71
+ {
72
+ this.type == 'cut' && fixCut( editor );
73
+
74
+ var success = tryToCutCopy( editor, this.type );
75
+
76
+ if ( !success )
77
+ alert( editor.lang.clipboard[ this.type + 'Error' ] ); // Show cutError or copyError.
78
+
79
+ return success;
80
+ }
81
+ };
82
+
83
+ // Paste command.
84
+ var pasteCmd =
85
+ {
86
+ canUndo : false,
87
+
88
+ exec :
89
+ CKEDITOR.env.ie ?
90
+ function( editor )
91
+ {
92
+ // Prevent IE from pasting at the begining of the document.
93
+ editor.focus();
94
+
95
+ if ( !editor.document.getBody().fire( 'beforepaste' )
96
+ && !execIECommand( editor, 'paste' ) )
97
+ {
98
+ editor.fire( 'pasteDialog' );
99
+ return false;
100
+ }
101
+ }
102
+ :
103
+ function( editor )
104
+ {
105
+ try
106
+ {
107
+ if ( !editor.document.getBody().fire( 'beforepaste' )
108
+ && !editor.document.$.execCommand( 'Paste', false, null ) )
109
+ {
110
+ throw 0;
111
+ }
112
+ }
113
+ catch ( e )
114
+ {
115
+ setTimeout( function()
116
+ {
117
+ editor.fire( 'pasteDialog' );
118
+ }, 0 );
119
+ return false;
120
+ }
121
+ }
122
+ };
123
+
124
+ // Listens for some clipboard related keystrokes, so they get customized.
125
+ var onKey = function( event )
126
+ {
127
+ if ( this.mode != 'wysiwyg' )
128
+ return;
129
+
130
+ switch ( event.data.keyCode )
131
+ {
132
+ // Paste
133
+ case CKEDITOR.CTRL + 86 : // CTRL+V
134
+ case CKEDITOR.SHIFT + 45 : // SHIFT+INS
135
+
136
+ var body = this.document.getBody();
137
+
138
+ // Simulate 'beforepaste' event for all none-IEs.
139
+ if ( !CKEDITOR.env.ie && body.fire( 'beforepaste' ) )
140
+ event.cancel();
141
+ // Simulate 'paste' event for Opera/Firefox2.
142
+ else if ( CKEDITOR.env.opera
143
+ || CKEDITOR.env.gecko && CKEDITOR.env.version < 10900 )
144
+ body.fire( 'paste' );
145
+ return;
146
+
147
+ // Cut
148
+ case CKEDITOR.CTRL + 88 : // CTRL+X
149
+ case CKEDITOR.SHIFT + 46 : // SHIFT+DEL
150
+
151
+ // Save Undo snapshot.
152
+ var editor = this;
153
+ this.fire( 'saveSnapshot' ); // Save before paste
154
+ setTimeout( function()
155
+ {
156
+ editor.fire( 'saveSnapshot' ); // Save after paste
157
+ }, 0 );
158
+ }
159
+ };
160
+
161
+ function cancel( evt ) { evt.cancel(); }
162
+
163
+ // Allow to peek clipboard content by redirecting the
164
+ // pasting content into a temporary bin and grab the content of it.
165
+ function getClipboardData( evt, mode, callback )
166
+ {
167
+ var doc = this.document;
168
+
169
+ // Avoid recursions on 'paste' event or consequent paste too fast. (#5730)
170
+ if ( doc.getById( 'cke_pastebin' ) )
171
+ return;
172
+
173
+ // If the browser supports it, get the data directly
174
+ if ( mode == 'text' && evt.data && evt.data.$.clipboardData )
175
+ {
176
+ // evt.data.$.clipboardData.types contains all the flavours in Mac's Safari, but not on windows.
177
+ var plain = evt.data.$.clipboardData.getData( 'text/plain' );
178
+ if ( plain )
179
+ {
180
+ evt.data.preventDefault();
181
+ callback( plain );
182
+ return;
183
+ }
184
+ }
185
+
186
+ var sel = this.getSelection(),
187
+ range = new CKEDITOR.dom.range( doc );
188
+
189
+ // Create container to paste into
190
+ var pastebin = new CKEDITOR.dom.element( mode == 'text' ? 'textarea' : CKEDITOR.env.webkit ? 'body' : 'div', doc );
191
+ pastebin.setAttribute( 'id', 'cke_pastebin' );
192
+ // Safari requires a filler node inside the div to have the content pasted into it. (#4882)
193
+ CKEDITOR.env.webkit && pastebin.append( doc.createText( '\xa0' ) );
194
+ doc.getBody().append( pastebin );
195
+
196
+ pastebin.setStyles(
197
+ {
198
+ position : 'absolute',
199
+ // Position the bin exactly at the position of the selected element
200
+ // to avoid any subsequent document scroll.
201
+ top : sel.getStartElement().getDocumentPosition().y + 'px',
202
+ width : '1px',
203
+ height : '1px',
204
+ overflow : 'hidden'
205
+ });
206
+
207
+ // It's definitely a better user experience if we make the paste-bin pretty unnoticed
208
+ // by pulling it off the screen.
209
+ pastebin.setStyle( this.config.contentsLangDirection == 'ltr' ? 'left' : 'right', '-1000px' );
210
+
211
+ var bms = sel.createBookmarks();
212
+
213
+ this.on( 'selectionChange', cancel, null, null, 0 );
214
+
215
+ // Turn off design mode temporarily before give focus to the paste bin.
216
+ if ( mode == 'text' )
217
+ pastebin.$.focus();
218
+ else
219
+ {
220
+ range.setStartAt( pastebin, CKEDITOR.POSITION_AFTER_START );
221
+ range.setEndAt( pastebin, CKEDITOR.POSITION_BEFORE_END );
222
+ range.select( true );
223
+ }
224
+
225
+ var editor = this;
226
+ // Wait a while and grab the pasted contents
227
+ window.setTimeout( function()
228
+ {
229
+ mode == 'text' && CKEDITOR.env.gecko && editor.focusGrabber.focus();
230
+ pastebin.remove();
231
+ editor.removeListener( 'selectionChange', cancel );
232
+
233
+ // Grab the HTML contents.
234
+ // We need to look for a apple style wrapper on webkit it also adds
235
+ // a div wrapper if you copy/paste the body of the editor.
236
+ // Remove hidden div and restore selection.
237
+ var bogusSpan;
238
+ pastebin = ( CKEDITOR.env.webkit
239
+ && ( bogusSpan = pastebin.getFirst() )
240
+ && ( bogusSpan.is && bogusSpan.hasClass( 'Apple-style-span' ) ) ?
241
+ bogusSpan : pastebin );
242
+
243
+ sel.selectBookmarks( bms );
244
+ callback( pastebin[ 'get' + ( mode == 'text' ? 'Value' : 'Html' ) ]() );
245
+ }, 0 );
246
+ }
247
+
248
+ // Cutting off control type element in IE standards breaks the selection entirely. (#4881)
249
+ function fixCut( editor )
250
+ {
251
+ if ( !CKEDITOR.env.ie || CKEDITOR.env.quirks )
252
+ return;
253
+
254
+ var sel = editor.getSelection();
255
+ var control;
256
+ if( ( sel.getType() == CKEDITOR.SELECTION_ELEMENT ) && ( control = sel.getSelectedElement() ) )
257
+ {
258
+ var range = sel.getRanges()[ 0 ];
259
+ var dummy = editor.document.createText( '' );
260
+ dummy.insertBefore( control );
261
+ range.setStartBefore( dummy );
262
+ range.setEndAfter( control );
263
+ sel.selectRanges( [ range ] );
264
+
265
+ // Clear up the fix if the paste wasn't succeeded.
266
+ setTimeout( function()
267
+ {
268
+ // Element still online?
269
+ if ( control.getParent() )
270
+ {
271
+ dummy.remove();
272
+ sel.selectElement( control );
273
+ }
274
+ }, 0 );
275
+ }
276
+ }
277
+
278
+ var depressBeforeEvent;
279
+ function stateFromNamedCommand( command, editor )
280
+ {
281
+ // IE Bug: queryCommandEnabled('paste') fires also 'beforepaste(copy/cut)',
282
+ // guard to distinguish from the ordinary sources( either
283
+ // keyboard paste or execCommand ) (#4874).
284
+ CKEDITOR.env.ie && ( depressBeforeEvent = 1 );
285
+
286
+ var retval = CKEDITOR.TRISTATE_OFF;
287
+ try { retval = editor.document.$.queryCommandEnabled( command ) ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED; }catch( er ){}
288
+
289
+ depressBeforeEvent = 0;
290
+ return retval;
291
+ }
292
+
293
+ var inReadOnly;
294
+ function setToolbarStates()
295
+ {
296
+ if ( this.mode != 'wysiwyg' )
297
+ return;
298
+
299
+ this.getCommand( 'cut' ).setState( inReadOnly ? CKEDITOR.TRISTATE_DISABLED : stateFromNamedCommand( 'Cut', this ) );
300
+ this.getCommand( 'copy' ).setState( stateFromNamedCommand( 'Copy', this ) );
301
+ var pasteState = inReadOnly ? CKEDITOR.TRISTATE_DISABLED :
302
+ CKEDITOR.env.webkit ? CKEDITOR.TRISTATE_OFF : stateFromNamedCommand( 'Paste', this );
303
+ this.fire( 'pasteState', pasteState );
304
+ }
305
+
306
+ // Register the plugin.
307
+ CKEDITOR.plugins.add( 'clipboard',
308
+ {
309
+ requires : [ 'dialog', 'htmldataprocessor' ],
310
+ init : function( editor )
311
+ {
312
+ // Inserts processed data into the editor at the end of the
313
+ // events chain.
314
+ editor.on( 'paste', function( evt )
315
+ {
316
+ var data = evt.data;
317
+ if ( data[ 'html' ] )
318
+ editor.insertHtml( data[ 'html' ] );
319
+ else if ( data[ 'text' ] )
320
+ editor.insertText( data[ 'text' ] );
321
+
322
+ setTimeout( function () { editor.fire( 'afterPaste' ); }, 0 );
323
+
324
+ }, null, null, 1000 );
325
+
326
+ editor.on( 'pasteDialog', function( evt )
327
+ {
328
+ setTimeout( function()
329
+ {
330
+ // Open default paste dialog.
331
+ editor.openDialog( 'paste' );
332
+ }, 0 );
333
+ });
334
+
335
+ editor.on( 'pasteState', function( evt )
336
+ {
337
+ editor.getCommand( 'paste' ).setState( evt.data );
338
+ });
339
+
340
+ function addButtonCommand( buttonName, commandName, command, ctxMenuOrder )
341
+ {
342
+ var lang = editor.lang[ commandName ];
343
+
344
+ editor.addCommand( commandName, command );
345
+ editor.ui.addButton( buttonName,
346
+ {
347
+ label : lang,
348
+ command : commandName
349
+ });
350
+
351
+ // If the "menu" plugin is loaded, register the menu item.
352
+ if ( editor.addMenuItems )
353
+ {
354
+ editor.addMenuItem( commandName,
355
+ {
356
+ label : lang,
357
+ command : commandName,
358
+ group : 'clipboard',
359
+ order : ctxMenuOrder
360
+ });
361
+ }
362
+ }
363
+
364
+ addButtonCommand( 'Cut', 'cut', new cutCopyCmd( 'cut' ), 1 );
365
+ addButtonCommand( 'Copy', 'copy', new cutCopyCmd( 'copy' ), 4 );
366
+ addButtonCommand( 'Paste', 'paste', pasteCmd, 8 );
367
+
368
+ CKEDITOR.dialog.add( 'paste', CKEDITOR.getUrl( this.path + 'dialogs/paste.js' ) );
369
+
370
+ editor.on( 'key', onKey, editor );
371
+
372
+ // We'll be catching all pasted content in one line, regardless of whether the
373
+ // it's introduced by a document command execution (e.g. toolbar buttons) or
374
+ // user paste behaviors. (e.g. Ctrl-V)
375
+ editor.on( 'contentDom', function()
376
+ {
377
+ var body = editor.document.getBody();
378
+ body.on( CKEDITOR.env.webkit ? 'paste' : 'beforepaste', function( evt )
379
+ {
380
+ if ( depressBeforeEvent )
381
+ return;
382
+
383
+ // Fire 'beforePaste' event so clipboard flavor get customized
384
+ // by other plugins.
385
+ var eventData = { mode : 'html' };
386
+ editor.fire( 'beforePaste', eventData );
387
+
388
+ getClipboardData.call( editor, evt, eventData.mode, function ( data )
389
+ {
390
+ // The very last guard to make sure the
391
+ // paste has successfully happened.
392
+ if ( !( data = CKEDITOR.tools.trim( data.replace( /<span[^>]+data-cke-bookmark[^<]*?<\/span>/ig,'' ) ) ) )
393
+ return;
394
+
395
+ var dataTransfer = {};
396
+ dataTransfer[ eventData.mode ] = data;
397
+ editor.fire( 'paste', dataTransfer );
398
+ } );
399
+ });
400
+
401
+ // Dismiss the (wrong) 'beforepaste' event fired on context menu open. (#7953)
402
+ body.on( 'contextmenu', function()
403
+ {
404
+ depressBeforeEvent = 1;
405
+ setTimeout( function() { depressBeforeEvent = 0; }, 10 );
406
+ });
407
+
408
+ body.on( 'beforecut', function() { !depressBeforeEvent && fixCut( editor ); } );
409
+
410
+ body.on( 'mouseup', function(){ setTimeout( function(){ setToolbarStates.call( editor ); }, 0 ); }, editor );
411
+ body.on( 'keyup', setToolbarStates, editor );
412
+ });
413
+
414
+ // For improved performance, we're checking the readOnly state on selectionChange instead of hooking a key event for that.
415
+ editor.on( 'selectionChange', function( evt )
416
+ {
417
+ inReadOnly = evt.data.selection.getRanges()[ 0 ].checkReadOnly();
418
+ setToolbarStates.call( editor );
419
+ });
420
+
421
+ // If the "contextmenu" plugin is loaded, register the listeners.
422
+ if ( editor.contextMenu )
423
+ {
424
+ editor.contextMenu.addListener( function( element, selection )
425
+ {
426
+ var readOnly = selection.getRanges()[ 0 ].checkReadOnly();
427
+ return {
428
+ cut : !readOnly && stateFromNamedCommand( 'Cut', editor ),
429
+ copy : stateFromNamedCommand( 'Copy', editor ),
430
+ paste : !readOnly && ( CKEDITOR.env.webkit ? CKEDITOR.TRISTATE_OFF : stateFromNamedCommand( 'Paste', editor ) )
431
+ };
432
+ });
433
+ }
434
+ }
435
+ });
436
+ })();
437
+
438
+ /**
439
+ * Fired when a clipboard operation is about to be taken into the editor.
440
+ * Listeners can manipulate the data to be pasted before having it effectively
441
+ * inserted into the document.
442
+ * @name CKEDITOR.editor#paste
443
+ * @since 3.1
444
+ * @event
445
+ * @param {String} [data.html] The HTML data to be pasted. If not available, e.data.text will be defined.
446
+ * @param {String} [data.text] The plain text data to be pasted, available when plain text operations are to used. If not available, e.data.html will be defined.
447
+ */
448
+
449
+ /**
450
+ * Internal event to open the Paste dialog
451
+ * @name CKEDITOR.editor#pasteDialog
452
+ * @event
453
+ */