fullstack-ckeditor 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (256) hide show
  1. data/Gemfile +8 -0
  2. data/Gemfile.lock +94 -0
  3. data/README.md +28 -0
  4. data/Rakefile +53 -0
  5. data/VERSION +1 -0
  6. data/app/assets/javascripts/fullstack/ckeditor.js.coffee +6 -0
  7. data/app/assets/javascripts/fullstack/ckeditor/ckeditor.js +873 -0
  8. data/app/inputs/markup_input.rb +12 -0
  9. data/app/models/ckeditor/asset.rb +4 -0
  10. data/app/models/ckeditor/attachment_file.rb +10 -0
  11. data/app/models/ckeditor/picture.rb +10 -0
  12. data/fullstack-ckeditor.gemspec +299 -0
  13. data/lib/fullstack-ckeditor.rb +23 -0
  14. data/lib/fullstack/ckeditor.rb +5 -0
  15. data/lib/fullstack/ckeditor/engine.rb +9 -0
  16. data/lib/generators/fullstack/ckeditor/install_generator.rb +12 -0
  17. data/lib/generators/fullstack/ckeditor/templates/ckeditor/config.js +10 -0
  18. data/lib/generators/fullstack/ckeditor/templates/ckeditor/contents.css +99 -0
  19. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/af.js +5 -0
  20. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ar.js +5 -0
  21. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/bg.js +5 -0
  22. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/bn.js +5 -0
  23. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/bs.js +5 -0
  24. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ca.js +5 -0
  25. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/cs.js +5 -0
  26. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/cy.js +5 -0
  27. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/da.js +5 -0
  28. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/de.js +5 -0
  29. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/el.js +5 -0
  30. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/en-au.js +5 -0
  31. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/en-ca.js +5 -0
  32. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/en-gb.js +5 -0
  33. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/en.js +5 -0
  34. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/eo.js +5 -0
  35. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/es.js +5 -0
  36. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/et.js +5 -0
  37. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/eu.js +5 -0
  38. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fa.js +5 -0
  39. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fi.js +5 -0
  40. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fo.js +5 -0
  41. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fr-ca.js +5 -0
  42. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/fr.js +5 -0
  43. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/gl.js +5 -0
  44. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/gu.js +5 -0
  45. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/he.js +5 -0
  46. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/hi.js +5 -0
  47. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/hr.js +5 -0
  48. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/hu.js +5 -0
  49. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/is.js +5 -0
  50. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/it.js +5 -0
  51. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ja.js +5 -0
  52. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ka.js +5 -0
  53. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/km.js +5 -0
  54. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ko.js +5 -0
  55. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ku.js +5 -0
  56. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/lt.js +5 -0
  57. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/lv.js +5 -0
  58. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/mk.js +5 -0
  59. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/mn.js +5 -0
  60. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ms.js +5 -0
  61. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/nb.js +5 -0
  62. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/nl.js +5 -0
  63. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/no.js +5 -0
  64. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/pl.js +5 -0
  65. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/pt-br.js +5 -0
  66. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/pt.js +5 -0
  67. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ro.js +5 -0
  68. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ru.js +5 -0
  69. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sk.js +5 -0
  70. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sl.js +5 -0
  71. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sr-latn.js +5 -0
  72. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sr.js +5 -0
  73. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/sv.js +5 -0
  74. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/th.js +5 -0
  75. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/tr.js +5 -0
  76. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/ug.js +5 -0
  77. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/uk.js +5 -0
  78. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/vi.js +5 -0
  79. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/zh-cn.js +5 -0
  80. data/lib/generators/fullstack/ckeditor/templates/ckeditor/lang/zh.js +5 -0
  81. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +10 -0
  82. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt +25 -0
  83. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js +9 -0
  84. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js +9 -0
  85. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js +9 -0
  86. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js +10 -0
  87. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js +9 -0
  88. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/da.js +9 -0
  89. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/de.js +10 -0
  90. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/el.js +10 -0
  91. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/en.js +9 -0
  92. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js +10 -0
  93. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/es.js +10 -0
  94. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/et.js +9 -0
  95. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js +9 -0
  96. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js +10 -0
  97. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js +10 -0
  98. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js +9 -0
  99. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/he.js +9 -0
  100. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js +9 -0
  101. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js +9 -0
  102. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js +9 -0
  103. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/it.js +10 -0
  104. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js +9 -0
  105. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js +10 -0
  106. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js +9 -0
  107. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js +10 -0
  108. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js +9 -0
  109. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js +9 -0
  110. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js +9 -0
  111. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js +10 -0
  112. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/no.js +9 -0
  113. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js +9 -0
  114. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js +9 -0
  115. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js +9 -0
  116. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js +9 -0
  117. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js +9 -0
  118. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js +10 -0
  119. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js +9 -0
  120. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js +10 -0
  121. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js +10 -0
  122. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js +9 -0
  123. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js +9 -0
  124. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js +9 -0
  125. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js +7 -0
  126. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/about/dialogs/about.js +6 -0
  127. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  128. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/clipboard/dialogs/paste.js +11 -0
  129. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/colordialog/dialogs/colordialog.js +13 -0
  130. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  131. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/div/dialogs/div.js +9 -0
  132. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/fakeobjects/images/spacer.gif +0 -0
  133. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/find/dialogs/find.js +24 -0
  134. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/flash/dialogs/flash.js +23 -0
  135. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/flash/images/placeholder.png +0 -0
  136. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/button.js +8 -0
  137. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/checkbox.js +8 -0
  138. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/form.js +8 -0
  139. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/hiddenfield.js +8 -0
  140. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/radio.js +8 -0
  141. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/select.js +20 -0
  142. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/textarea.js +8 -0
  143. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/dialogs/textfield.js +10 -0
  144. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  145. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/icons.png +0 -0
  146. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/iframe/dialogs/iframe.js +10 -0
  147. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/iframe/images/placeholder.png +0 -0
  148. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/image/dialogs/image.js +41 -0
  149. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/image/images/noimage.png +0 -0
  150. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/link/dialogs/anchor.js +8 -0
  151. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/link/dialogs/link.js +36 -0
  152. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/link/images/anchor.png +0 -0
  153. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/liststyle/dialogs/liststyle.js +10 -0
  154. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/magicline/images/icon.png +0 -0
  155. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  156. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/pastefromword/filter/default.js +31 -0
  157. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/preview/preview.html +10 -0
  158. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/scayt/LICENSE.md +28 -0
  159. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/scayt/README.md +25 -0
  160. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/scayt/dialogs/options.js +19 -0
  161. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/scayt/dialogs/toolbar.css +71 -0
  162. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  163. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  164. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  165. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  166. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  167. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  168. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  169. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  170. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  171. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  172. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  173. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/dialogs/smiley.js +10 -0
  174. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  175. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  176. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  177. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  178. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  179. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  180. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  181. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/embarrassed_smile.gif +0 -0
  182. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  183. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/heart.gif +0 -0
  184. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  185. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  186. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  187. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  188. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  189. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  190. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  191. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  192. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  193. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/tongue_smile.gif +0 -0
  194. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  195. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  196. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  197. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt +20 -0
  198. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/ca.js +13 -0
  199. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/cs.js +13 -0
  200. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/cy.js +14 -0
  201. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/de.js +13 -0
  202. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/el.js +13 -0
  203. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/en.js +13 -0
  204. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/eo.js +12 -0
  205. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/et.js +13 -0
  206. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/fa.js +13 -0
  207. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/fi.js +13 -0
  208. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/fr.js +11 -0
  209. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/he.js +13 -0
  210. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/hr.js +13 -0
  211. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/it.js +14 -0
  212. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/ku.js +14 -0
  213. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/lv.js +13 -0
  214. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/nb.js +11 -0
  215. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/nl.js +13 -0
  216. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/no.js +11 -0
  217. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js +11 -0
  218. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/sk.js +13 -0
  219. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/sv.js +11 -0
  220. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/tr.js +12 -0
  221. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/ug.js +13 -0
  222. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js +9 -0
  223. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/specialchar/dialogs/specialchar.js +14 -0
  224. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/table/dialogs/table.js +20 -0
  225. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/tabletools/dialogs/tableCell.js +16 -0
  226. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/dialogs/templates.css +84 -0
  227. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/dialogs/templates.js +10 -0
  228. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/templates/default.js +6 -0
  229. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  230. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  231. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  232. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/LICENSE.md +28 -0
  233. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/README.md +25 -0
  234. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  235. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  236. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/dialogs/wsc.css +82 -0
  237. data/lib/generators/fullstack/ckeditor/templates/ckeditor/plugins/wsc/dialogs/wsc.js +11 -0
  238. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog.css +5 -0
  239. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_ie.css +5 -0
  240. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_ie7.css +5 -0
  241. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_ie8.css +5 -0
  242. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_iequirks.css +5 -0
  243. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/dialog_opera.css +5 -0
  244. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor.css +5 -0
  245. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_gecko.css +5 -0
  246. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_ie.css +5 -0
  247. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_ie7.css +5 -0
  248. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_ie8.css +5 -0
  249. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/editor_iequirks.css +5 -0
  250. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/icons.png +0 -0
  251. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/images/arrow.png +0 -0
  252. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/images/close.png +0 -0
  253. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/images/mini.png +0 -0
  254. data/lib/generators/fullstack/ckeditor/templates/ckeditor/skins/moono/readme.md +51 -0
  255. data/lib/generators/fullstack/ckeditor/templates/ckeditor/styles.js +112 -0
  256. metadata +352 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the gem file manually.