use_tinymce 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (288) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.markdown +48 -0
  3. data/Rakefile +44 -0
  4. data/assets/tinymce/changelog.txt +1303 -0
  5. data/assets/tinymce/examples/accessibility.html +101 -0
  6. data/assets/tinymce/examples/css/content.css +105 -0
  7. data/assets/tinymce/examples/css/word.css +53 -0
  8. data/assets/tinymce/examples/custom_formats.html +111 -0
  9. data/assets/tinymce/examples/full.html +101 -0
  10. data/assets/tinymce/examples/index.html +10 -0
  11. data/assets/tinymce/examples/lists/image_list.js +9 -0
  12. data/assets/tinymce/examples/lists/link_list.js +10 -0
  13. data/assets/tinymce/examples/lists/media_list.js +14 -0
  14. data/assets/tinymce/examples/lists/template_list.js +9 -0
  15. data/assets/tinymce/examples/media/logo.jpg +0 -0
  16. data/assets/tinymce/examples/media/logo_over.jpg +0 -0
  17. data/assets/tinymce/examples/media/sample.avi +0 -0
  18. data/assets/tinymce/examples/media/sample.dcr +0 -0
  19. data/assets/tinymce/examples/media/sample.flv +0 -0
  20. data/assets/tinymce/examples/media/sample.mov +0 -0
  21. data/assets/tinymce/examples/media/sample.ram +1 -0
  22. data/assets/tinymce/examples/media/sample.rm +0 -0
  23. data/assets/tinymce/examples/media/sample.swf +0 -0
  24. data/assets/tinymce/examples/menu.html +18 -0
  25. data/assets/tinymce/examples/simple.html +47 -0
  26. data/assets/tinymce/examples/skins.html +216 -0
  27. data/assets/tinymce/examples/templates/layout1.htm +15 -0
  28. data/assets/tinymce/examples/templates/snippet1.htm +1 -0
  29. data/assets/tinymce/examples/word.html +72 -0
  30. data/assets/tinymce/jscripts/tiny_mce/langs/en.js +223 -0
  31. data/assets/tinymce/jscripts/tiny_mce/license.txt +504 -0
  32. data/assets/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css +5 -0
  33. data/assets/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js +1 -0
  34. data/assets/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js +57 -0
  35. data/assets/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js +43 -0
  36. data/assets/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js +7 -0
  37. data/assets/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm +58 -0
  38. data/assets/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css +13 -0
  39. data/assets/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js +1 -0
  40. data/assets/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js +50 -0
  41. data/assets/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm +235 -0
  42. data/assets/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif +0 -0
  43. data/assets/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js +458 -0
  44. data/assets/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js +45 -0
  45. data/assets/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css +8 -0
  46. data/assets/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js +1 -0
  47. data/assets/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js +61 -0
  48. data/assets/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js +532 -0
  49. data/assets/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js +54 -0
  50. data/assets/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm +338 -0
  51. data/assets/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js +1 -0
  52. data/assets/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js +161 -0
  53. data/assets/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js +1 -0
  54. data/assets/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js +169 -0
  55. data/assets/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js +1 -0
  56. data/assets/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js +128 -0
  57. data/assets/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js +1 -0
  58. data/assets/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js +431 -0
  59. data/assets/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js +4 -0
  60. data/assets/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js +1 -0
  61. data/assets/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js +120 -0
  62. data/assets/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js +1 -0
  63. data/assets/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js +161 -0
  64. data/assets/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js +1 -0
  65. data/assets/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js +82 -0
  66. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js +1 -0
  67. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js +43 -0
  68. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm +41 -0
  69. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif +0 -0
  70. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif +0 -0
  71. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif +0 -0
  72. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
  73. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif +0 -0
  74. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif +0 -0
  75. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif +0 -0
  76. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif +0 -0
  77. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif +0 -0
  78. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif +0 -0
  79. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif +0 -0
  80. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif +0 -0
  81. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif +0 -0
  82. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif +0 -0
  83. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif +0 -0
  84. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif +0 -0
  85. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js +22 -0
  86. data/assets/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js +20 -0
  87. data/assets/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm +22 -0
  88. data/assets/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js +1 -0
  89. data/assets/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js +84 -0
  90. data/assets/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif +0 -0
  91. data/assets/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js +19 -0
  92. data/assets/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js +3 -0
  93. data/assets/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js +3 -0
  94. data/assets/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css +143 -0
  95. data/assets/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js +1 -0
  96. data/assets/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js +399 -0
  97. data/assets/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm +259 -0
  98. data/assets/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js +232 -0
  99. data/assets/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js +85 -0
  100. data/assets/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js +1 -0
  101. data/assets/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js +159 -0
  102. data/assets/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm +109 -0
  103. data/assets/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js +1 -0
  104. data/assets/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js +54 -0
  105. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -0
  106. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js +696 -0
  107. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  108. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  109. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  110. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  111. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  112. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  113. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  114. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css +90 -0
  115. data/assets/tinymce/jscripts/tiny_mce/plugins/inlinepopups/template.htm +387 -0
  116. data/assets/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js +1 -0
  117. data/assets/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js +83 -0
  118. data/assets/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js +1 -0
  119. data/assets/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js +214 -0
  120. data/assets/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js +1 -0
  121. data/assets/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js +139 -0
  122. data/assets/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js +1 -0
  123. data/assets/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js +617 -0
  124. data/assets/tinymce/jscripts/tiny_mce/plugins/media/css/media.css +17 -0
  125. data/assets/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js +1 -0
  126. data/assets/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js +770 -0
  127. data/assets/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js +73 -0
  128. data/assets/tinymce/jscripts/tiny_mce/plugins/media/js/media.js +354 -0
  129. data/assets/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js +109 -0
  130. data/assets/tinymce/jscripts/tiny_mce/plugins/media/media.htm +812 -0
  131. data/assets/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf +0 -0
  132. data/assets/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js +1 -0
  133. data/assets/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js +53 -0
  134. data/assets/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js +1 -0
  135. data/assets/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js +92 -0
  136. data/assets/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js +1 -0
  137. data/assets/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js +74 -0
  138. data/assets/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js +1 -0
  139. data/assets/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js +933 -0
  140. data/assets/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js +36 -0
  141. data/assets/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js +51 -0
  142. data/assets/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js +5 -0
  143. data/assets/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm +27 -0
  144. data/assets/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm +21 -0
  145. data/assets/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js +1 -0
  146. data/assets/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js +53 -0
  147. data/assets/tinymce/jscripts/tiny_mce/plugins/preview/example.html +28 -0
  148. data/assets/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js +73 -0
  149. data/assets/tinymce/jscripts/tiny_mce/plugins/preview/preview.html +17 -0
  150. data/assets/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js +1 -0
  151. data/assets/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js +34 -0
  152. data/assets/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js +1 -0
  153. data/assets/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js +101 -0
  154. data/assets/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css +6 -0
  155. data/assets/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js +1 -0
  156. data/assets/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js +61 -0
  157. data/assets/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js +142 -0
  158. data/assets/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js +16 -0
  159. data/assets/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm +100 -0
  160. data/assets/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css +1 -0
  161. data/assets/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js +1 -0
  162. data/assets/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js +435 -0
  163. data/assets/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif +0 -0
  164. data/assets/tinymce/jscripts/tiny_mce/plugins/style/css/props.css +13 -0
  165. data/assets/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js +1 -0
  166. data/assets/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js +55 -0
  167. data/assets/tinymce/jscripts/tiny_mce/plugins/style/js/props.js +635 -0
  168. data/assets/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js +70 -0
  169. data/assets/tinymce/jscripts/tiny_mce/plugins/style/props.htm +838 -0
  170. data/assets/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js +1 -0
  171. data/assets/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js +114 -0
  172. data/assets/tinymce/jscripts/tiny_mce/plugins/table/cell.htm +178 -0
  173. data/assets/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css +17 -0
  174. data/assets/tinymce/jscripts/tiny_mce/plugins/table/css/row.css +25 -0
  175. data/assets/tinymce/jscripts/tiny_mce/plugins/table/css/table.css +13 -0
  176. data/assets/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js +1 -0
  177. data/assets/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js +1202 -0
  178. data/assets/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js +284 -0
  179. data/assets/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js +27 -0
  180. data/assets/tinymce/jscripts/tiny_mce/plugins/table/js/row.js +232 -0
  181. data/assets/tinymce/jscripts/tiny_mce/plugins/table/js/table.js +450 -0
  182. data/assets/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js +74 -0
  183. data/assets/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm +32 -0
  184. data/assets/tinymce/jscripts/tiny_mce/plugins/table/row.htm +157 -0
  185. data/assets/tinymce/jscripts/tiny_mce/plugins/table/table.htm +188 -0
  186. data/assets/tinymce/jscripts/tiny_mce/plugins/template/blank.htm +12 -0
  187. data/assets/tinymce/jscripts/tiny_mce/plugins/template/css/template.css +23 -0
  188. data/assets/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js +1 -0
  189. data/assets/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js +159 -0
  190. data/assets/tinymce/jscripts/tiny_mce/plugins/template/js/template.js +106 -0
  191. data/assets/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js +15 -0
  192. data/assets/tinymce/jscripts/tiny_mce/plugins/template/template.htm +31 -0
  193. data/assets/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js +1 -0
  194. data/assets/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js +83 -0
  195. data/assets/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js +1 -0
  196. data/assets/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js +114 -0
  197. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm +142 -0
  198. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm +142 -0
  199. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm +149 -0
  200. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm +142 -0
  201. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css +11 -0
  202. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css +9 -0
  203. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm +162 -0
  204. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js +1 -0
  205. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js +132 -0
  206. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm +162 -0
  207. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js +28 -0
  208. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js +28 -0
  209. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js +111 -0
  210. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js +28 -0
  211. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js +53 -0
  212. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js +229 -0
  213. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js +53 -0
  214. data/assets/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js +32 -0
  215. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/about.htm +52 -0
  216. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm +26 -0
  217. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm +51 -0
  218. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm +74 -0
  219. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js +1 -0
  220. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js +1360 -0
  221. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/image.htm +80 -0
  222. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
  223. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif +0 -0
  224. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif +0 -0
  225. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif +0 -0
  226. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif +0 -0
  227. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif +0 -0
  228. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif +0 -0
  229. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif +0 -0
  230. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif +0 -0
  231. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif +0 -0
  232. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif +0 -0
  233. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js +73 -0
  234. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js +42 -0
  235. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js +355 -0
  236. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js +329 -0
  237. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js +247 -0
  238. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js +153 -0
  239. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js +56 -0
  240. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js +68 -0
  241. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js +54 -0
  242. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/link.htm +57 -0
  243. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm +47 -0
  244. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css +47 -0
  245. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css +117 -0
  246. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png +0 -0
  247. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif +0 -0
  248. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
  249. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif +0 -0
  250. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif +0 -0
  251. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif +0 -0
  252. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css +213 -0
  253. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css +23 -0
  254. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +105 -0
  255. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css +101 -0
  256. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css +46 -0
  257. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +117 -0
  258. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  259. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  260. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  261. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui.css +216 -0
  262. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +8 -0
  263. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +5 -0
  264. data/assets/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm +25 -0
  265. data/assets/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js +1 -0
  266. data/assets/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js +84 -0
  267. data/assets/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif +0 -0
  268. data/assets/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js +11 -0
  269. data/assets/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css +25 -0
  270. data/assets/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css +32 -0
  271. data/assets/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css +17 -0
  272. data/assets/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png +0 -0
  273. data/assets/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css +35 -0
  274. data/assets/tinymce/jscripts/tiny_mce/tiny_mce.js +1 -0
  275. data/assets/tinymce/jscripts/tiny_mce/tiny_mce_popup.js +5 -0
  276. data/assets/tinymce/jscripts/tiny_mce/tiny_mce_src.js +15812 -0
  277. data/assets/tinymce/jscripts/tiny_mce/utils/editable_selects.js +70 -0
  278. data/assets/tinymce/jscripts/tiny_mce/utils/form_utils.js +210 -0
  279. data/assets/tinymce/jscripts/tiny_mce/utils/mctabs.js +162 -0
  280. data/assets/tinymce/jscripts/tiny_mce/utils/validate.js +252 -0
  281. data/assets/use_tinymce_init_advanced.js +15 -0
  282. data/assets/use_tinymce_init_simple.js +5 -0
  283. data/lib/tasks/use_tinymce.rake +25 -0
  284. data/lib/use_tinymce/railengine.rb +12 -0
  285. data/lib/use_tinymce/use_tinymce.rb +33 -0
  286. data/lib/use_tinymce.rb +4 -0
  287. data/test/use_tinymce_base_test.rb +70 -0
  288. metadata +353 -0
@@ -0,0 +1,770 @@
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 rootAttributes = tinymce.explode('id,name,width,height,style,align,class,hspace,vspace,bgcolor,type'), excludedAttrs = tinymce.makeMap(rootAttributes.join(',')), Node = tinymce.html.Node,
13
+ mediaTypes, scriptRegExp, JSON = tinymce.util.JSON, mimeTypes;
14
+
15
+ // Media types supported by this plugin
16
+ mediaTypes = [
17
+ // Type, clsid:s, mime types, codebase
18
+ ["Flash", "d27cdb6e-ae6d-11cf-96b8-444553540000", "application/x-shockwave-flash", "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"],
19
+ ["ShockWave", "166b1bca-3f9c-11cf-8075-444553540000", "application/x-director", "http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0"],
20
+ ["WindowsMedia", "6bf52a52-394a-11d3-b153-00c04f79faa6,22d6f312-b0f6-11d0-94ab-0080c74c7e95,05589fa1-c356-11ce-bf01-00aa0055595a", "application/x-mplayer2", "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"],
21
+ ["QuickTime", "02bf25d5-8c17-4b23-bc80-d3488abddc6b", "video/quicktime", "http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"],
22
+ ["RealMedia", "cfcdaa03-8be4-11cf-b84b-0020afbbccfa", "audio/x-pn-realaudio-plugin", "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"],
23
+ ["Java", "8ad9c840-044e-11d1-b3e9-00805f499d93", "application/x-java-applet", "http://java.sun.com/products/plugin/autodl/jinstall-1_5_0-windows-i586.cab#Version=1,5,0,0"],
24
+ ["Silverlight", "dfeaf541-f3e1-4c24-acac-99c30715084a", "application/x-silverlight-2"],
25
+ ["Iframe"],
26
+ ["Video"]
27
+ ];
28
+
29
+ function toArray(obj) {
30
+ var undef, out, i;
31
+
32
+ if (obj && !obj.splice) {
33
+ out = [];
34
+
35
+ for (i = 0; true; i++) {
36
+ if (obj[i])
37
+ out[i] = obj[i];
38
+ else
39
+ break;
40
+ }
41
+
42
+ return out;
43
+ }
44
+
45
+ return obj;
46
+ };
47
+
48
+ tinymce.create('tinymce.plugins.MediaPlugin', {
49
+ init : function(ed, url) {
50
+ var self = this, lookup = {}, i, y, item, name;
51
+
52
+ function isMediaImg(node) {
53
+ return node && node.nodeName === 'IMG' && ed.dom.hasClass(node, 'mceItemMedia');
54
+ };
55
+
56
+ self.editor = ed;
57
+ self.url = url;
58
+
59
+ // Parse media types into a lookup table
60
+ scriptRegExp = '';
61
+ for (i = 0; i < mediaTypes.length; i++) {
62
+ name = mediaTypes[i][0];
63
+
64
+ item = {
65
+ name : name,
66
+ clsids : tinymce.explode(mediaTypes[i][1] || ''),
67
+ mimes : tinymce.explode(mediaTypes[i][2] || ''),
68
+ codebase : mediaTypes[i][3]
69
+ };
70
+
71
+ for (y = 0; y < item.clsids.length; y++)
72
+ lookup['clsid:' + item.clsids[y]] = item;
73
+
74
+ for (y = 0; y < item.mimes.length; y++)
75
+ lookup[item.mimes[y]] = item;
76
+
77
+ lookup['mceItem' + name] = item;
78
+ lookup[name.toLowerCase()] = item;
79
+
80
+ scriptRegExp += (scriptRegExp ? '|' : '') + name;
81
+ }
82
+
83
+ // Handle the media_types setting
84
+ tinymce.each(ed.getParam("media_types",
85
+ "video=mp4,m4v,ogv,webm;" +
86
+ "silverlight=xap;" +
87
+ "flash=swf,flv;" +
88
+ "shockwave=dcr;" +
89
+ "quicktime=mov,qt,mpg,mp3,mpeg;" +
90
+ "shockwave=dcr;" +
91
+ "windowsmedia=avi,wmv,wm,asf,asx,wmx,wvx;" +
92
+ "realmedia=rm,ra,ram;" +
93
+ "java=jar"
94
+ ).split(';'), function(item) {
95
+ var i, extensions, type;
96
+
97
+ item = item.split(/=/);
98
+ extensions = tinymce.explode(item[1].toLowerCase());
99
+ for (i = 0; i < extensions.length; i++) {
100
+ type = lookup[item[0].toLowerCase()];
101
+
102
+ if (type)
103
+ lookup[extensions[i]] = type;
104
+ }
105
+ });
106
+
107
+ scriptRegExp = new RegExp('write(' + scriptRegExp + ')\\(([^)]+)\\)');
108
+ self.lookup = lookup;
109
+
110
+ ed.onPreInit.add(function() {
111
+ // Allow video elements
112
+ ed.schema.addValidElements('object[id|style|width|height|classid|codebase|*],param[name|value],embed[id|style|width|height|type|src|*],video[*],audio[*],source[*]');
113
+
114
+ // Convert video elements to image placeholder
115
+ ed.parser.addNodeFilter('object,embed,video,audio,script,iframe', function(nodes) {
116
+ var i = nodes.length;
117
+
118
+ while (i--)
119
+ self.objectToImg(nodes[i]);
120
+ });
121
+
122
+ // Convert image placeholders to video elements
123
+ ed.serializer.addNodeFilter('img', function(nodes, name, args) {
124
+ var i = nodes.length, node;
125
+
126
+ while (i--) {
127
+ node = nodes[i];
128
+ if ((node.attr('class') || '').indexOf('mceItemMedia') !== -1)
129
+ self.imgToObject(node, args);
130
+ }
131
+ });
132
+ });
133
+
134
+ ed.onInit.add(function() {
135
+ // Display "media" instead of "img" in element path
136
+ if (ed.theme && ed.theme.onResolveName) {
137
+ ed.theme.onResolveName.add(function(theme, path_object) {
138
+ if (path_object.name === 'img' && ed.dom.hasClass(path_object.node, 'mceItemMedia'))
139
+ path_object.name = 'media';
140
+ });
141
+ }
142
+
143
+ // Add contect menu if it's loaded
144
+ if (ed && ed.plugins.contextmenu) {
145
+ ed.plugins.contextmenu.onContextMenu.add(function(plugin, menu, element) {
146
+ if (element.nodeName === 'IMG' && element.className.indexOf('mceItemMedia') !== -1)
147
+ menu.add({title : 'media.edit', icon : 'media', cmd : 'mceMedia'});
148
+ });
149
+ }
150
+ });
151
+
152
+ // Register commands
153
+ ed.addCommand('mceMedia', function() {
154
+ var data, img;
155
+
156
+ img = ed.selection.getNode();
157
+ if (isMediaImg(img)) {
158
+ data = JSON.parse(ed.dom.getAttrib(img, 'data-mce-json'));
159
+
160
+ // Add some extra properties to the data object
161
+ tinymce.each(rootAttributes, function(name) {
162
+ var value = ed.dom.getAttrib(img, name);
163
+
164
+ if (value)
165
+ data[name] = value;
166
+ });
167
+
168
+ data.type = self.getType(img.className).name.toLowerCase();
169
+ }
170
+
171
+ if (!data) {
172
+ data = {
173
+ type : 'flash',
174
+ video: {sources:[]},
175
+ params: {}
176
+ };
177
+ }
178
+
179
+ ed.windowManager.open({
180
+ file : url + '/media.htm',
181
+ width : 430 + parseInt(ed.getLang('media.delta_width', 0)),
182
+ height : 500 + parseInt(ed.getLang('media.delta_height', 0)),
183
+ inline : 1
184
+ }, {
185
+ plugin_url : url,
186
+ data : data
187
+ });
188
+ });
189
+
190
+ // Register buttons
191
+ ed.addButton('media', {title : 'media.desc', cmd : 'mceMedia'});
192
+
193
+ // Update media selection status
194
+ ed.onNodeChange.add(function(ed, cm, node) {
195
+ cm.setActive('media', isMediaImg(node));
196
+ });
197
+ },
198
+
199
+ convertUrl : function(url, force_absolute) {
200
+ var self = this, editor = self.editor, settings = editor.settings,
201
+ urlConverter = settings.url_converter,
202
+ urlConverterScope = settings.url_converter_scope || self;
203
+
204
+ if (!url)
205
+ return url;
206
+
207
+ if (force_absolute)
208
+ return editor.documentBaseURI.toAbsolute(url);
209
+
210
+ return urlConverter.call(urlConverterScope, url, 'src', 'object');
211
+ },
212
+
213
+ getInfo : function() {
214
+ return {
215
+ longname : 'Media',
216
+ author : 'Moxiecode Systems AB',
217
+ authorurl : 'http://tinymce.moxiecode.com',
218
+ infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/media',
219
+ version : tinymce.majorVersion + "." + tinymce.minorVersion
220
+ };
221
+ },
222
+
223
+ /**
224
+ * Converts the JSON data object to an img node.
225
+ */
226
+ dataToImg : function(data, force_absolute) {
227
+ var self = this, editor = self.editor, baseUri = editor.documentBaseURI, sources, attrs, img, i;
228
+
229
+ data.params.src = self.convertUrl(data.params.src, force_absolute);
230
+
231
+ attrs = data.video.attrs;
232
+ if (attrs)
233
+ attrs.src = self.convertUrl(attrs.src, force_absolute);
234
+
235
+ if (attrs)
236
+ attrs.poster = self.convertUrl(attrs.poster, force_absolute);
237
+
238
+ sources = toArray(data.video.sources);
239
+ if (sources) {
240
+ for (i = 0; i < sources.length; i++)
241
+ sources[i].src = self.convertUrl(sources[i].src, force_absolute);
242
+ }
243
+
244
+ img = self.editor.dom.create('img', {
245
+ id : data.id,
246
+ style : data.style,
247
+ align : data.align,
248
+ src : self.editor.theme.url + '/img/trans.gif',
249
+ 'class' : 'mceItemMedia mceItem' + self.getType(data.type).name,
250
+ 'data-mce-json' : JSON.serialize(data, "'")
251
+ });
252
+
253
+ img.width = data.width || "320";
254
+ img.height = data.height || "240";
255
+
256
+ return img;
257
+ },
258
+
259
+ /**
260
+ * Converts the JSON data object to a HTML string.
261
+ */
262
+ dataToHtml : function(data, force_absolute) {
263
+ return this.editor.serializer.serialize(this.dataToImg(data, force_absolute), {force_absolute : force_absolute});
264
+ },
265
+
266
+ /**
267
+ * Converts the JSON data object to a HTML string.
268
+ */
269
+ htmlToData : function(html) {
270
+ var fragment, img, data;
271
+
272
+ data = {
273
+ type : 'flash',
274
+ video: {sources:[]},
275
+ params: {}
276
+ };
277
+
278
+ fragment = this.editor.parser.parse(html);
279
+ img = fragment.getAll('img')[0];
280
+
281
+ if (img) {
282
+ data = JSON.parse(img.attr('data-mce-json'));
283
+ data.type = this.getType(img.attr('class')).name.toLowerCase();
284
+
285
+ // Add some extra properties to the data object
286
+ tinymce.each(rootAttributes, function(name) {
287
+ var value = img.attr(name);
288
+
289
+ if (value)
290
+ data[name] = value;
291
+ });
292
+ }
293
+
294
+ return data;
295
+ },
296
+
297
+ /**
298
+ * Get type item by extension, class, clsid or mime type.
299
+ *
300
+ * @method getType
301
+ * @param {String} value Value to get type item by.
302
+ * @return {Object} Type item object or undefined.
303
+ */
304
+ getType : function(value) {
305
+ var i, values, typeItem;
306
+
307
+ // Find type by checking the classes
308
+ values = tinymce.explode(value, ' ');
309
+ for (i = 0; i < values.length; i++) {
310
+ typeItem = this.lookup[values[i]];
311
+
312
+ if (typeItem)
313
+ return typeItem;
314
+ }
315
+ },
316
+
317
+ /**
318
+ * Converts a tinymce.html.Node image element to video/object/embed.
319
+ */
320
+ imgToObject : function(node, args) {
321
+ var self = this, editor = self.editor, video, object, embed, iframe, name, value, data,
322
+ source, sources, params, param, typeItem, i, item, mp4Source, replacement,
323
+ posterSrc, style;
324
+
325
+ // Adds the flash player
326
+ function addPlayer(video_src, poster_src) {
327
+ var baseUri, flashVars, flashVarsOutput, params, flashPlayer;
328
+
329
+ flashPlayer = editor.getParam('flash_video_player_url', self.convertUrl(self.url + '/moxieplayer.swf'));
330
+ if (flashPlayer) {
331
+ baseUri = editor.documentBaseURI;
332
+ data.params.src = flashPlayer;
333
+
334
+ // Convert the movie url to absolute urls
335
+ if (editor.getParam('flash_video_player_absvideourl', true)) {
336
+ video_src = baseUri.toAbsolute(video_src || '', true);
337
+ poster_src = baseUri.toAbsolute(poster_src || '', true);
338
+ }
339
+
340
+ // Generate flash vars
341
+ flashVarsOutput = '';
342
+ flashVars = editor.getParam('flash_video_player_flashvars', {url : '$url', poster : '$poster'});
343
+ tinymce.each(flashVars, function(value, name) {
344
+ // Replace $url and $poster variables in flashvars value
345
+ value = value.replace(/\$url/, video_src || '');
346
+ value = value.replace(/\$poster/, poster_src || '');
347
+
348
+ if (value.length > 0)
349
+ flashVarsOutput += (flashVarsOutput ? '&' : '') + name + '=' + escape(value);
350
+ });
351
+
352
+ if (flashVarsOutput.length)
353
+ data.params.flashvars = flashVarsOutput;
354
+
355
+ params = editor.getParam('flash_video_player_params', {
356
+ allowfullscreen: true,
357
+ allowscriptaccess: true
358
+ });
359
+
360
+ tinymce.each(params, function(value, name) {
361
+ data.params[name] = "" + value;
362
+ });
363
+ }
364
+ };
365
+
366
+ data = JSON.parse(node.attr('data-mce-json'));
367
+ typeItem = this.getType(node.attr('class'));
368
+
369
+ style = node.attr('data-mce-style')
370
+ if (!style) {
371
+ style = node.attr('style');
372
+
373
+ if (style)
374
+ style = editor.dom.serializeStyle(editor.dom.parseStyle(style, 'img'));
375
+ }
376
+
377
+ // Handle iframe
378
+ if (typeItem.name === 'Iframe') {
379
+ replacement = new Node('iframe', 1);
380
+
381
+ tinymce.each(rootAttributes, function(name) {
382
+ var value = node.attr(name);
383
+
384
+ if (name == 'class' && value)
385
+ value = value.replace(/mceItem.+ ?/g, '');
386
+
387
+ if (value && value.length > 0)
388
+ replacement.attr(name, value);
389
+ });
390
+
391
+ for (name in data.params)
392
+ replacement.attr(name, data.params[name]);
393
+
394
+ replacement.attr({
395
+ style: style,
396
+ src: data.params.src
397
+ });
398
+
399
+ node.replace(replacement);
400
+
401
+ return;
402
+ }
403
+
404
+ // Handle scripts
405
+ if (this.editor.settings.media_use_script) {
406
+ replacement = new Node('script', 1).attr('type', 'text/javascript');
407
+
408
+ value = new Node('#text', 3);
409
+ value.value = 'write' + typeItem.name + '(' + JSON.serialize(tinymce.extend(data.params, {
410
+ width: node.attr('width'),
411
+ height: node.attr('height')
412
+ })) + ');';
413
+
414
+ replacement.append(value);
415
+ node.replace(replacement);
416
+
417
+ return;
418
+ }
419
+
420
+ // Add HTML5 video element
421
+ if (typeItem.name === 'Video' && data.video.sources[0]) {
422
+ // Create new object element
423
+ video = new Node('video', 1).attr(tinymce.extend({
424
+ id : node.attr('id'),
425
+ width: node.attr('width'),
426
+ height: node.attr('height'),
427
+ style : style
428
+ }, data.video.attrs));
429
+
430
+ // Get poster source and use that for flash fallback
431
+ if (data.video.attrs)
432
+ posterSrc = data.video.attrs.poster;
433
+
434
+ sources = data.video.sources = toArray(data.video.sources);
435
+ for (i = 0; i < sources.length; i++) {
436
+ if (/\.mp4$/.test(sources[i].src))
437
+ mp4Source = sources[i].src;
438
+ }
439
+
440
+ if (!sources[0].type) {
441
+ video.attr('src', sources[0].src);
442
+ sources.splice(0, 1);
443
+ }
444
+
445
+ for (i = 0; i < sources.length; i++) {
446
+ source = new Node('source', 1).attr(sources[i]);
447
+ source.shortEnded = true;
448
+ video.append(source);
449
+ }
450
+
451
+ // Create flash fallback for video if we have a mp4 source
452
+ if (mp4Source) {
453
+ addPlayer(mp4Source, posterSrc);
454
+ typeItem = self.getType('flash');
455
+ } else
456
+ data.params.src = '';
457
+ }
458
+
459
+ // Do we have a params src then we can generate object
460
+ if (data.params.src) {
461
+ // Is flv movie add player for it
462
+ if (/\.flv$/i.test(data.params.src))
463
+ addPlayer(data.params.src, '');
464
+
465
+ if (args && args.force_absolute)
466
+ data.params.src = editor.documentBaseURI.toAbsolute(data.params.src);
467
+
468
+ // Create new object element
469
+ object = new Node('object', 1).attr({
470
+ id : node.attr('id'),
471
+ width: node.attr('width'),
472
+ height: node.attr('height'),
473
+ style : style
474
+ });
475
+
476
+ tinymce.each(rootAttributes, function(name) {
477
+ if (data[name] && name != 'type')
478
+ object.attr(name, data[name]);
479
+ });
480
+
481
+ // Add params
482
+ for (name in data.params) {
483
+ param = new Node('param', 1);
484
+ param.shortEnded = true;
485
+ value = data.params[name];
486
+
487
+ // Windows media needs to use url instead of src for the media URL
488
+ if (name === 'src' && typeItem.name === 'WindowsMedia')
489
+ name = 'url';
490
+
491
+ param.attr({name: name, value: value});
492
+ object.append(param);
493
+ }
494
+
495
+ // Setup add type and classid if strict is disabled
496
+ if (this.editor.getParam('media_strict', true)) {
497
+ object.attr({
498
+ data: data.params.src,
499
+ type: typeItem.mimes[0]
500
+ });
501
+ } else {
502
+ object.attr({
503
+ classid: "clsid:" + typeItem.clsids[0],
504
+ codebase: typeItem.codebase
505
+ });
506
+
507
+ embed = new Node('embed', 1);
508
+ embed.shortEnded = true;
509
+ embed.attr({
510
+ id: node.attr('id'),
511
+ width: node.attr('width'),
512
+ height: node.attr('height'),
513
+ style : style,
514
+ type: typeItem.mimes[0]
515
+ });
516
+
517
+ for (name in data.params)
518
+ embed.attr(name, data.params[name]);
519
+
520
+ tinymce.each(rootAttributes, function(name) {
521
+ if (data[name] && name != 'type')
522
+ embed.attr(name, data[name]);
523
+ });
524
+
525
+ object.append(embed);
526
+ }
527
+
528
+ // Insert raw HTML
529
+ if (data.object_html) {
530
+ value = new Node('#text', 3);
531
+ value.raw = true;
532
+ value.value = data.object_html;
533
+ object.append(value);
534
+ }
535
+
536
+ // Append object to video element if it exists
537
+ if (video)
538
+ video.append(object);
539
+ }
540
+
541
+ if (video) {
542
+ // Insert raw HTML
543
+ if (data.video_html) {
544
+ value = new Node('#text', 3);
545
+ value.raw = true;
546
+ value.value = data.video_html;
547
+ video.append(value);
548
+ }
549
+ }
550
+
551
+ if (video || object)
552
+ node.replace(video || object);
553
+ else
554
+ node.remove();
555
+ },
556
+
557
+ /**
558
+ * Converts a tinymce.html.Node video/object/embed to an img element.
559
+ *
560
+ * The video/object/embed will be converted into an image placeholder with a JSON data attribute like this:
561
+ * <img class="mceItemMedia mceItemFlash" width="100" height="100" data-mce-json="{..}" />
562
+ *
563
+ * The JSON structure will be like this:
564
+ * {'params':{'flashvars':'something','quality':'high','src':'someurl'}, 'video':{'sources':[{src: 'someurl', type: 'video/mp4'}]}}
565
+ */
566
+ objectToImg : function(node) {
567
+ var object, embed, video, iframe, img, name, id, width, height, style, i, html,
568
+ param, params, source, sources, data, type, lookup = this.lookup,
569
+ matches, attrs, urlConverter = this.editor.settings.url_converter,
570
+ urlConverterScope = this.editor.settings.url_converter_scope;
571
+
572
+ function getInnerHTML(node) {
573
+ return new tinymce.html.Serializer({
574
+ inner: true,
575
+ validate: false
576
+ }).serialize(node);
577
+ };
578
+
579
+ // If node isn't in document
580
+ if (!node.parent)
581
+ return;
582
+
583
+ // Handle media scripts
584
+ if (node.name === 'script') {
585
+ if (node.firstChild)
586
+ matches = scriptRegExp.exec(node.firstChild.value);
587
+
588
+ if (!matches)
589
+ return;
590
+
591
+ type = matches[1];
592
+ data = {video : {}, params : JSON.parse(matches[2])};
593
+ width = data.params.width;
594
+ height = data.params.height;
595
+ }
596
+
597
+ // Setup data objects
598
+ data = data || {
599
+ video : {},
600
+ params : {}
601
+ };
602
+
603
+ // Setup new image object
604
+ img = new Node('img', 1);
605
+ img.attr({
606
+ src : this.editor.theme.url + '/img/trans.gif'
607
+ });
608
+
609
+ // Video element
610
+ name = node.name;
611
+ if (name === 'video') {
612
+ video = node;
613
+ object = node.getAll('object')[0];
614
+ embed = node.getAll('embed')[0];
615
+ width = video.attr('width');
616
+ height = video.attr('height');
617
+ id = video.attr('id');
618
+ data.video = {attrs : {}, sources : []};
619
+
620
+ // Get all video attributes
621
+ attrs = data.video.attrs;
622
+ for (name in video.attributes.map)
623
+ attrs[name] = video.attributes.map[name];
624
+
625
+ source = node.attr('src');
626
+ if (source)
627
+ data.video.sources.push({src : urlConverter.call(urlConverterScope, source, 'src', 'video')});
628
+
629
+ // Get all sources
630
+ sources = video.getAll("source");
631
+ for (i = 0; i < sources.length; i++) {
632
+ source = sources[i].remove();
633
+
634
+ data.video.sources.push({
635
+ src: urlConverter.call(urlConverterScope, source.attr('src'), 'src', 'source'),
636
+ type: source.attr('type'),
637
+ media: source.attr('media')
638
+ });
639
+ }
640
+
641
+ // Convert the poster URL
642
+ if (attrs.poster)
643
+ attrs.poster = urlConverter.call(urlConverterScope, attrs.poster, 'poster', 'video');
644
+ }
645
+
646
+ // Object element
647
+ if (node.name === 'object') {
648
+ object = node;
649
+ embed = node.getAll('embed')[0];
650
+ }
651
+
652
+ // Embed element
653
+ if (node.name === 'embed')
654
+ embed = node;
655
+
656
+ // Iframe element
657
+ if (node.name === 'iframe') {
658
+ iframe = node;
659
+ type = 'Iframe';
660
+ }
661
+
662
+ if (object) {
663
+ // Get width/height
664
+ width = width || object.attr('width');
665
+ height = height || object.attr('height');
666
+ style = style || object.attr('style');
667
+ id = id || object.attr('id');
668
+
669
+ // Get all object params
670
+ params = object.getAll("param");
671
+ for (i = 0; i < params.length; i++) {
672
+ param = params[i];
673
+ name = param.remove().attr('name');
674
+
675
+ if (!excludedAttrs[name])
676
+ data.params[name] = param.attr('value');
677
+ }
678
+
679
+ data.params.src = data.params.src || object.attr('data');
680
+ }
681
+
682
+ if (embed) {
683
+ // Get width/height
684
+ width = width || embed.attr('width');
685
+ height = height || embed.attr('height');
686
+ style = style || embed.attr('style');
687
+ id = id || embed.attr('id');
688
+
689
+ // Get all embed attributes
690
+ for (name in embed.attributes.map) {
691
+ if (!excludedAttrs[name] && !data.params[name])
692
+ data.params[name] = embed.attributes.map[name];
693
+ }
694
+ }
695
+
696
+ if (iframe) {
697
+ // Get width/height
698
+ width = iframe.attr('width');
699
+ height = iframe.attr('height');
700
+ style = style || iframe.attr('style');
701
+ id = iframe.attr('id');
702
+
703
+ tinymce.each(rootAttributes, function(name) {
704
+ img.attr(name, iframe.attr(name));
705
+ });
706
+
707
+ // Get all iframe attributes
708
+ for (name in iframe.attributes.map) {
709
+ if (!excludedAttrs[name] && !data.params[name])
710
+ data.params[name] = iframe.attributes.map[name];
711
+ }
712
+ }
713
+
714
+ // Use src not movie
715
+ if (data.params.movie) {
716
+ data.params.src = data.params.src || data.params.movie;
717
+ delete data.params.movie;
718
+ }
719
+
720
+ // Convert the URL to relative/absolute depending on configuration
721
+ if (data.params.src)
722
+ data.params.src = urlConverter.call(urlConverterScope, data.params.src, 'src', 'object');
723
+
724
+ if (video)
725
+ type = lookup.video.name;
726
+
727
+ if (object && !type)
728
+ type = (lookup[(object.attr('clsid') || '').toLowerCase()] || lookup[(object.attr('type') || '').toLowerCase()] || {}).name;
729
+
730
+ if (embed && !type)
731
+ type = (lookup[(embed.attr('type') || '').toLowerCase()] || {}).name;
732
+
733
+ // Replace the video/object/embed element with a placeholder image containing the data
734
+ node.replace(img);
735
+
736
+ // Remove embed
737
+ if (embed)
738
+ embed.remove();
739
+
740
+ // Serialize the inner HTML of the object element
741
+ if (object) {
742
+ html = getInnerHTML(object.remove());
743
+
744
+ if (html)
745
+ data.object_html = html;
746
+ }
747
+
748
+ // Serialize the inner HTML of the video element
749
+ if (video) {
750
+ html = getInnerHTML(video.remove());
751
+
752
+ if (html)
753
+ data.video_html = html;
754
+ }
755
+
756
+ // Set width/height of placeholder
757
+ img.attr({
758
+ id : id,
759
+ 'class' : 'mceItemMedia mceItem' + (type || 'Flash'),
760
+ style : style,
761
+ width : width || "320",
762
+ height : height || "240",
763
+ "data-mce-json" : JSON.serialize(data, "'")
764
+ });
765
+ }
766
+ });
767
+
768
+ // Register plugin
769
+ tinymce.PluginManager.add('media', tinymce.plugins.MediaPlugin);
770
+ })();