lolita 3.0.4 → 3.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (330) hide show
  1. data/GUIDELINE +5 -0
  2. data/Gemfile +18 -13
  3. data/VERSION +1 -1
  4. data/app/controllers/lolita/rest_controller.rb +4 -1
  5. data/app/helpers/lolita_helper.rb +10 -1
  6. data/app/views/components/lolita/list/_new_resource.html.erb +1 -1
  7. data/app/views/components/lolita/list/_tool_cell.html.erb +3 -3
  8. data/app/views/components/lolita/shared/_flash.html.erb +13 -0
  9. data/app/views/components/lolita/shared/_right_sidebar.html.erb +14 -0
  10. data/app/views/components/lolita/tab/_default.html.erb +1 -0
  11. data/app/views/components/lolita/tabs/_display.html.erb +4 -19
  12. data/app/views/lolita/layouts/application.html.erb +1 -1
  13. data/app/views/lolita/layouts/application.html.erb_spec.rb +0 -0
  14. data/config/locales/en.yml +2 -0
  15. data/features/create_page.feature +20 -0
  16. data/features/step_definitions/lolita_steps.rb +7 -0
  17. data/features/step_definitions/web_steps.rb +219 -0
  18. data/features/support/env.rb +73 -0
  19. data/features/support/paths.rb +35 -0
  20. data/lib/lolita.rb +5 -3
  21. data/lib/lolita/adapter/abstract_adapter.rb +1 -0
  22. data/lib/lolita/adapter/active_record.rb +4 -0
  23. data/lib/lolita/adapter/mongoid.rb +4 -0
  24. data/lib/lolita/base_configuration.rb +50 -12
  25. data/lib/lolita/configuration/tab.rb +7 -6
  26. data/lib/lolita/configuration/tabs.rb +9 -0
  27. data/lib/lolita/mapping.rb +4 -1
  28. data/lib/lolita/modules.rb +3 -17
  29. data/lib/lolita/rails/all.rb +3 -0
  30. data/lib/lolita/rails/routes.rb +9 -5
  31. data/lib/lolita/test/matchers.rb +77 -0
  32. data/lolita.gemspec +86 -215
  33. data/public/images/lolita/plus.png +0 -0
  34. data/public/javascripts/lolita/tab.js +40 -37
  35. data/public/javascripts/tinymce/langs/en.js +221 -221
  36. data/public/javascripts/tinymce/license.txt +504 -504
  37. data/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
  38. data/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
  39. data/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
  40. data/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
  41. data/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
  42. data/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
  43. data/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
  44. data/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
  45. data/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
  46. data/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
  47. data/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
  48. data/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
  49. data/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
  50. data/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
  51. data/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
  52. data/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
  53. data/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
  54. data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
  55. data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
  56. data/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
  57. data/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
  58. data/public/stylesheets/lolita/style.css +30 -2
  59. data/spec/configuration/tab_spec.rb +42 -0
  60. data/spec/configuration/tabs_spec.rb +12 -0
  61. data/spec/lolita_spec.rb +1 -1
  62. data/spec/rails_app/app/mongoid/post.rb +3 -2
  63. data/spec/rails_app/config/application.rb +13 -13
  64. data/spec/rails_app/public/images/lolita/plus.png +0 -0
  65. data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +16 -0
  66. data/spec/rails_app/public/javascripts/lolita/main.js +6 -0
  67. data/spec/rails_app/public/javascripts/lolita/tab.js +41 -0
  68. data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +2 -0
  69. data/spec/rails_app/public/javascripts/rails.js +137 -0
  70. data/spec/rails_app/public/javascripts/tinymce/jquery.tinymce.js +1 -0
  71. data/spec/rails_app/public/javascripts/tinymce/langs/en.js +222 -0
  72. data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -0
  73. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -0
  74. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -0
  75. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -0
  76. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -0
  77. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template.js +1 -0
  78. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -0
  79. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -0
  80. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/colorpicker.jpg +0 -0
  81. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/flash.gif +0 -0
  82. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/icons.gif +0 -0
  83. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/iframe.gif +0 -0
  84. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/pagebreak.gif +0 -0
  85. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/quicktime.gif +0 -0
  86. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/realmedia.gif +0 -0
  87. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/shockwave.gif +0 -0
  88. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/trans.gif +0 -0
  89. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/video.gif +0 -0
  90. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/img/windowsmedia.gif +0 -0
  91. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -0
  92. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -0
  93. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -0
  94. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -0
  95. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -0
  96. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -0
  97. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -0
  98. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -0
  99. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +54 -0
  100. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -0
  101. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -0
  102. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -0
  103. data/{public/javascripts/tinymce/themes/advanced/skins/default → spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit}/dialog.css +117 -117
  104. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/img/butt2.png +0 -0
  105. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/img/button-bg.png +0 -0
  106. data/{public/javascripts/tinymce/themes/advanced/skins/default → spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit}/img/buttons.png +0 -0
  107. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/img/down_arrow.gif +0 -0
  108. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/img/fade-butt.png +0 -0
  109. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/img/icons.png +0 -0
  110. data/{public/javascripts/tinymce/themes/advanced/skins/default → spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit}/img/items.gif +0 -0
  111. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/img/menu-arrow.png +0 -0
  112. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/img/menu-check.png +0 -0
  113. data/{public/javascripts/tinymce/themes/advanced/skins/default → spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit}/img/progress.gif +0 -0
  114. data/{public/javascripts/tinymce/themes/advanced/skins/default → spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit}/img/tabs.gif +0 -0
  115. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/img/toolbarbg.png +0 -0
  116. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -0
  117. data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -0
  118. data/spec/rails_app/public/javascripts/tinymce/tiny_mce.js +1 -0
  119. data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +5 -0
  120. data/spec/rails_app/public/stylesheets/lolita/default.css +169 -0
  121. data/spec/rails_app/public/stylesheets/lolita/style.css +214 -0
  122. metadata +138 -227
  123. data/public/javascripts/tinymce/plugins/advhr/css/advhr.css +0 -5
  124. data/public/javascripts/tinymce/plugins/advhr/editor_plugin.js +0 -1
  125. data/public/javascripts/tinymce/plugins/advhr/editor_plugin_src.js +0 -57
  126. data/public/javascripts/tinymce/plugins/advhr/js/rule.js +0 -43
  127. data/public/javascripts/tinymce/plugins/advhr/langs/en_dlg.js +0 -7
  128. data/public/javascripts/tinymce/plugins/advhr/rule.htm +0 -58
  129. data/public/javascripts/tinymce/plugins/advimage/css/advimage.css +0 -13
  130. data/public/javascripts/tinymce/plugins/advimage/editor_plugin.js +0 -1
  131. data/public/javascripts/tinymce/plugins/advimage/editor_plugin_src.js +0 -50
  132. data/public/javascripts/tinymce/plugins/advimage/image.htm +0 -235
  133. data/public/javascripts/tinymce/plugins/advimage/img/sample.gif +0 -0
  134. data/public/javascripts/tinymce/plugins/advimage/js/image.js +0 -445
  135. data/public/javascripts/tinymce/plugins/advimage/langs/en_dlg.js +0 -45
  136. data/public/javascripts/tinymce/plugins/advlink/css/advlink.css +0 -8
  137. data/public/javascripts/tinymce/plugins/advlink/editor_plugin.js +0 -1
  138. data/public/javascripts/tinymce/plugins/advlink/editor_plugin_src.js +0 -61
  139. data/public/javascripts/tinymce/plugins/advlink/js/advlink.js +0 -525
  140. data/public/javascripts/tinymce/plugins/advlink/langs/en_dlg.js +0 -54
  141. data/public/javascripts/tinymce/plugins/advlink/link.htm +0 -338
  142. data/public/javascripts/tinymce/plugins/advlist/editor_plugin.js +0 -1
  143. data/public/javascripts/tinymce/plugins/advlist/editor_plugin_src.js +0 -154
  144. data/public/javascripts/tinymce/plugins/autoresize/editor_plugin.js +0 -1
  145. data/public/javascripts/tinymce/plugins/autoresize/editor_plugin_src.js +0 -119
  146. data/public/javascripts/tinymce/plugins/autosave/editor_plugin.js +0 -1
  147. data/public/javascripts/tinymce/plugins/autosave/editor_plugin_src.js +0 -431
  148. data/public/javascripts/tinymce/plugins/autosave/langs/en.js +0 -4
  149. data/public/javascripts/tinymce/plugins/bbcode/editor_plugin.js +0 -1
  150. data/public/javascripts/tinymce/plugins/bbcode/editor_plugin_src.js +0 -120
  151. data/public/javascripts/tinymce/plugins/contextmenu/editor_plugin.js +0 -1
  152. data/public/javascripts/tinymce/plugins/contextmenu/editor_plugin_src.js +0 -154
  153. data/public/javascripts/tinymce/plugins/directionality/editor_plugin.js +0 -1
  154. data/public/javascripts/tinymce/plugins/directionality/editor_plugin_src.js +0 -82
  155. data/public/javascripts/tinymce/plugins/emotions/editor_plugin.js +0 -1
  156. data/public/javascripts/tinymce/plugins/emotions/editor_plugin_src.js +0 -43
  157. data/public/javascripts/tinymce/plugins/emotions/emotions.htm +0 -41
  158. data/public/javascripts/tinymce/plugins/emotions/img/smiley-cool.gif +0 -0
  159. data/public/javascripts/tinymce/plugins/emotions/img/smiley-cry.gif +0 -0
  160. data/public/javascripts/tinymce/plugins/emotions/img/smiley-embarassed.gif +0 -0
  161. data/public/javascripts/tinymce/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
  162. data/public/javascripts/tinymce/plugins/emotions/img/smiley-frown.gif +0 -0
  163. data/public/javascripts/tinymce/plugins/emotions/img/smiley-innocent.gif +0 -0
  164. data/public/javascripts/tinymce/plugins/emotions/img/smiley-kiss.gif +0 -0
  165. data/public/javascripts/tinymce/plugins/emotions/img/smiley-laughing.gif +0 -0
  166. data/public/javascripts/tinymce/plugins/emotions/img/smiley-money-mouth.gif +0 -0
  167. data/public/javascripts/tinymce/plugins/emotions/img/smiley-sealed.gif +0 -0
  168. data/public/javascripts/tinymce/plugins/emotions/img/smiley-smile.gif +0 -0
  169. data/public/javascripts/tinymce/plugins/emotions/img/smiley-surprised.gif +0 -0
  170. data/public/javascripts/tinymce/plugins/emotions/img/smiley-tongue-out.gif +0 -0
  171. data/public/javascripts/tinymce/plugins/emotions/img/smiley-undecided.gif +0 -0
  172. data/public/javascripts/tinymce/plugins/emotions/img/smiley-wink.gif +0 -0
  173. data/public/javascripts/tinymce/plugins/emotions/img/smiley-yell.gif +0 -0
  174. data/public/javascripts/tinymce/plugins/emotions/js/emotions.js +0 -22
  175. data/public/javascripts/tinymce/plugins/emotions/langs/en_dlg.js +0 -20
  176. data/public/javascripts/tinymce/plugins/example/dialog.htm +0 -22
  177. data/public/javascripts/tinymce/plugins/example/editor_plugin.js +0 -1
  178. data/public/javascripts/tinymce/plugins/example/editor_plugin_src.js +0 -84
  179. data/public/javascripts/tinymce/plugins/example/img/example.gif +0 -0
  180. data/public/javascripts/tinymce/plugins/example/js/dialog.js +0 -19
  181. data/public/javascripts/tinymce/plugins/example/langs/en.js +0 -3
  182. data/public/javascripts/tinymce/plugins/example/langs/en_dlg.js +0 -3
  183. data/public/javascripts/tinymce/plugins/fullpage/css/fullpage.css +0 -182
  184. data/public/javascripts/tinymce/plugins/fullpage/editor_plugin.js +0 -1
  185. data/public/javascripts/tinymce/plugins/fullpage/editor_plugin_src.js +0 -166
  186. data/public/javascripts/tinymce/plugins/fullpage/fullpage.htm +0 -571
  187. data/public/javascripts/tinymce/plugins/fullpage/js/fullpage.js +0 -492
  188. data/public/javascripts/tinymce/plugins/fullpage/langs/en_dlg.js +0 -85
  189. data/public/javascripts/tinymce/plugins/fullscreen/editor_plugin.js +0 -1
  190. data/public/javascripts/tinymce/plugins/fullscreen/editor_plugin_src.js +0 -159
  191. data/public/javascripts/tinymce/plugins/fullscreen/fullscreen.htm +0 -109
  192. data/public/javascripts/tinymce/plugins/iespell/editor_plugin.js +0 -1
  193. data/public/javascripts/tinymce/plugins/iespell/editor_plugin_src.js +0 -54
  194. data/public/javascripts/tinymce/plugins/inlinepopups/editor_plugin.js +0 -1
  195. data/public/javascripts/tinymce/plugins/inlinepopups/editor_plugin_src.js +0 -696
  196. data/public/javascripts/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  197. data/public/javascripts/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  198. data/public/javascripts/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  199. data/public/javascripts/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  200. data/public/javascripts/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  201. data/public/javascripts/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  202. data/public/javascripts/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  203. data/public/javascripts/tinymce/plugins/inlinepopups/skins/clearlooks2/window.css +0 -90
  204. data/public/javascripts/tinymce/plugins/inlinepopups/template.htm +0 -387
  205. data/public/javascripts/tinymce/plugins/insertdatetime/editor_plugin.js +0 -1
  206. data/public/javascripts/tinymce/plugins/insertdatetime/editor_plugin_src.js +0 -83
  207. data/public/javascripts/tinymce/plugins/layer/editor_plugin.js +0 -1
  208. data/public/javascripts/tinymce/plugins/layer/editor_plugin_src.js +0 -214
  209. data/public/javascripts/tinymce/plugins/legacyoutput/editor_plugin.js +0 -1
  210. data/public/javascripts/tinymce/plugins/legacyoutput/editor_plugin_src.js +0 -139
  211. data/public/javascripts/tinymce/plugins/media/css/media.css +0 -17
  212. data/public/javascripts/tinymce/plugins/media/editor_plugin.js +0 -1
  213. data/public/javascripts/tinymce/plugins/media/editor_plugin_src.js +0 -770
  214. data/public/javascripts/tinymce/plugins/media/js/embed.js +0 -73
  215. data/public/javascripts/tinymce/plugins/media/js/media.js +0 -340
  216. data/public/javascripts/tinymce/plugins/media/langs/en_dlg.js +0 -109
  217. data/public/javascripts/tinymce/plugins/media/media.htm +0 -812
  218. data/public/javascripts/tinymce/plugins/media/moxieplayer.swf +0 -0
  219. data/public/javascripts/tinymce/plugins/nonbreaking/editor_plugin.js +0 -1
  220. data/public/javascripts/tinymce/plugins/nonbreaking/editor_plugin_src.js +0 -53
  221. data/public/javascripts/tinymce/plugins/noneditable/editor_plugin.js +0 -1
  222. data/public/javascripts/tinymce/plugins/noneditable/editor_plugin_src.js +0 -90
  223. data/public/javascripts/tinymce/plugins/pagebreak/editor_plugin.js +0 -1
  224. data/public/javascripts/tinymce/plugins/pagebreak/editor_plugin_src.js +0 -74
  225. data/public/javascripts/tinymce/plugins/paste/editor_plugin.js +0 -1
  226. data/public/javascripts/tinymce/plugins/paste/editor_plugin_src.js +0 -899
  227. data/public/javascripts/tinymce/plugins/paste/js/pastetext.js +0 -36
  228. data/public/javascripts/tinymce/plugins/paste/js/pasteword.js +0 -51
  229. data/public/javascripts/tinymce/plugins/paste/langs/en_dlg.js +0 -5
  230. data/public/javascripts/tinymce/plugins/paste/pastetext.htm +0 -27
  231. data/public/javascripts/tinymce/plugins/paste/pasteword.htm +0 -21
  232. data/public/javascripts/tinymce/plugins/preview/editor_plugin.js +0 -1
  233. data/public/javascripts/tinymce/plugins/preview/editor_plugin_src.js +0 -53
  234. data/public/javascripts/tinymce/plugins/preview/example.html +0 -28
  235. data/public/javascripts/tinymce/plugins/preview/jscripts/embed.js +0 -73
  236. data/public/javascripts/tinymce/plugins/preview/preview.html +0 -17
  237. data/public/javascripts/tinymce/plugins/print/editor_plugin.js +0 -1
  238. data/public/javascripts/tinymce/plugins/print/editor_plugin_src.js +0 -34
  239. data/public/javascripts/tinymce/plugins/save/editor_plugin.js +0 -1
  240. data/public/javascripts/tinymce/plugins/save/editor_plugin_src.js +0 -101
  241. data/public/javascripts/tinymce/plugins/searchreplace/css/searchreplace.css +0 -6
  242. data/public/javascripts/tinymce/plugins/searchreplace/editor_plugin.js +0 -1
  243. data/public/javascripts/tinymce/plugins/searchreplace/editor_plugin_src.js +0 -61
  244. data/public/javascripts/tinymce/plugins/searchreplace/js/searchreplace.js +0 -140
  245. data/public/javascripts/tinymce/plugins/searchreplace/langs/en_dlg.js +0 -16
  246. data/public/javascripts/tinymce/plugins/searchreplace/searchreplace.htm +0 -100
  247. data/public/javascripts/tinymce/plugins/spellchecker/css/content.css +0 -1
  248. data/public/javascripts/tinymce/plugins/spellchecker/editor_plugin.js +0 -1
  249. data/public/javascripts/tinymce/plugins/spellchecker/editor_plugin_src.js +0 -415
  250. data/public/javascripts/tinymce/plugins/spellchecker/img/wline.gif +0 -0
  251. data/public/javascripts/tinymce/plugins/style/css/props.css +0 -13
  252. data/public/javascripts/tinymce/plugins/style/editor_plugin.js +0 -1
  253. data/public/javascripts/tinymce/plugins/style/editor_plugin_src.js +0 -55
  254. data/public/javascripts/tinymce/plugins/style/js/props.js +0 -635
  255. data/public/javascripts/tinymce/plugins/style/langs/en_dlg.js +0 -70
  256. data/public/javascripts/tinymce/plugins/style/props.htm +0 -838
  257. data/public/javascripts/tinymce/plugins/tabfocus/editor_plugin.js +0 -1
  258. data/public/javascripts/tinymce/plugins/tabfocus/editor_plugin_src.js +0 -114
  259. data/public/javascripts/tinymce/plugins/table/cell.htm +0 -178
  260. data/public/javascripts/tinymce/plugins/table/css/cell.css +0 -17
  261. data/public/javascripts/tinymce/plugins/table/css/row.css +0 -25
  262. data/public/javascripts/tinymce/plugins/table/css/table.css +0 -13
  263. data/public/javascripts/tinymce/plugins/table/editor_plugin.js +0 -1
  264. data/public/javascripts/tinymce/plugins/table/editor_plugin_src.js +0 -1183
  265. data/public/javascripts/tinymce/plugins/table/js/cell.js +0 -284
  266. data/public/javascripts/tinymce/plugins/table/js/merge_cells.js +0 -27
  267. data/public/javascripts/tinymce/plugins/table/js/row.js +0 -232
  268. data/public/javascripts/tinymce/plugins/table/js/table.js +0 -450
  269. data/public/javascripts/tinymce/plugins/table/langs/en_dlg.js +0 -74
  270. data/public/javascripts/tinymce/plugins/table/merge_cells.htm +0 -32
  271. data/public/javascripts/tinymce/plugins/table/row.htm +0 -157
  272. data/public/javascripts/tinymce/plugins/table/table.htm +0 -188
  273. data/public/javascripts/tinymce/plugins/template/blank.htm +0 -12
  274. data/public/javascripts/tinymce/plugins/template/css/template.css +0 -23
  275. data/public/javascripts/tinymce/plugins/template/editor_plugin.js +0 -1
  276. data/public/javascripts/tinymce/plugins/template/editor_plugin_src.js +0 -159
  277. data/public/javascripts/tinymce/plugins/template/js/template.js +0 -106
  278. data/public/javascripts/tinymce/plugins/template/langs/en_dlg.js +0 -15
  279. data/public/javascripts/tinymce/plugins/template/template.htm +0 -31
  280. data/public/javascripts/tinymce/plugins/visualchars/editor_plugin.js +0 -1
  281. data/public/javascripts/tinymce/plugins/visualchars/editor_plugin_src.js +0 -83
  282. data/public/javascripts/tinymce/plugins/wordcount/editor_plugin.js +0 -1
  283. data/public/javascripts/tinymce/plugins/wordcount/editor_plugin_src.js +0 -114
  284. data/public/javascripts/tinymce/plugins/xhtmlxtras/abbr.htm +0 -142
  285. data/public/javascripts/tinymce/plugins/xhtmlxtras/acronym.htm +0 -142
  286. data/public/javascripts/tinymce/plugins/xhtmlxtras/attributes.htm +0 -149
  287. data/public/javascripts/tinymce/plugins/xhtmlxtras/cite.htm +0 -142
  288. data/public/javascripts/tinymce/plugins/xhtmlxtras/css/attributes.css +0 -11
  289. data/public/javascripts/tinymce/plugins/xhtmlxtras/css/popup.css +0 -9
  290. data/public/javascripts/tinymce/plugins/xhtmlxtras/del.htm +0 -162
  291. data/public/javascripts/tinymce/plugins/xhtmlxtras/editor_plugin.js +0 -1
  292. data/public/javascripts/tinymce/plugins/xhtmlxtras/editor_plugin_src.js +0 -132
  293. data/public/javascripts/tinymce/plugins/xhtmlxtras/ins.htm +0 -162
  294. data/public/javascripts/tinymce/plugins/xhtmlxtras/js/abbr.js +0 -28
  295. data/public/javascripts/tinymce/plugins/xhtmlxtras/js/acronym.js +0 -28
  296. data/public/javascripts/tinymce/plugins/xhtmlxtras/js/attributes.js +0 -125
  297. data/public/javascripts/tinymce/plugins/xhtmlxtras/js/cite.js +0 -28
  298. data/public/javascripts/tinymce/plugins/xhtmlxtras/js/del.js +0 -53
  299. data/public/javascripts/tinymce/plugins/xhtmlxtras/js/element_common.js +0 -229
  300. data/public/javascripts/tinymce/plugins/xhtmlxtras/js/ins.js +0 -53
  301. data/public/javascripts/tinymce/plugins/xhtmlxtras/langs/en_dlg.js +0 -32
  302. data/public/javascripts/tinymce/themes/advanced/skins/default/content.css +0 -47
  303. data/public/javascripts/tinymce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
  304. data/public/javascripts/tinymce/themes/advanced/skins/default/img/menu_check.gif +0 -0
  305. data/public/javascripts/tinymce/themes/advanced/skins/default/ui.css +0 -213
  306. data/public/javascripts/tinymce/themes/advanced/skins/highcontrast/content.css +0 -23
  307. data/public/javascripts/tinymce/themes/advanced/skins/highcontrast/dialog.css +0 -105
  308. data/public/javascripts/tinymce/themes/advanced/skins/highcontrast/ui.css +0 -101
  309. data/public/javascripts/tinymce/themes/advanced/skins/o2k7/content.css +0 -46
  310. data/public/javascripts/tinymce/themes/advanced/skins/o2k7/dialog.css +0 -116
  311. data/public/javascripts/tinymce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  312. data/public/javascripts/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  313. data/public/javascripts/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  314. data/public/javascripts/tinymce/themes/advanced/skins/o2k7/ui.css +0 -215
  315. data/public/javascripts/tinymce/themes/advanced/skins/o2k7/ui_black.css +0 -8
  316. data/public/javascripts/tinymce/themes/advanced/skins/o2k7/ui_silver.css +0 -5
  317. data/public/javascripts/tinymce/themes/simple/editor_template.js +0 -1
  318. data/public/javascripts/tinymce/themes/simple/editor_template_src.js +0 -84
  319. data/public/javascripts/tinymce/themes/simple/img/icons.gif +0 -0
  320. data/public/javascripts/tinymce/themes/simple/langs/en.js +0 -11
  321. data/public/javascripts/tinymce/themes/simple/skins/default/content.css +0 -25
  322. data/public/javascripts/tinymce/themes/simple/skins/default/ui.css +0 -32
  323. data/public/javascripts/tinymce/themes/simple/skins/o2k7/content.css +0 -17
  324. data/public/javascripts/tinymce/themes/simple/skins/o2k7/img/button_bg.png +0 -0
  325. data/public/javascripts/tinymce/themes/simple/skins/o2k7/ui.css +0 -35
  326. data/public/javascripts/tinymce/tiny_mce_src.js +0 -14724
  327. data/public/javascripts/tinymce/utils/editable_selects.js +0 -70
  328. data/public/javascripts/tinymce/utils/form_utils.js +0 -207
  329. data/public/javascripts/tinymce/utils/mctabs.js +0 -162
  330. data/public/javascripts/tinymce/utils/validate.js +0 -252
@@ -1,6 +0,0 @@
1
- .panel_wrapper {height:85px;}
2
- .panel_wrapper div.current {height:85px;}
3
-
4
- /* IE */
5
- * html .panel_wrapper {height:100px;}
6
- * html .panel_wrapper div.current {height:100px;}
@@ -1 +0,0 @@
1
- (function(){tinymce.create("tinymce.plugins.SearchReplacePlugin",{init:function(a,c){function b(d){window.focus();a.windowManager.open({file:c+"/searchreplace.htm",width:420+parseInt(a.getLang("searchreplace.delta_width",0)),height:170+parseInt(a.getLang("searchreplace.delta_height",0)),inline:1,auto_focus:0},{mode:d,search_string:a.selection.getContent({format:"text"}),plugin_url:c})}a.addCommand("mceSearch",function(){b("search")});a.addCommand("mceReplace",function(){b("replace")});a.addButton("search",{title:"searchreplace.search_desc",cmd:"mceSearch"});a.addButton("replace",{title:"searchreplace.replace_desc",cmd:"mceReplace"});a.addShortcut("ctrl+f","searchreplace.search_desc","mceSearch")},getInfo:function(){return{longname:"Search/Replace",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/searchreplace",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("searchreplace",tinymce.plugins.SearchReplacePlugin)})();
@@ -1,61 +0,0 @@
1
- /**
2
- * editor_plugin_src.js
3
- *
4
- * Copyright 2009, Moxiecode Systems AB
5
- * Released under LGPL License.
6
- *
7
- * License: http://tinymce.moxiecode.com/license
8
- * Contributing: http://tinymce.moxiecode.com/contributing
9
- */
10
-
11
- (function() {
12
- tinymce.create('tinymce.plugins.SearchReplacePlugin', {
13
- init : function(ed, url) {
14
- function open(m) {
15
- // Keep IE from writing out the f/r character to the editor
16
- // instance while initializing a new dialog. See: #3131190
17
- window.focus();
18
-
19
- ed.windowManager.open({
20
- file : url + '/searchreplace.htm',
21
- width : 420 + parseInt(ed.getLang('searchreplace.delta_width', 0)),
22
- height : 170 + parseInt(ed.getLang('searchreplace.delta_height', 0)),
23
- inline : 1,
24
- auto_focus : 0
25
- }, {
26
- mode : m,
27
- search_string : ed.selection.getContent({format : 'text'}),
28
- plugin_url : url
29
- });
30
- };
31
-
32
- // Register commands
33
- ed.addCommand('mceSearch', function() {
34
- open('search');
35
- });
36
-
37
- ed.addCommand('mceReplace', function() {
38
- open('replace');
39
- });
40
-
41
- // Register buttons
42
- ed.addButton('search', {title : 'searchreplace.search_desc', cmd : 'mceSearch'});
43
- ed.addButton('replace', {title : 'searchreplace.replace_desc', cmd : 'mceReplace'});
44
-
45
- ed.addShortcut('ctrl+f', 'searchreplace.search_desc', 'mceSearch');
46
- },
47
-
48
- getInfo : function() {
49
- return {
50
- longname : 'Search/Replace',
51
- author : 'Moxiecode Systems AB',
52
- authorurl : 'http://tinymce.moxiecode.com',
53
- infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/searchreplace',
54
- version : tinymce.majorVersion + "." + tinymce.minorVersion
55
- };
56
- }
57
- });
58
-
59
- // Register plugin
60
- tinymce.PluginManager.add('searchreplace', tinymce.plugins.SearchReplacePlugin);
61
- })();
@@ -1,140 +0,0 @@
1
- tinyMCEPopup.requireLangPack();
2
-
3
- var SearchReplaceDialog = {
4
- init : function(ed) {
5
- var t = this, f = document.forms[0], m = tinyMCEPopup.getWindowArg("mode");
6
-
7
- t.switchMode(m);
8
-
9
- f[m + '_panel_searchstring'].value = tinyMCEPopup.getWindowArg("search_string");
10
-
11
- // Focus input field
12
- f[m + '_panel_searchstring'].focus();
13
-
14
- mcTabs.onChange.add(function(tab_id, panel_id) {
15
- t.switchMode(tab_id.substring(0, tab_id.indexOf('_')));
16
- });
17
- },
18
-
19
- switchMode : function(m) {
20
- var f, lm = this.lastMode;
21
-
22
- if (lm != m) {
23
- f = document.forms[0];
24
-
25
- if (lm) {
26
- f[m + '_panel_searchstring'].value = f[lm + '_panel_searchstring'].value;
27
- f[m + '_panel_backwardsu'].checked = f[lm + '_panel_backwardsu'].checked;
28
- f[m + '_panel_backwardsd'].checked = f[lm + '_panel_backwardsd'].checked;
29
- f[m + '_panel_casesensitivebox'].checked = f[lm + '_panel_casesensitivebox'].checked;
30
- }
31
-
32
- mcTabs.displayTab(m + '_tab', m + '_panel');
33
- document.getElementById("replaceBtn").style.display = (m == "replace") ? "inline" : "none";
34
- document.getElementById("replaceAllBtn").style.display = (m == "replace") ? "inline" : "none";
35
- this.lastMode = m;
36
- }
37
- },
38
-
39
- searchNext : function(a) {
40
- var ed = tinyMCEPopup.editor, se = ed.selection, r = se.getRng(), f, m = this.lastMode, s, b, fl = 0, w = ed.getWin(), wm = ed.windowManager, fo = 0;
41
-
42
- // Get input
43
- f = document.forms[0];
44
- s = f[m + '_panel_searchstring'].value;
45
- b = f[m + '_panel_backwardsu'].checked;
46
- ca = f[m + '_panel_casesensitivebox'].checked;
47
- rs = f['replace_panel_replacestring'].value;
48
-
49
- if (tinymce.isIE) {
50
- r = ed.getDoc().selection.createRange();
51
- }
52
-
53
- if (s == '')
54
- return;
55
-
56
- function fix() {
57
- // Correct Firefox graphics glitches
58
- // TODO: Verify if this is actually needed any more, maybe it was for very old FF versions?
59
- r = se.getRng().cloneRange();
60
- ed.getDoc().execCommand('SelectAll', false, null);
61
- se.setRng(r);
62
- };
63
-
64
- function replace() {
65
- ed.selection.setContent(rs); // Needs to be duplicated due to selection bug in IE
66
- };
67
-
68
- // IE flags
69
- if (ca)
70
- fl = fl | 4;
71
-
72
- switch (a) {
73
- case 'all':
74
- // Move caret to beginning of text
75
- ed.execCommand('SelectAll');
76
- ed.selection.collapse(true);
77
-
78
- if (tinymce.isIE) {
79
- while (r.findText(s, b ? -1 : 1, fl)) {
80
- r.scrollIntoView();
81
- r.select();
82
- replace();
83
- fo = 1;
84
-
85
- if (b) {
86
- r.moveEnd("character", -(rs.length)); // Otherwise will loop forever
87
- }
88
- }
89
-
90
- tinyMCEPopup.storeSelection();
91
- } else {
92
- while (w.find(s, ca, b, false, false, false, false)) {
93
- replace();
94
- fo = 1;
95
- }
96
- }
97
-
98
- if (fo)
99
- tinyMCEPopup.alert(ed.getLang('searchreplace_dlg.allreplaced'));
100
- else
101
- tinyMCEPopup.alert(ed.getLang('searchreplace_dlg.notfound'));
102
-
103
- return;
104
-
105
- case 'current':
106
- if (!ed.selection.isCollapsed())
107
- replace();
108
-
109
- break;
110
- }
111
-
112
- se.collapse(b);
113
- r = se.getRng();
114
-
115
- if (tinymce.isIE) {
116
- r = ed.getDoc().selection.createRange();
117
- }
118
-
119
- // Whats the point
120
- if (!s)
121
- return;
122
-
123
- if (tinymce.isIE) {
124
- if (r.findText(s, b ? -1 : 1, fl)) {
125
- r.scrollIntoView();
126
- r.select();
127
- } else
128
- tinyMCEPopup.alert(ed.getLang('searchreplace_dlg.notfound'));
129
-
130
- tinyMCEPopup.storeSelection();
131
- } else {
132
- if (!w.find(s, ca, b, false, false, false, false))
133
- tinyMCEPopup.alert(ed.getLang('searchreplace_dlg.notfound'));
134
- else
135
- fix();
136
- }
137
- }
138
- };
139
-
140
- tinyMCEPopup.onInit.add(SearchReplaceDialog.init, SearchReplaceDialog);
@@ -1,16 +0,0 @@
1
- tinyMCE.addI18n('en.searchreplace_dlg',{
2
- searchnext_desc:"Find again",
3
- notfound:"The search has been completed. The search string could not be found.",
4
- search_title:"Find",
5
- replace_title:"Find/Replace",
6
- allreplaced:"All occurrences of the search string were replaced.",
7
- findwhat:"Find what",
8
- replacewith:"Replace with",
9
- direction:"Direction",
10
- up:"Up",
11
- down:"Down",
12
- mcase:"Match case",
13
- findnext:"Find next",
14
- replace:"Replace",
15
- replaceall:"Replace all"
16
- });
@@ -1,100 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
- <html xmlns="http://www.w3.org/1999/xhtml">
3
- <head>
4
- <title>{#searchreplace_dlg.replace_title}</title>
5
- <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
6
- <script type="text/javascript" src="../../utils/mctabs.js"></script>
7
- <script type="text/javascript" src="../../utils/form_utils.js"></script>
8
- <script type="text/javascript" src="js/searchreplace.js"></script>
9
- <link rel="stylesheet" type="text/css" href="css/searchreplace.css" />
10
- </head>
11
- <body style="display:none;" role="application" aria-labelledby="app_title">
12
- <span id="app_title" style="display:none">{#searchreplace_dlg.replace_title}</span>
13
- <form onsubmit="SearchReplaceDialog.searchNext('none');return false;" action="#">
14
- <div class="tabs">
15
- <ul>
16
- <li id="search_tab" aria-controls="search_panel"><span><a href="javascript:SearchReplaceDialog.switchMode('search');" onmousedown="return false;">{#searchreplace.search_desc}</a></span></li>
17
- <li id="replace_tab" aria-controls="replace_panel"><span><a href="javascript:SearchReplaceDialog.switchMode('replace');" onmousedown="return false;">{#searchreplace_dlg.replace}</a></span></li>
18
- </ul>
19
- </div>
20
-
21
- <div class="panel_wrapper">
22
- <div id="search_panel" class="panel">
23
- <table role="presentation" border="0" cellspacing="0" cellpadding="2">
24
- <tr>
25
- <td><label for="search_panel_searchstring">{#searchreplace_dlg.findwhat}</label></td>
26
- <td><input type="text" id="search_panel_searchstring" name="search_panel_searchstring" style="width: 200px" aria-required="true" /></td>
27
- </tr>
28
- <tr>
29
- <td colspan="2">
30
- <table role="presentation" border="0" cellspacing="0" cellpadding="0" class="direction">
31
- <tr role="group" aria-labelledby="search_panel_backwards_label">
32
- <td><label id="search_panel_backwards_label">{#searchreplace_dlg.direction}</label></td>
33
- <td><input id="search_panel_backwardsu" name="search_panel_backwards" class="radio" type="radio" /></td>
34
- <td><label for="search_panel_backwardsu">{#searchreplace_dlg.up}</label></td>
35
- <td><input id="search_panel_backwardsd" name="search_panel_backwards" class="radio" type="radio" checked="checked" /></td>
36
- <td><label for="search_panel_backwardsd">{#searchreplace_dlg.down}</label></td>
37
- </tr>
38
- </table>
39
- </td>
40
- </tr>
41
- <tr>
42
- <td colspan="2">
43
- <table role="presentation" border="0" cellspacing="0" cellpadding="0">
44
- <tr>
45
- <td><input id="search_panel_casesensitivebox" name="search_panel_casesensitivebox" class="checkbox" type="checkbox" /></td>
46
- <td><label for="search_panel_casesensitivebox">{#searchreplace_dlg.mcase}</label></td>
47
- </tr>
48
- </table>
49
- </td>
50
- </tr>
51
- </table>
52
- </div>
53
-
54
- <div id="replace_panel" class="panel">
55
- <table role="presentation" border="0" cellspacing="0" cellpadding="2">
56
- <tr>
57
- <td><label for="replace_panel_searchstring">{#searchreplace_dlg.findwhat}</label></td>
58
- <td><input type="text" id="replace_panel_searchstring" name="replace_panel_searchstring" style="width: 200px" aria-required="true" /></td>
59
- </tr>
60
- <tr>
61
- <td><label for="replace_panel_replacestring">{#searchreplace_dlg.replacewith}</label></td>
62
- <td><input type="text" id="replace_panel_replacestring" name="replace_panel_replacestring" style="width: 200px" aria-required="true" /></td>
63
- </tr>
64
- <tr>
65
- <td colspan="2">
66
- <table role="presentation" border="0" cellspacing="0" cellpadding="0" class="direction">
67
- <tr role="group" aria-labelledby="replace_panel_dir_label">
68
- <td><label id="replace_panel_dir_label">{#searchreplace_dlg.direction}</label></td>
69
- <td><input id="replace_panel_backwardsu" name="replace_panel_backwards" class="radio" type="radio" /></td>
70
- <td><label for="replace_panel_backwardsu">{#searchreplace_dlg.up}</label></td>
71
- <td><input id="replace_panel_backwardsd" name="replace_panel_backwards" class="radio" type="radio" checked="checked" /></td>
72
- <td><label for="replace_panel_backwardsd">{#searchreplace_dlg.down}</label></td>
73
- </tr>
74
- </table>
75
- </td>
76
- </tr>
77
- <tr>
78
- <td colspan="2">
79
- <table role="presentation" border="0" cellspacing="0" cellpadding="0">
80
- <tr>
81
- <td><input id="replace_panel_casesensitivebox" name="replace_panel_casesensitivebox" class="checkbox" type="checkbox" /></td>
82
- <td><label for="replace_panel_casesensitivebox">{#searchreplace_dlg.mcase}</label></td>
83
- </tr>
84
- </table>
85
- </td>
86
- </tr>
87
- </table>
88
- </div>
89
-
90
- </div>
91
-
92
- <div class="mceActionPanel">
93
- <input type="submit" id="insert" name="insert" value="{#searchreplace_dlg.findnext}" />
94
- <input type="button" class="button" id="replaceBtn" name="replaceBtn" value="{#searchreplace_dlg.replace}" onclick="SearchReplaceDialog.searchNext('current');" />
95
- <input type="button" class="button" id="replaceAllBtn" name="replaceAllBtn" value="{#searchreplace_dlg.replaceall}" onclick="SearchReplaceDialog.searchNext('all');" />
96
- <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
97
- </div>
98
- </form>
99
- </body>
100
- </html>
@@ -1 +0,0 @@
1
- .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;}
@@ -1 +0,0 @@
1
- (function(){var a=tinymce.util.JSONRequest,c=tinymce.each,b=tinymce.DOM;tinymce.create("tinymce.plugins.SpellcheckerPlugin",{getInfo:function(){return{longname:"Spellchecker",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker",version:tinymce.majorVersion+"."+tinymce.minorVersion}},init:function(e,f){var g=this,d;g.url=f;g.editor=e;g.rpcUrl=e.getParam("spellchecker_rpc_url","{backend}");if(g.rpcUrl=="{backend}"){if(tinymce.isIE){return}g.hasSupport=true;e.onContextMenu.addToTop(function(h,i){if(g.active){return false}})}e.addCommand("mceSpellCheck",function(){if(g.rpcUrl=="{backend}"){g.editor.getBody().spellcheck=g.active=!g.active;return}if(!g.active){e.setProgressState(1);g._sendRPC("checkWords",[g.selectedLang,g._getWords()],function(h){if(h.length>0){g.active=1;g._markWords(h);e.setProgressState(0);e.nodeChanged()}else{e.setProgressState(0);if(e.getParam("spellchecker_report_no_misspellings",true)){e.windowManager.alert("spellchecker.no_mpell")}}})}else{g._done()}});if(e.settings.content_css!==false){e.contentCSS.push(f+"/css/content.css")}e.onClick.add(g._showMenu,g);e.onContextMenu.add(g._showMenu,g);e.onBeforeGetContent.add(function(){if(g.active){g._removeWords()}});e.onNodeChange.add(function(i,h){h.setActive("spellchecker",g.active)});e.onSetContent.add(function(){g._done()});e.onBeforeGetContent.add(function(){g._done()});e.onBeforeExecCommand.add(function(h,i){if(i=="mceFullScreen"){g._done()}});g.languages={};c(e.getParam("spellchecker_languages","+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv","hash"),function(i,h){if(h.indexOf("+")===0){h=h.substring(1);g.selectedLang=i}g.languages[h]=i})},createControl:function(h,d){var f=this,g,e=f.editor;if(h=="spellchecker"){if(f.rpcUrl=="{backend}"){if(f.hasSupport){g=d.createButton(h,{title:"spellchecker.desc",cmd:"mceSpellCheck",scope:f})}return g}g=d.createSplitButton(h,{title:"spellchecker.desc",cmd:"mceSpellCheck",scope:f});g.onRenderMenu.add(function(j,i){i.add({title:"spellchecker.langs","class":"mceMenuItemTitle"}).setDisabled(1);c(f.languages,function(n,m){var p={icon:1},l;p.onclick=function(){l.setSelected(1);f.selectedItem.setSelected(0);f.selectedItem=l;f.selectedLang=n};p.title=m;l=i.add(p);l.setSelected(n==f.selectedLang);if(n==f.selectedLang){f.selectedItem=l}})});return g}},_walk:function(i,g){var h=this.editor.getDoc(),e;if(h.createTreeWalker){e=h.createTreeWalker(i,NodeFilter.SHOW_TEXT,null,false);while((i=e.nextNode())!=null){g.call(this,i)}}else{tinymce.walk(i,g,"childNodes")}},_getSeparators:function(){var e="",d,f=this.editor.getParam("spellchecker_word_separator_chars",'\\s!"#$%&()*+,-./:;<=>?@[]^_{|}����������������\u201d\u201c');for(d=0;d<f.length;d++){e+="\\"+f.charAt(d)}return e},_getWords:function(){var e=this.editor,g=[],d="",f={},h=[];this._walk(e.getBody(),function(i){if(i.nodeType==3){d+=i.nodeValue+" "}});if(e.getParam("spellchecker_word_pattern")){h=d.match("("+e.getParam("spellchecker_word_pattern")+")","gi")}else{d=d.replace(new RegExp("([0-9]|["+this._getSeparators()+"])","g")," ");d=tinymce.trim(d.replace(/(\s+)/g," "));h=d.split(" ")}c(h,function(i){if(!f[i]){g.push(i);f[i]=1}});return g},_removeWords:function(e){var f=this.editor,h=f.dom,g=f.selection,d=g.getBookmark();c(h.select("span").reverse(),function(i){if(i&&(h.hasClass(i,"mceItemHiddenSpellWord")||h.hasClass(i,"mceItemHidden"))){if(!e||h.decode(i.innerHTML)==e){h.remove(i,1)}}});g.moveToBookmark(d)},_markWords:function(o){var i,h,g,f,e,n="",k=this.editor,p=this._getSeparators(),j=k.dom,d=[];var l=k.selection,m=l.getBookmark();c(o,function(q){n+=(n?"|":"")+q});i=new RegExp("(["+p+"])("+n+")(["+p+"])","g");h=new RegExp("^("+n+")","g");g=new RegExp("("+n+")(["+p+"]?)$","g");f=new RegExp("^("+n+")(["+p+"]?)$","g");e=new RegExp("("+n+")(["+p+"])","g");this._walk(this.editor.getBody(),function(q){if(q.nodeType==3){d.push(q)}});c(d,function(r){var q;if(r.nodeType==3){q=r.nodeValue;if(i.test(q)||h.test(q)||g.test(q)||f.test(q)){q=j.encode(q);q=q.replace(e,'<span class="mceItemHiddenSpellWord">$1</span>$2');q=q.replace(g,'<span class="mceItemHiddenSpellWord">$1</span>$2');j.replace(j.create("span",{"class":"mceItemHidden"},q),r)}}});l.moveToBookmark(m)},_showMenu:function(h,j){var i=this,h=i.editor,d=i._menu,l,k=h.dom,g=k.getViewPort(h.getWin()),f=j.target;j=0;if(!d){l=b.getPos(h.getContentAreaContainer());d=h.controlManager.createDropMenu("spellcheckermenu",{offset_x:l.x,offset_y:l.y,"class":"mceNoIcons"});i._menu=d}if(k.hasClass(f,"mceItemHiddenSpellWord")){d.removeAll();d.add({title:"spellchecker.wait","class":"mceMenuItemTitle"}).setDisabled(1);i._sendRPC("getSuggestions",[i.selectedLang,k.decode(f.innerHTML)],function(m){var e;d.removeAll();if(m.length>0){d.add({title:"spellchecker.sug","class":"mceMenuItemTitle"}).setDisabled(1);c(m,function(n){d.add({title:n,onclick:function(){k.replace(h.getDoc().createTextNode(n),f);i._checkDone()}})});d.addSeparator()}else{d.add({title:"spellchecker.no_sug","class":"mceMenuItemTitle"}).setDisabled(1)}e=i.editor.getParam("spellchecker_enable_ignore_rpc","");d.add({title:"spellchecker.ignore_word",onclick:function(){var n=f.innerHTML;k.remove(f,1);i._checkDone();if(e){h.setProgressState(1);i._sendRPC("ignoreWord",[i.selectedLang,n],function(o){h.setProgressState(0)})}}});d.add({title:"spellchecker.ignore_words",onclick:function(){var n=f.innerHTML;i._removeWords(k.decode(n));i._checkDone();if(e){h.setProgressState(1);i._sendRPC("ignoreWords",[i.selectedLang,n],function(o){h.setProgressState(0)})}}});if(i.editor.getParam("spellchecker_enable_learn_rpc")){d.add({title:"spellchecker.learn_word",onclick:function(){var n=f.innerHTML;k.remove(f,1);i._checkDone();h.setProgressState(1);i._sendRPC("learnWord",[i.selectedLang,n],function(o){h.setProgressState(0)})}})}d.update()});h.selection.select(f);l=k.getPos(f);d.showMenu(l.x,l.y+f.offsetHeight-g.y);return tinymce.dom.Event.cancel(j)}else{d.hideMenu()}},_checkDone:function(){var e=this,d=e.editor,g=d.dom,f;c(g.select("span"),function(h){if(h&&g.hasClass(h,"mceItemHiddenSpellWord")){f=true;return false}});if(!f){e._done()}},_done:function(){var d=this,e=d.active;if(d.active){d.active=0;d._removeWords();if(d._menu){d._menu.hideMenu()}if(e){d.editor.nodeChanged()}}},_sendRPC:function(e,g,d){var f=this;a.sendRPC({url:f.rpcUrl,method:e,params:g,success:d,error:function(i,h){f.editor.setProgressState(0);f.editor.windowManager.alert(i.errstr||("Error response: "+h.responseText))}})}});tinymce.PluginManager.add("spellchecker",tinymce.plugins.SpellcheckerPlugin)})();
@@ -1,415 +0,0 @@
1
- /**
2
- * editor_plugin_src.js
3
- *
4
- * Copyright 2009, Moxiecode Systems AB
5
- * Released under LGPL License.
6
- *
7
- * License: http://tinymce.moxiecode.com/license
8
- * Contributing: http://tinymce.moxiecode.com/contributing
9
- */
10
-
11
- (function() {
12
- var JSONRequest = tinymce.util.JSONRequest, each = tinymce.each, DOM = tinymce.DOM;
13
-
14
- tinymce.create('tinymce.plugins.SpellcheckerPlugin', {
15
- getInfo : function() {
16
- return {
17
- longname : 'Spellchecker',
18
- author : 'Moxiecode Systems AB',
19
- authorurl : 'http://tinymce.moxiecode.com',
20
- infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker',
21
- version : tinymce.majorVersion + "." + tinymce.minorVersion
22
- };
23
- },
24
-
25
- init : function(ed, url) {
26
- var t = this, cm;
27
-
28
- t.url = url;
29
- t.editor = ed;
30
- t.rpcUrl = ed.getParam("spellchecker_rpc_url", "{backend}");
31
-
32
- if (t.rpcUrl == '{backend}') {
33
- // Sniff if the browser supports native spellchecking (Don't know of a better way)
34
- if (tinymce.isIE)
35
- return;
36
-
37
- t.hasSupport = true;
38
-
39
- // Disable the context menu when spellchecking is active
40
- ed.onContextMenu.addToTop(function(ed, e) {
41
- if (t.active)
42
- return false;
43
- });
44
- }
45
-
46
- // Register commands
47
- ed.addCommand('mceSpellCheck', function() {
48
- if (t.rpcUrl == '{backend}') {
49
- // Enable/disable native spellchecker
50
- t.editor.getBody().spellcheck = t.active = !t.active;
51
- return;
52
- }
53
-
54
- if (!t.active) {
55
- ed.setProgressState(1);
56
- t._sendRPC('checkWords', [t.selectedLang, t._getWords()], function(r) {
57
- if (r.length > 0) {
58
- t.active = 1;
59
- t._markWords(r);
60
- ed.setProgressState(0);
61
- ed.nodeChanged();
62
- } else {
63
- ed.setProgressState(0);
64
-
65
- if (ed.getParam('spellchecker_report_no_misspellings', true))
66
- ed.windowManager.alert('spellchecker.no_mpell');
67
- }
68
- });
69
- } else
70
- t._done();
71
- });
72
-
73
- if (ed.settings.content_css !== false)
74
- ed.contentCSS.push(url + '/css/content.css');
75
-
76
- ed.onClick.add(t._showMenu, t);
77
- ed.onContextMenu.add(t._showMenu, t);
78
- ed.onBeforeGetContent.add(function() {
79
- if (t.active)
80
- t._removeWords();
81
- });
82
-
83
- ed.onNodeChange.add(function(ed, cm) {
84
- cm.setActive('spellchecker', t.active);
85
- });
86
-
87
- ed.onSetContent.add(function() {
88
- t._done();
89
- });
90
-
91
- ed.onBeforeGetContent.add(function() {
92
- t._done();
93
- });
94
-
95
- ed.onBeforeExecCommand.add(function(ed, cmd) {
96
- if (cmd == 'mceFullScreen')
97
- t._done();
98
- });
99
-
100
- // Find selected language
101
- t.languages = {};
102
- each(ed.getParam('spellchecker_languages', '+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv', 'hash'), function(v, k) {
103
- if (k.indexOf('+') === 0) {
104
- k = k.substring(1);
105
- t.selectedLang = v;
106
- }
107
-
108
- t.languages[k] = v;
109
- });
110
- },
111
-
112
- createControl : function(n, cm) {
113
- var t = this, c, ed = t.editor;
114
-
115
- if (n == 'spellchecker') {
116
- // Use basic button if we use the native spellchecker
117
- if (t.rpcUrl == '{backend}') {
118
- // Create simple toggle button if we have native support
119
- if (t.hasSupport)
120
- c = cm.createButton(n, {title : 'spellchecker.desc', cmd : 'mceSpellCheck', scope : t});
121
-
122
- return c;
123
- }
124
-
125
- c = cm.createSplitButton(n, {title : 'spellchecker.desc', cmd : 'mceSpellCheck', scope : t});
126
-
127
- c.onRenderMenu.add(function(c, m) {
128
- m.add({title : 'spellchecker.langs', 'class' : 'mceMenuItemTitle'}).setDisabled(1);
129
- each(t.languages, function(v, k) {
130
- var o = {icon : 1}, mi;
131
-
132
- o.onclick = function() {
133
- mi.setSelected(1);
134
- t.selectedItem.setSelected(0);
135
- t.selectedItem = mi;
136
- t.selectedLang = v;
137
- };
138
-
139
- o.title = k;
140
- mi = m.add(o);
141
- mi.setSelected(v == t.selectedLang);
142
-
143
- if (v == t.selectedLang)
144
- t.selectedItem = mi;
145
- })
146
- });
147
-
148
- return c;
149
- }
150
- },
151
-
152
- // Internal functions
153
-
154
- _walk : function(n, f) {
155
- var d = this.editor.getDoc(), w;
156
-
157
- if (d.createTreeWalker) {
158
- w = d.createTreeWalker(n, NodeFilter.SHOW_TEXT, null, false);
159
-
160
- while ((n = w.nextNode()) != null)
161
- f.call(this, n);
162
- } else
163
- tinymce.walk(n, f, 'childNodes');
164
- },
165
-
166
- _getSeparators : function() {
167
- var re = '', i, str = this.editor.getParam('spellchecker_word_separator_chars', '\\s!"#$%&()*+,-./:;<=>?@[\]^_{|}����������������\u201d\u201c');
168
-
169
- // Build word separator regexp
170
- for (i=0; i<str.length; i++)
171
- re += '\\' + str.charAt(i);
172
-
173
- return re;
174
- },
175
-
176
- _getWords : function() {
177
- var ed = this.editor, wl = [], tx = '', lo = {}, rawWords = [];
178
-
179
- // Get area text
180
- this._walk(ed.getBody(), function(n) {
181
- if (n.nodeType == 3)
182
- tx += n.nodeValue + ' ';
183
- });
184
-
185
- // split the text up into individual words
186
- if (ed.getParam('spellchecker_word_pattern')) {
187
- // look for words that match the pattern
188
- rawWords = tx.match('(' + ed.getParam('spellchecker_word_pattern') + ')', 'gi');
189
- } else {
190
- // Split words by separator
191
- tx = tx.replace(new RegExp('([0-9]|[' + this._getSeparators() + '])', 'g'), ' ');
192
- tx = tinymce.trim(tx.replace(/(\s+)/g, ' '));
193
- rawWords = tx.split(' ');
194
- }
195
-
196
- // Build word array and remove duplicates
197
- each(rawWords, function(v) {
198
- if (!lo[v]) {
199
- wl.push(v);
200
- lo[v] = 1;
201
- }
202
- });
203
-
204
- return wl;
205
- },
206
-
207
- _removeWords : function(w) {
208
- var ed = this.editor, dom = ed.dom, se = ed.selection, b = se.getBookmark();
209
-
210
- each(dom.select('span').reverse(), function(n) {
211
- if (n && (dom.hasClass(n, 'mceItemHiddenSpellWord') || dom.hasClass(n, 'mceItemHidden'))) {
212
- if (!w || dom.decode(n.innerHTML) == w)
213
- dom.remove(n, 1);
214
- }
215
- });
216
-
217
- se.moveToBookmark(b);
218
- },
219
-
220
- _markWords : function(wl) {
221
- var r1, r2, r3, r4, r5, w = '', ed = this.editor, re = this._getSeparators(), dom = ed.dom, nl = [];
222
- var se = ed.selection, b = se.getBookmark();
223
-
224
- each(wl, function(v) {
225
- w += (w ? '|' : '') + v;
226
- });
227
-
228
- r1 = new RegExp('([' + re + '])(' + w + ')([' + re + '])', 'g');
229
- r2 = new RegExp('^(' + w + ')', 'g');
230
- r3 = new RegExp('(' + w + ')([' + re + ']?)$', 'g');
231
- r4 = new RegExp('^(' + w + ')([' + re + ']?)$', 'g');
232
- r5 = new RegExp('(' + w + ')([' + re + '])', 'g');
233
-
234
- // Collect all text nodes
235
- this._walk(this.editor.getBody(), function(n) {
236
- if (n.nodeType == 3) {
237
- nl.push(n);
238
- }
239
- });
240
-
241
- // Wrap incorrect words in spans
242
- each(nl, function(n) {
243
- var v;
244
-
245
- if (n.nodeType == 3) {
246
- v = n.nodeValue;
247
-
248
- if (r1.test(v) || r2.test(v) || r3.test(v) || r4.test(v)) {
249
- v = dom.encode(v);
250
- v = v.replace(r5, '<span class="mceItemHiddenSpellWord">$1</span>$2');
251
- v = v.replace(r3, '<span class="mceItemHiddenSpellWord">$1</span>$2');
252
-
253
- dom.replace(dom.create('span', {'class' : 'mceItemHidden'}, v), n);
254
- }
255
- }
256
- });
257
-
258
- se.moveToBookmark(b);
259
- },
260
-
261
- _showMenu : function(ed, e) {
262
- var t = this, ed = t.editor, m = t._menu, p1, dom = ed.dom, vp = dom.getViewPort(ed.getWin()), wordSpan = e.target;
263
-
264
- e = 0; // Fixes IE memory leak
265
-
266
- if (!m) {
267
- p1 = DOM.getPos(ed.getContentAreaContainer());
268
- //p2 = DOM.getPos(ed.getContainer());
269
-
270
- m = ed.controlManager.createDropMenu('spellcheckermenu', {
271
- offset_x : p1.x,
272
- offset_y : p1.y,
273
- 'class' : 'mceNoIcons'
274
- });
275
-
276
- t._menu = m;
277
- }
278
-
279
- if (dom.hasClass(wordSpan, 'mceItemHiddenSpellWord')) {
280
- m.removeAll();
281
- m.add({title : 'spellchecker.wait', 'class' : 'mceMenuItemTitle'}).setDisabled(1);
282
-
283
- t._sendRPC('getSuggestions', [t.selectedLang, dom.decode(wordSpan.innerHTML)], function(r) {
284
- var ignoreRpc;
285
-
286
- m.removeAll();
287
-
288
- if (r.length > 0) {
289
- m.add({title : 'spellchecker.sug', 'class' : 'mceMenuItemTitle'}).setDisabled(1);
290
- each(r, function(v) {
291
- m.add({title : v, onclick : function() {
292
- dom.replace(ed.getDoc().createTextNode(v), wordSpan);
293
- t._checkDone();
294
- }});
295
- });
296
-
297
- m.addSeparator();
298
- } else
299
- m.add({title : 'spellchecker.no_sug', 'class' : 'mceMenuItemTitle'}).setDisabled(1);
300
-
301
- ignoreRpc = t.editor.getParam("spellchecker_enable_ignore_rpc", '');
302
- m.add({
303
- title : 'spellchecker.ignore_word',
304
- onclick : function() {
305
- var word = wordSpan.innerHTML;
306
-
307
- dom.remove(wordSpan, 1);
308
- t._checkDone();
309
-
310
- // tell the server if we need to
311
- if (ignoreRpc) {
312
- ed.setProgressState(1);
313
- t._sendRPC('ignoreWord', [t.selectedLang, word], function(r) {
314
- ed.setProgressState(0);
315
- });
316
- }
317
- }
318
- });
319
-
320
- m.add({
321
- title : 'spellchecker.ignore_words',
322
- onclick : function() {
323
- var word = wordSpan.innerHTML;
324
-
325
- t._removeWords(dom.decode(word));
326
- t._checkDone();
327
-
328
- // tell the server if we need to
329
- if (ignoreRpc) {
330
- ed.setProgressState(1);
331
- t._sendRPC('ignoreWords', [t.selectedLang, word], function(r) {
332
- ed.setProgressState(0);
333
- });
334
- }
335
- }
336
- });
337
-
338
-
339
- if (t.editor.getParam("spellchecker_enable_learn_rpc")) {
340
- m.add({
341
- title : 'spellchecker.learn_word',
342
- onclick : function() {
343
- var word = wordSpan.innerHTML;
344
-
345
- dom.remove(wordSpan, 1);
346
- t._checkDone();
347
-
348
- ed.setProgressState(1);
349
- t._sendRPC('learnWord', [t.selectedLang, word], function(r) {
350
- ed.setProgressState(0);
351
- });
352
- }
353
- });
354
- }
355
-
356
- m.update();
357
- });
358
-
359
- ed.selection.select(wordSpan);
360
- p1 = dom.getPos(wordSpan);
361
- m.showMenu(p1.x, p1.y + wordSpan.offsetHeight - vp.y);
362
-
363
- return tinymce.dom.Event.cancel(e);
364
- } else
365
- m.hideMenu();
366
- },
367
-
368
- _checkDone : function() {
369
- var t = this, ed = t.editor, dom = ed.dom, o;
370
-
371
- each(dom.select('span'), function(n) {
372
- if (n && dom.hasClass(n, 'mceItemHiddenSpellWord')) {
373
- o = true;
374
- return false;
375
- }
376
- });
377
-
378
- if (!o)
379
- t._done();
380
- },
381
-
382
- _done : function() {
383
- var t = this, la = t.active;
384
-
385
- if (t.active) {
386
- t.active = 0;
387
- t._removeWords();
388
-
389
- if (t._menu)
390
- t._menu.hideMenu();
391
-
392
- if (la)
393
- t.editor.nodeChanged();
394
- }
395
- },
396
-
397
- _sendRPC : function(m, p, cb) {
398
- var t = this;
399
-
400
- JSONRequest.sendRPC({
401
- url : t.rpcUrl,
402
- method : m,
403
- params : p,
404
- success : cb,
405
- error : function(e, x) {
406
- t.editor.setProgressState(0);
407
- t.editor.windowManager.alert(e.errstr || ('Error response: ' + x.responseText));
408
- }
409
- });
410
- }
411
- });
412
-
413
- // Register plugin
414
- tinymce.PluginManager.add('spellchecker', tinymce.plugins.SpellcheckerPlugin);
415
- })();