tiny_mce 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1290) hide show
  1. data/.gitignore +5 -0
  2. data/CHANGELOG_PLUGIN +51 -0
  3. data/CHANGELOG_TINYMCE +912 -0
  4. data/DEV_UPGRADE_NOTES +13 -0
  5. data/README.rdoc +155 -0
  6. data/Rakefile +40 -0
  7. data/SPELLCHECKING_PLUGIN.rdoc +54 -0
  8. data/VERSION +1 -0
  9. data/init.rb +13 -0
  10. data/install.rb +8 -0
  11. data/lib/options_validator.rb +35 -0
  12. data/lib/spellchecker.rb +69 -0
  13. data/lib/tiny_mce.rb +40 -0
  14. data/lib/tiny_mce_helpers.rb +91 -0
  15. data/public/javascripts/tiny_mce/langs/ar.js +154 -0
  16. data/public/javascripts/tiny_mce/langs/az.js +155 -0
  17. data/public/javascripts/tiny_mce/langs/be.js +155 -0
  18. data/public/javascripts/tiny_mce/langs/bg.js +154 -0
  19. data/public/javascripts/tiny_mce/langs/bn.js +154 -0
  20. data/public/javascripts/tiny_mce/langs/br.js +154 -0
  21. data/public/javascripts/tiny_mce/langs/bs.js +154 -0
  22. data/public/javascripts/tiny_mce/langs/ca.js +154 -0
  23. data/public/javascripts/tiny_mce/langs/ch.js +154 -0
  24. data/public/javascripts/tiny_mce/langs/cs.js +154 -0
  25. data/public/javascripts/tiny_mce/langs/cy.js +154 -0
  26. data/public/javascripts/tiny_mce/langs/da.js +155 -0
  27. data/public/javascripts/tiny_mce/langs/de.js +155 -0
  28. data/public/javascripts/tiny_mce/langs/dv.js +154 -0
  29. data/public/javascripts/tiny_mce/langs/el.js +158 -0
  30. data/public/javascripts/tiny_mce/langs/en.js +154 -0
  31. data/public/javascripts/tiny_mce/langs/es.js +154 -0
  32. data/public/javascripts/tiny_mce/langs/et.js +154 -0
  33. data/public/javascripts/tiny_mce/langs/fa.js +154 -0
  34. data/public/javascripts/tiny_mce/langs/fi.js +155 -0
  35. data/public/javascripts/tiny_mce/langs/fr.js +154 -0
  36. data/public/javascripts/tiny_mce/langs/gl.js +154 -0
  37. data/public/javascripts/tiny_mce/langs/gu.js +154 -0
  38. data/public/javascripts/tiny_mce/langs/he.js +154 -0
  39. data/public/javascripts/tiny_mce/langs/hi.js +154 -0
  40. data/public/javascripts/tiny_mce/langs/hr.js +154 -0
  41. data/public/javascripts/tiny_mce/langs/hu.js +154 -0
  42. data/public/javascripts/tiny_mce/langs/ia.js +154 -0
  43. data/public/javascripts/tiny_mce/langs/id.js +154 -0
  44. data/public/javascripts/tiny_mce/langs/ii.js +154 -0
  45. data/public/javascripts/tiny_mce/langs/is.js +154 -0
  46. data/public/javascripts/tiny_mce/langs/it.js +154 -0
  47. data/public/javascripts/tiny_mce/langs/ja.js +154 -0
  48. data/public/javascripts/tiny_mce/langs/ko.js +154 -0
  49. data/public/javascripts/tiny_mce/langs/lt.js +172 -0
  50. data/public/javascripts/tiny_mce/langs/lv.js +154 -0
  51. data/public/javascripts/tiny_mce/langs/mk.js +154 -0
  52. data/public/javascripts/tiny_mce/langs/ml.js +154 -0
  53. data/public/javascripts/tiny_mce/langs/mn.js +154 -0
  54. data/public/javascripts/tiny_mce/langs/ms.js +154 -0
  55. data/public/javascripts/tiny_mce/langs/nb.js +154 -0
  56. data/public/javascripts/tiny_mce/langs/nl.js +154 -0
  57. data/public/javascripts/tiny_mce/langs/nn.js +154 -0
  58. data/public/javascripts/tiny_mce/langs/no.js +154 -0
  59. data/public/javascripts/tiny_mce/langs/pl.js +154 -0
  60. data/public/javascripts/tiny_mce/langs/pt.js +154 -0
  61. data/public/javascripts/tiny_mce/langs/ro.js +154 -0
  62. data/public/javascripts/tiny_mce/langs/ru.js +155 -0
  63. data/public/javascripts/tiny_mce/langs/sc.js +162 -0
  64. data/public/javascripts/tiny_mce/langs/se.js +154 -0
  65. data/public/javascripts/tiny_mce/langs/si.js +154 -0
  66. data/public/javascripts/tiny_mce/langs/sk.js +154 -0
  67. data/public/javascripts/tiny_mce/langs/sl.js +155 -0
  68. data/public/javascripts/tiny_mce/langs/sq.js +154 -0
  69. data/public/javascripts/tiny_mce/langs/sr.js +154 -0
  70. data/public/javascripts/tiny_mce/langs/sv.js +154 -0
  71. data/public/javascripts/tiny_mce/langs/ta.js +154 -0
  72. data/public/javascripts/tiny_mce/langs/te.js +154 -0
  73. data/public/javascripts/tiny_mce/langs/th.js +154 -0
  74. data/public/javascripts/tiny_mce/langs/tr.js +154 -0
  75. data/public/javascripts/tiny_mce/langs/tt.js +154 -0
  76. data/public/javascripts/tiny_mce/langs/tw.js +162 -0
  77. data/public/javascripts/tiny_mce/langs/uk.js +157 -0
  78. data/public/javascripts/tiny_mce/langs/vi.js +154 -0
  79. data/public/javascripts/tiny_mce/langs/zh.js +162 -0
  80. data/public/javascripts/tiny_mce/license.txt +504 -0
  81. data/public/javascripts/tiny_mce/plugins/advhr/css/advhr.css +5 -0
  82. data/public/javascripts/tiny_mce/plugins/advhr/editor_plugin.js +1 -0
  83. data/public/javascripts/tiny_mce/plugins/advhr/editor_plugin_src.js +54 -0
  84. data/public/javascripts/tiny_mce/plugins/advhr/js/rule.js +43 -0
  85. data/public/javascripts/tiny_mce/plugins/advhr/langs/ar_dlg.js +5 -0
  86. data/public/javascripts/tiny_mce/plugins/advhr/langs/az_dlg.js +5 -0
  87. data/public/javascripts/tiny_mce/plugins/advhr/langs/be_dlg.js +5 -0
  88. data/public/javascripts/tiny_mce/plugins/advhr/langs/bg_dlg.js +5 -0
  89. data/public/javascripts/tiny_mce/plugins/advhr/langs/bn_dlg.js +5 -0
  90. data/public/javascripts/tiny_mce/plugins/advhr/langs/br_dlg.js +5 -0
  91. data/public/javascripts/tiny_mce/plugins/advhr/langs/bs_dlg.js +5 -0
  92. data/public/javascripts/tiny_mce/plugins/advhr/langs/ca_dlg.js +5 -0
  93. data/public/javascripts/tiny_mce/plugins/advhr/langs/ch_dlg.js +5 -0
  94. data/public/javascripts/tiny_mce/plugins/advhr/langs/cs_dlg.js +5 -0
  95. data/public/javascripts/tiny_mce/plugins/advhr/langs/cy_dlg.js +5 -0
  96. data/public/javascripts/tiny_mce/plugins/advhr/langs/da_dlg.js +5 -0
  97. data/public/javascripts/tiny_mce/plugins/advhr/langs/de_dlg.js +5 -0
  98. data/public/javascripts/tiny_mce/plugins/advhr/langs/dv_dlg.js +5 -0
  99. data/public/javascripts/tiny_mce/plugins/advhr/langs/el_dlg.js +5 -0
  100. data/public/javascripts/tiny_mce/plugins/advhr/langs/en_dlg.js +5 -0
  101. data/public/javascripts/tiny_mce/plugins/advhr/langs/es_dlg.js +5 -0
  102. data/public/javascripts/tiny_mce/plugins/advhr/langs/et_dlg.js +5 -0
  103. data/public/javascripts/tiny_mce/plugins/advhr/langs/fa_dlg.js +5 -0
  104. data/public/javascripts/tiny_mce/plugins/advhr/langs/fi_dlg.js +5 -0
  105. data/public/javascripts/tiny_mce/plugins/advhr/langs/fr_dlg.js +5 -0
  106. data/public/javascripts/tiny_mce/plugins/advhr/langs/gl_dlg.js +5 -0
  107. data/public/javascripts/tiny_mce/plugins/advhr/langs/gu_dlg.js +5 -0
  108. data/public/javascripts/tiny_mce/plugins/advhr/langs/he_dlg.js +5 -0
  109. data/public/javascripts/tiny_mce/plugins/advhr/langs/hi_dlg.js +5 -0
  110. data/public/javascripts/tiny_mce/plugins/advhr/langs/hr_dlg.js +5 -0
  111. data/public/javascripts/tiny_mce/plugins/advhr/langs/hu_dlg.js +5 -0
  112. data/public/javascripts/tiny_mce/plugins/advhr/langs/ia_dlg.js +5 -0
  113. data/public/javascripts/tiny_mce/plugins/advhr/langs/id_dlg.js +5 -0
  114. data/public/javascripts/tiny_mce/plugins/advhr/langs/ii_dlg.js +5 -0
  115. data/public/javascripts/tiny_mce/plugins/advhr/langs/is_dlg.js +5 -0
  116. data/public/javascripts/tiny_mce/plugins/advhr/langs/it_dlg.js +5 -0
  117. data/public/javascripts/tiny_mce/plugins/advhr/langs/ja_dlg.js +5 -0
  118. data/public/javascripts/tiny_mce/plugins/advhr/langs/ko_dlg.js +5 -0
  119. data/public/javascripts/tiny_mce/plugins/advhr/langs/lt_dlg.js +5 -0
  120. data/public/javascripts/tiny_mce/plugins/advhr/langs/lv_dlg.js +5 -0
  121. data/public/javascripts/tiny_mce/plugins/advhr/langs/mk_dlg.js +5 -0
  122. data/public/javascripts/tiny_mce/plugins/advhr/langs/ml_dlg.js +5 -0
  123. data/public/javascripts/tiny_mce/plugins/advhr/langs/mn_dlg.js +5 -0
  124. data/public/javascripts/tiny_mce/plugins/advhr/langs/ms_dlg.js +5 -0
  125. data/public/javascripts/tiny_mce/plugins/advhr/langs/nb_dlg.js +5 -0
  126. data/public/javascripts/tiny_mce/plugins/advhr/langs/nl_dlg.js +5 -0
  127. data/public/javascripts/tiny_mce/plugins/advhr/langs/nn_dlg.js +5 -0
  128. data/public/javascripts/tiny_mce/plugins/advhr/langs/no_dlg.js +5 -0
  129. data/public/javascripts/tiny_mce/plugins/advhr/langs/pl_dlg.js +5 -0
  130. data/public/javascripts/tiny_mce/plugins/advhr/langs/pt_dlg.js +5 -0
  131. data/public/javascripts/tiny_mce/plugins/advhr/langs/ro_dlg.js +5 -0
  132. data/public/javascripts/tiny_mce/plugins/advhr/langs/ru_dlg.js +5 -0
  133. data/public/javascripts/tiny_mce/plugins/advhr/langs/sc_dlg.js +5 -0
  134. data/public/javascripts/tiny_mce/plugins/advhr/langs/se_dlg.js +5 -0
  135. data/public/javascripts/tiny_mce/plugins/advhr/langs/si_dlg.js +5 -0
  136. data/public/javascripts/tiny_mce/plugins/advhr/langs/sk_dlg.js +5 -0
  137. data/public/javascripts/tiny_mce/plugins/advhr/langs/sl_dlg.js +5 -0
  138. data/public/javascripts/tiny_mce/plugins/advhr/langs/sq_dlg.js +5 -0
  139. data/public/javascripts/tiny_mce/plugins/advhr/langs/sr_dlg.js +5 -0
  140. data/public/javascripts/tiny_mce/plugins/advhr/langs/sv_dlg.js +5 -0
  141. data/public/javascripts/tiny_mce/plugins/advhr/langs/ta_dlg.js +5 -0
  142. data/public/javascripts/tiny_mce/plugins/advhr/langs/te_dlg.js +5 -0
  143. data/public/javascripts/tiny_mce/plugins/advhr/langs/th_dlg.js +5 -0
  144. data/public/javascripts/tiny_mce/plugins/advhr/langs/tr_dlg.js +5 -0
  145. data/public/javascripts/tiny_mce/plugins/advhr/langs/tt_dlg.js +5 -0
  146. data/public/javascripts/tiny_mce/plugins/advhr/langs/tw_dlg.js +5 -0
  147. data/public/javascripts/tiny_mce/plugins/advhr/langs/uk_dlg.js +5 -0
  148. data/public/javascripts/tiny_mce/plugins/advhr/langs/vi_dlg.js +5 -0
  149. data/public/javascripts/tiny_mce/plugins/advhr/langs/zh_dlg.js +5 -0
  150. data/public/javascripts/tiny_mce/plugins/advhr/rule.htm +62 -0
  151. data/public/javascripts/tiny_mce/plugins/advimage/css/advimage.css +13 -0
  152. data/public/javascripts/tiny_mce/plugins/advimage/editor_plugin.js +1 -0
  153. data/public/javascripts/tiny_mce/plugins/advimage/editor_plugin_src.js +47 -0
  154. data/public/javascripts/tiny_mce/plugins/advimage/image.htm +237 -0
  155. data/public/javascripts/tiny_mce/plugins/advimage/img/sample.gif +0 -0
  156. data/public/javascripts/tiny_mce/plugins/advimage/js/image.js +443 -0
  157. data/public/javascripts/tiny_mce/plugins/advimage/langs/ar_dlg.js +43 -0
  158. data/public/javascripts/tiny_mce/plugins/advimage/langs/az_dlg.js +43 -0
  159. data/public/javascripts/tiny_mce/plugins/advimage/langs/be_dlg.js +43 -0
  160. data/public/javascripts/tiny_mce/plugins/advimage/langs/bg_dlg.js +43 -0
  161. data/public/javascripts/tiny_mce/plugins/advimage/langs/bn_dlg.js +43 -0
  162. data/public/javascripts/tiny_mce/plugins/advimage/langs/br_dlg.js +43 -0
  163. data/public/javascripts/tiny_mce/plugins/advimage/langs/bs_dlg.js +43 -0
  164. data/public/javascripts/tiny_mce/plugins/advimage/langs/ca_dlg.js +43 -0
  165. data/public/javascripts/tiny_mce/plugins/advimage/langs/ch_dlg.js +43 -0
  166. data/public/javascripts/tiny_mce/plugins/advimage/langs/cs_dlg.js +43 -0
  167. data/public/javascripts/tiny_mce/plugins/advimage/langs/cy_dlg.js +43 -0
  168. data/public/javascripts/tiny_mce/plugins/advimage/langs/da_dlg.js +43 -0
  169. data/public/javascripts/tiny_mce/plugins/advimage/langs/de_dlg.js +43 -0
  170. data/public/javascripts/tiny_mce/plugins/advimage/langs/dv_dlg.js +43 -0
  171. data/public/javascripts/tiny_mce/plugins/advimage/langs/el_dlg.js +43 -0
  172. data/public/javascripts/tiny_mce/plugins/advimage/langs/en_dlg.js +43 -0
  173. data/public/javascripts/tiny_mce/plugins/advimage/langs/es_dlg.js +43 -0
  174. data/public/javascripts/tiny_mce/plugins/advimage/langs/et_dlg.js +43 -0
  175. data/public/javascripts/tiny_mce/plugins/advimage/langs/fa_dlg.js +43 -0
  176. data/public/javascripts/tiny_mce/plugins/advimage/langs/fi_dlg.js +43 -0
  177. data/public/javascripts/tiny_mce/plugins/advimage/langs/fr_dlg.js +43 -0
  178. data/public/javascripts/tiny_mce/plugins/advimage/langs/gl_dlg.js +43 -0
  179. data/public/javascripts/tiny_mce/plugins/advimage/langs/gu_dlg.js +43 -0
  180. data/public/javascripts/tiny_mce/plugins/advimage/langs/he_dlg.js +43 -0
  181. data/public/javascripts/tiny_mce/plugins/advimage/langs/hi_dlg.js +43 -0
  182. data/public/javascripts/tiny_mce/plugins/advimage/langs/hr_dlg.js +43 -0
  183. data/public/javascripts/tiny_mce/plugins/advimage/langs/hu_dlg.js +43 -0
  184. data/public/javascripts/tiny_mce/plugins/advimage/langs/ia_dlg.js +43 -0
  185. data/public/javascripts/tiny_mce/plugins/advimage/langs/id_dlg.js +43 -0
  186. data/public/javascripts/tiny_mce/plugins/advimage/langs/ii_dlg.js +43 -0
  187. data/public/javascripts/tiny_mce/plugins/advimage/langs/is_dlg.js +43 -0
  188. data/public/javascripts/tiny_mce/plugins/advimage/langs/it_dlg.js +43 -0
  189. data/public/javascripts/tiny_mce/plugins/advimage/langs/ja_dlg.js +43 -0
  190. data/public/javascripts/tiny_mce/plugins/advimage/langs/ko_dlg.js +43 -0
  191. data/public/javascripts/tiny_mce/plugins/advimage/langs/lt_dlg.js +43 -0
  192. data/public/javascripts/tiny_mce/plugins/advimage/langs/lv_dlg.js +43 -0
  193. data/public/javascripts/tiny_mce/plugins/advimage/langs/mk_dlg.js +43 -0
  194. data/public/javascripts/tiny_mce/plugins/advimage/langs/ml_dlg.js +43 -0
  195. data/public/javascripts/tiny_mce/plugins/advimage/langs/mn_dlg.js +43 -0
  196. data/public/javascripts/tiny_mce/plugins/advimage/langs/ms_dlg.js +43 -0
  197. data/public/javascripts/tiny_mce/plugins/advimage/langs/nb_dlg.js +43 -0
  198. data/public/javascripts/tiny_mce/plugins/advimage/langs/nl_dlg.js +43 -0
  199. data/public/javascripts/tiny_mce/plugins/advimage/langs/nn_dlg.js +43 -0
  200. data/public/javascripts/tiny_mce/plugins/advimage/langs/no_dlg.js +43 -0
  201. data/public/javascripts/tiny_mce/plugins/advimage/langs/pl_dlg.js +43 -0
  202. data/public/javascripts/tiny_mce/plugins/advimage/langs/pt_dlg.js +43 -0
  203. data/public/javascripts/tiny_mce/plugins/advimage/langs/ro_dlg.js +43 -0
  204. data/public/javascripts/tiny_mce/plugins/advimage/langs/ru_dlg.js +43 -0
  205. data/public/javascripts/tiny_mce/plugins/advimage/langs/sc_dlg.js +43 -0
  206. data/public/javascripts/tiny_mce/plugins/advimage/langs/se_dlg.js +43 -0
  207. data/public/javascripts/tiny_mce/plugins/advimage/langs/si_dlg.js +43 -0
  208. data/public/javascripts/tiny_mce/plugins/advimage/langs/sk_dlg.js +43 -0
  209. data/public/javascripts/tiny_mce/plugins/advimage/langs/sl_dlg.js +43 -0
  210. data/public/javascripts/tiny_mce/plugins/advimage/langs/sq_dlg.js +43 -0
  211. data/public/javascripts/tiny_mce/plugins/advimage/langs/sr_dlg.js +43 -0
  212. data/public/javascripts/tiny_mce/plugins/advimage/langs/sv_dlg.js +43 -0
  213. data/public/javascripts/tiny_mce/plugins/advimage/langs/ta_dlg.js +43 -0
  214. data/public/javascripts/tiny_mce/plugins/advimage/langs/te_dlg.js +43 -0
  215. data/public/javascripts/tiny_mce/plugins/advimage/langs/th_dlg.js +43 -0
  216. data/public/javascripts/tiny_mce/plugins/advimage/langs/tr_dlg.js +43 -0
  217. data/public/javascripts/tiny_mce/plugins/advimage/langs/tt_dlg.js +43 -0
  218. data/public/javascripts/tiny_mce/plugins/advimage/langs/tw_dlg.js +43 -0
  219. data/public/javascripts/tiny_mce/plugins/advimage/langs/uk_dlg.js +43 -0
  220. data/public/javascripts/tiny_mce/plugins/advimage/langs/vi_dlg.js +43 -0
  221. data/public/javascripts/tiny_mce/plugins/advimage/langs/zh_dlg.js +43 -0
  222. data/public/javascripts/tiny_mce/plugins/advlink/css/advlink.css +8 -0
  223. data/public/javascripts/tiny_mce/plugins/advlink/editor_plugin.js +1 -0
  224. data/public/javascripts/tiny_mce/plugins/advlink/editor_plugin_src.js +58 -0
  225. data/public/javascripts/tiny_mce/plugins/advlink/js/advlink.js +528 -0
  226. data/public/javascripts/tiny_mce/plugins/advlink/langs/ar_dlg.js +52 -0
  227. data/public/javascripts/tiny_mce/plugins/advlink/langs/az_dlg.js +52 -0
  228. data/public/javascripts/tiny_mce/plugins/advlink/langs/be_dlg.js +52 -0
  229. data/public/javascripts/tiny_mce/plugins/advlink/langs/bg_dlg.js +52 -0
  230. data/public/javascripts/tiny_mce/plugins/advlink/langs/bn_dlg.js +52 -0
  231. data/public/javascripts/tiny_mce/plugins/advlink/langs/br_dlg.js +52 -0
  232. data/public/javascripts/tiny_mce/plugins/advlink/langs/bs_dlg.js +52 -0
  233. data/public/javascripts/tiny_mce/plugins/advlink/langs/ca_dlg.js +52 -0
  234. data/public/javascripts/tiny_mce/plugins/advlink/langs/ch_dlg.js +52 -0
  235. data/public/javascripts/tiny_mce/plugins/advlink/langs/cs_dlg.js +52 -0
  236. data/public/javascripts/tiny_mce/plugins/advlink/langs/cy_dlg.js +52 -0
  237. data/public/javascripts/tiny_mce/plugins/advlink/langs/da_dlg.js +52 -0
  238. data/public/javascripts/tiny_mce/plugins/advlink/langs/de_dlg.js +52 -0
  239. data/public/javascripts/tiny_mce/plugins/advlink/langs/dv_dlg.js +52 -0
  240. data/public/javascripts/tiny_mce/plugins/advlink/langs/el_dlg.js +52 -0
  241. data/public/javascripts/tiny_mce/plugins/advlink/langs/en_dlg.js +52 -0
  242. data/public/javascripts/tiny_mce/plugins/advlink/langs/es_dlg.js +52 -0
  243. data/public/javascripts/tiny_mce/plugins/advlink/langs/et_dlg.js +52 -0
  244. data/public/javascripts/tiny_mce/plugins/advlink/langs/fa_dlg.js +52 -0
  245. data/public/javascripts/tiny_mce/plugins/advlink/langs/fi_dlg.js +52 -0
  246. data/public/javascripts/tiny_mce/plugins/advlink/langs/fr_dlg.js +52 -0
  247. data/public/javascripts/tiny_mce/plugins/advlink/langs/gl_dlg.js +52 -0
  248. data/public/javascripts/tiny_mce/plugins/advlink/langs/gu_dlg.js +52 -0
  249. data/public/javascripts/tiny_mce/plugins/advlink/langs/he_dlg.js +52 -0
  250. data/public/javascripts/tiny_mce/plugins/advlink/langs/hi_dlg.js +52 -0
  251. data/public/javascripts/tiny_mce/plugins/advlink/langs/hr_dlg.js +52 -0
  252. data/public/javascripts/tiny_mce/plugins/advlink/langs/hu_dlg.js +52 -0
  253. data/public/javascripts/tiny_mce/plugins/advlink/langs/ia_dlg.js +52 -0
  254. data/public/javascripts/tiny_mce/plugins/advlink/langs/id_dlg.js +52 -0
  255. data/public/javascripts/tiny_mce/plugins/advlink/langs/ii_dlg.js +52 -0
  256. data/public/javascripts/tiny_mce/plugins/advlink/langs/is_dlg.js +52 -0
  257. data/public/javascripts/tiny_mce/plugins/advlink/langs/it_dlg.js +52 -0
  258. data/public/javascripts/tiny_mce/plugins/advlink/langs/ja_dlg.js +52 -0
  259. data/public/javascripts/tiny_mce/plugins/advlink/langs/ko_dlg.js +52 -0
  260. data/public/javascripts/tiny_mce/plugins/advlink/langs/lt_dlg.js +52 -0
  261. data/public/javascripts/tiny_mce/plugins/advlink/langs/lv_dlg.js +52 -0
  262. data/public/javascripts/tiny_mce/plugins/advlink/langs/mk_dlg.js +52 -0
  263. data/public/javascripts/tiny_mce/plugins/advlink/langs/ml_dlg.js +52 -0
  264. data/public/javascripts/tiny_mce/plugins/advlink/langs/mn_dlg.js +52 -0
  265. data/public/javascripts/tiny_mce/plugins/advlink/langs/ms_dlg.js +52 -0
  266. data/public/javascripts/tiny_mce/plugins/advlink/langs/nb_dlg.js +52 -0
  267. data/public/javascripts/tiny_mce/plugins/advlink/langs/nl_dlg.js +52 -0
  268. data/public/javascripts/tiny_mce/plugins/advlink/langs/nn_dlg.js +52 -0
  269. data/public/javascripts/tiny_mce/plugins/advlink/langs/no_dlg.js +52 -0
  270. data/public/javascripts/tiny_mce/plugins/advlink/langs/pl_dlg.js +52 -0
  271. data/public/javascripts/tiny_mce/plugins/advlink/langs/pt_dlg.js +52 -0
  272. data/public/javascripts/tiny_mce/plugins/advlink/langs/ro_dlg.js +52 -0
  273. data/public/javascripts/tiny_mce/plugins/advlink/langs/ru_dlg.js +52 -0
  274. data/public/javascripts/tiny_mce/plugins/advlink/langs/sc_dlg.js +52 -0
  275. data/public/javascripts/tiny_mce/plugins/advlink/langs/se_dlg.js +52 -0
  276. data/public/javascripts/tiny_mce/plugins/advlink/langs/si_dlg.js +52 -0
  277. data/public/javascripts/tiny_mce/plugins/advlink/langs/sk_dlg.js +52 -0
  278. data/public/javascripts/tiny_mce/plugins/advlink/langs/sl_dlg.js +52 -0
  279. data/public/javascripts/tiny_mce/plugins/advlink/langs/sq_dlg.js +52 -0
  280. data/public/javascripts/tiny_mce/plugins/advlink/langs/sr_dlg.js +52 -0
  281. data/public/javascripts/tiny_mce/plugins/advlink/langs/sv_dlg.js +52 -0
  282. data/public/javascripts/tiny_mce/plugins/advlink/langs/ta_dlg.js +52 -0
  283. data/public/javascripts/tiny_mce/plugins/advlink/langs/te_dlg.js +52 -0
  284. data/public/javascripts/tiny_mce/plugins/advlink/langs/th_dlg.js +52 -0
  285. data/public/javascripts/tiny_mce/plugins/advlink/langs/tr_dlg.js +52 -0
  286. data/public/javascripts/tiny_mce/plugins/advlink/langs/tt_dlg.js +52 -0
  287. data/public/javascripts/tiny_mce/plugins/advlink/langs/tw_dlg.js +52 -0
  288. data/public/javascripts/tiny_mce/plugins/advlink/langs/uk_dlg.js +52 -0
  289. data/public/javascripts/tiny_mce/plugins/advlink/langs/vi_dlg.js +52 -0
  290. data/public/javascripts/tiny_mce/plugins/advlink/langs/zh_dlg.js +52 -0
  291. data/public/javascripts/tiny_mce/plugins/advlink/link.htm +338 -0
  292. data/public/javascripts/tiny_mce/plugins/autoresize/editor_plugin.js +1 -0
  293. data/public/javascripts/tiny_mce/plugins/autoresize/editor_plugin_src.js +114 -0
  294. data/public/javascripts/tiny_mce/plugins/autosave/editor_plugin.js +1 -0
  295. data/public/javascripts/tiny_mce/plugins/autosave/editor_plugin_src.js +51 -0
  296. data/public/javascripts/tiny_mce/plugins/bbcode/editor_plugin.js +1 -0
  297. data/public/javascripts/tiny_mce/plugins/bbcode/editor_plugin_src.js +117 -0
  298. data/public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin.js +1 -0
  299. data/public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js +95 -0
  300. data/public/javascripts/tiny_mce/plugins/directionality/editor_plugin.js +1 -0
  301. data/public/javascripts/tiny_mce/plugins/directionality/editor_plugin_src.js +79 -0
  302. data/public/javascripts/tiny_mce/plugins/emotions/editor_plugin.js +1 -0
  303. data/public/javascripts/tiny_mce/plugins/emotions/editor_plugin_src.js +40 -0
  304. data/public/javascripts/tiny_mce/plugins/emotions/emotions.htm +40 -0
  305. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-cool.gif +0 -0
  306. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-cry.gif +0 -0
  307. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif +0 -0
  308. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
  309. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-frown.gif +0 -0
  310. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif +0 -0
  311. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif +0 -0
  312. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif +0 -0
  313. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif +0 -0
  314. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif +0 -0
  315. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-smile.gif +0 -0
  316. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif +0 -0
  317. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif +0 -0
  318. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif +0 -0
  319. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-wink.gif +0 -0
  320. data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-yell.gif +0 -0
  321. data/public/javascripts/tiny_mce/plugins/emotions/js/emotions.js +22 -0
  322. data/public/javascripts/tiny_mce/plugins/emotions/langs/ar_dlg.js +20 -0
  323. data/public/javascripts/tiny_mce/plugins/emotions/langs/az_dlg.js +20 -0
  324. data/public/javascripts/tiny_mce/plugins/emotions/langs/be_dlg.js +20 -0
  325. data/public/javascripts/tiny_mce/plugins/emotions/langs/bg_dlg.js +20 -0
  326. data/public/javascripts/tiny_mce/plugins/emotions/langs/bn_dlg.js +20 -0
  327. data/public/javascripts/tiny_mce/plugins/emotions/langs/br_dlg.js +20 -0
  328. data/public/javascripts/tiny_mce/plugins/emotions/langs/bs_dlg.js +20 -0
  329. data/public/javascripts/tiny_mce/plugins/emotions/langs/ca_dlg.js +20 -0
  330. data/public/javascripts/tiny_mce/plugins/emotions/langs/ch_dlg.js +20 -0
  331. data/public/javascripts/tiny_mce/plugins/emotions/langs/cs_dlg.js +20 -0
  332. data/public/javascripts/tiny_mce/plugins/emotions/langs/cy_dlg.js +20 -0
  333. data/public/javascripts/tiny_mce/plugins/emotions/langs/da_dlg.js +20 -0
  334. data/public/javascripts/tiny_mce/plugins/emotions/langs/de_dlg.js +20 -0
  335. data/public/javascripts/tiny_mce/plugins/emotions/langs/dv_dlg.js +20 -0
  336. data/public/javascripts/tiny_mce/plugins/emotions/langs/el_dlg.js +20 -0
  337. data/public/javascripts/tiny_mce/plugins/emotions/langs/en_dlg.js +20 -0
  338. data/public/javascripts/tiny_mce/plugins/emotions/langs/es_dlg.js +20 -0
  339. data/public/javascripts/tiny_mce/plugins/emotions/langs/et_dlg.js +20 -0
  340. data/public/javascripts/tiny_mce/plugins/emotions/langs/fa_dlg.js +20 -0
  341. data/public/javascripts/tiny_mce/plugins/emotions/langs/fi_dlg.js +20 -0
  342. data/public/javascripts/tiny_mce/plugins/emotions/langs/fr_dlg.js +20 -0
  343. data/public/javascripts/tiny_mce/plugins/emotions/langs/gl_dlg.js +20 -0
  344. data/public/javascripts/tiny_mce/plugins/emotions/langs/gu_dlg.js +20 -0
  345. data/public/javascripts/tiny_mce/plugins/emotions/langs/he_dlg.js +20 -0
  346. data/public/javascripts/tiny_mce/plugins/emotions/langs/hi_dlg.js +20 -0
  347. data/public/javascripts/tiny_mce/plugins/emotions/langs/hr_dlg.js +20 -0
  348. data/public/javascripts/tiny_mce/plugins/emotions/langs/hu_dlg.js +20 -0
  349. data/public/javascripts/tiny_mce/plugins/emotions/langs/ia_dlg.js +20 -0
  350. data/public/javascripts/tiny_mce/plugins/emotions/langs/id_dlg.js +20 -0
  351. data/public/javascripts/tiny_mce/plugins/emotions/langs/ii_dlg.js +20 -0
  352. data/public/javascripts/tiny_mce/plugins/emotions/langs/is_dlg.js +20 -0
  353. data/public/javascripts/tiny_mce/plugins/emotions/langs/it_dlg.js +20 -0
  354. data/public/javascripts/tiny_mce/plugins/emotions/langs/ja_dlg.js +20 -0
  355. data/public/javascripts/tiny_mce/plugins/emotions/langs/ko_dlg.js +20 -0
  356. data/public/javascripts/tiny_mce/plugins/emotions/langs/lt_dlg.js +20 -0
  357. data/public/javascripts/tiny_mce/plugins/emotions/langs/lv_dlg.js +20 -0
  358. data/public/javascripts/tiny_mce/plugins/emotions/langs/mk_dlg.js +20 -0
  359. data/public/javascripts/tiny_mce/plugins/emotions/langs/ml_dlg.js +20 -0
  360. data/public/javascripts/tiny_mce/plugins/emotions/langs/mn_dlg.js +20 -0
  361. data/public/javascripts/tiny_mce/plugins/emotions/langs/ms_dlg.js +20 -0
  362. data/public/javascripts/tiny_mce/plugins/emotions/langs/nb_dlg.js +20 -0
  363. data/public/javascripts/tiny_mce/plugins/emotions/langs/nl_dlg.js +20 -0
  364. data/public/javascripts/tiny_mce/plugins/emotions/langs/nn_dlg.js +20 -0
  365. data/public/javascripts/tiny_mce/plugins/emotions/langs/no_dlg.js +20 -0
  366. data/public/javascripts/tiny_mce/plugins/emotions/langs/pl_dlg.js +20 -0
  367. data/public/javascripts/tiny_mce/plugins/emotions/langs/pt_dlg.js +20 -0
  368. data/public/javascripts/tiny_mce/plugins/emotions/langs/ro_dlg.js +20 -0
  369. data/public/javascripts/tiny_mce/plugins/emotions/langs/ru_dlg.js +20 -0
  370. data/public/javascripts/tiny_mce/plugins/emotions/langs/sc_dlg.js +20 -0
  371. data/public/javascripts/tiny_mce/plugins/emotions/langs/se_dlg.js +20 -0
  372. data/public/javascripts/tiny_mce/plugins/emotions/langs/si_dlg.js +20 -0
  373. data/public/javascripts/tiny_mce/plugins/emotions/langs/sk_dlg.js +20 -0
  374. data/public/javascripts/tiny_mce/plugins/emotions/langs/sl_dlg.js +20 -0
  375. data/public/javascripts/tiny_mce/plugins/emotions/langs/sq_dlg.js +20 -0
  376. data/public/javascripts/tiny_mce/plugins/emotions/langs/sr_dlg.js +20 -0
  377. data/public/javascripts/tiny_mce/plugins/emotions/langs/sv_dlg.js +20 -0
  378. data/public/javascripts/tiny_mce/plugins/emotions/langs/ta_dlg.js +20 -0
  379. data/public/javascripts/tiny_mce/plugins/emotions/langs/te_dlg.js +20 -0
  380. data/public/javascripts/tiny_mce/plugins/emotions/langs/th_dlg.js +20 -0
  381. data/public/javascripts/tiny_mce/plugins/emotions/langs/tr_dlg.js +20 -0
  382. data/public/javascripts/tiny_mce/plugins/emotions/langs/tt_dlg.js +20 -0
  383. data/public/javascripts/tiny_mce/plugins/emotions/langs/tw_dlg.js +20 -0
  384. data/public/javascripts/tiny_mce/plugins/emotions/langs/uk_dlg.js +20 -0
  385. data/public/javascripts/tiny_mce/plugins/emotions/langs/vi_dlg.js +20 -0
  386. data/public/javascripts/tiny_mce/plugins/emotions/langs/zh_dlg.js +20 -0
  387. data/public/javascripts/tiny_mce/plugins/example/dialog.htm +27 -0
  388. data/public/javascripts/tiny_mce/plugins/example/editor_plugin.js +1 -0
  389. data/public/javascripts/tiny_mce/plugins/example/editor_plugin_src.js +81 -0
  390. data/public/javascripts/tiny_mce/plugins/example/img/example.gif +0 -0
  391. data/public/javascripts/tiny_mce/plugins/example/js/dialog.js +19 -0
  392. data/public/javascripts/tiny_mce/plugins/example/langs/en.js +3 -0
  393. data/public/javascripts/tiny_mce/plugins/example/langs/en_dlg.js +3 -0
  394. data/public/javascripts/tiny_mce/plugins/fullpage/css/fullpage.css +182 -0
  395. data/public/javascripts/tiny_mce/plugins/fullpage/editor_plugin.js +1 -0
  396. data/public/javascripts/tiny_mce/plugins/fullpage/editor_plugin_src.js +146 -0
  397. data/public/javascripts/tiny_mce/plugins/fullpage/fullpage.htm +576 -0
  398. data/public/javascripts/tiny_mce/plugins/fullpage/js/fullpage.js +461 -0
  399. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ar_dlg.js +85 -0
  400. data/public/javascripts/tiny_mce/plugins/fullpage/langs/az_dlg.js +85 -0
  401. data/public/javascripts/tiny_mce/plugins/fullpage/langs/be_dlg.js +85 -0
  402. data/public/javascripts/tiny_mce/plugins/fullpage/langs/bg_dlg.js +85 -0
  403. data/public/javascripts/tiny_mce/plugins/fullpage/langs/bn_dlg.js +85 -0
  404. data/public/javascripts/tiny_mce/plugins/fullpage/langs/br_dlg.js +85 -0
  405. data/public/javascripts/tiny_mce/plugins/fullpage/langs/bs_dlg.js +85 -0
  406. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ca_dlg.js +85 -0
  407. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ch_dlg.js +85 -0
  408. data/public/javascripts/tiny_mce/plugins/fullpage/langs/cs_dlg.js +85 -0
  409. data/public/javascripts/tiny_mce/plugins/fullpage/langs/cy_dlg.js +85 -0
  410. data/public/javascripts/tiny_mce/plugins/fullpage/langs/da_dlg.js +85 -0
  411. data/public/javascripts/tiny_mce/plugins/fullpage/langs/de_dlg.js +85 -0
  412. data/public/javascripts/tiny_mce/plugins/fullpage/langs/dv_dlg.js +85 -0
  413. data/public/javascripts/tiny_mce/plugins/fullpage/langs/el_dlg.js +85 -0
  414. data/public/javascripts/tiny_mce/plugins/fullpage/langs/en_dlg.js +85 -0
  415. data/public/javascripts/tiny_mce/plugins/fullpage/langs/es_dlg.js +85 -0
  416. data/public/javascripts/tiny_mce/plugins/fullpage/langs/et_dlg.js +85 -0
  417. data/public/javascripts/tiny_mce/plugins/fullpage/langs/fa_dlg.js +85 -0
  418. data/public/javascripts/tiny_mce/plugins/fullpage/langs/fi_dlg.js +85 -0
  419. data/public/javascripts/tiny_mce/plugins/fullpage/langs/fr_dlg.js +85 -0
  420. data/public/javascripts/tiny_mce/plugins/fullpage/langs/gl_dlg.js +85 -0
  421. data/public/javascripts/tiny_mce/plugins/fullpage/langs/gu_dlg.js +85 -0
  422. data/public/javascripts/tiny_mce/plugins/fullpage/langs/he_dlg.js +85 -0
  423. data/public/javascripts/tiny_mce/plugins/fullpage/langs/hi_dlg.js +85 -0
  424. data/public/javascripts/tiny_mce/plugins/fullpage/langs/hr_dlg.js +85 -0
  425. data/public/javascripts/tiny_mce/plugins/fullpage/langs/hu_dlg.js +85 -0
  426. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ia_dlg.js +85 -0
  427. data/public/javascripts/tiny_mce/plugins/fullpage/langs/id_dlg.js +85 -0
  428. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ii_dlg.js +85 -0
  429. data/public/javascripts/tiny_mce/plugins/fullpage/langs/is_dlg.js +85 -0
  430. data/public/javascripts/tiny_mce/plugins/fullpage/langs/it_dlg.js +85 -0
  431. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ja_dlg.js +85 -0
  432. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ko_dlg.js +85 -0
  433. data/public/javascripts/tiny_mce/plugins/fullpage/langs/lt_dlg.js +85 -0
  434. data/public/javascripts/tiny_mce/plugins/fullpage/langs/lv_dlg.js +85 -0
  435. data/public/javascripts/tiny_mce/plugins/fullpage/langs/mk_dlg.js +85 -0
  436. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ml_dlg.js +85 -0
  437. data/public/javascripts/tiny_mce/plugins/fullpage/langs/mn_dlg.js +85 -0
  438. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ms_dlg.js +85 -0
  439. data/public/javascripts/tiny_mce/plugins/fullpage/langs/nb_dlg.js +85 -0
  440. data/public/javascripts/tiny_mce/plugins/fullpage/langs/nl_dlg.js +85 -0
  441. data/public/javascripts/tiny_mce/plugins/fullpage/langs/nn_dlg.js +85 -0
  442. data/public/javascripts/tiny_mce/plugins/fullpage/langs/no_dlg.js +85 -0
  443. data/public/javascripts/tiny_mce/plugins/fullpage/langs/pl_dlg.js +85 -0
  444. data/public/javascripts/tiny_mce/plugins/fullpage/langs/pt_dlg.js +85 -0
  445. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ro_dlg.js +85 -0
  446. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ru_dlg.js +85 -0
  447. data/public/javascripts/tiny_mce/plugins/fullpage/langs/sc_dlg.js +85 -0
  448. data/public/javascripts/tiny_mce/plugins/fullpage/langs/se_dlg.js +85 -0
  449. data/public/javascripts/tiny_mce/plugins/fullpage/langs/si_dlg.js +85 -0
  450. data/public/javascripts/tiny_mce/plugins/fullpage/langs/sk_dlg.js +85 -0
  451. data/public/javascripts/tiny_mce/plugins/fullpage/langs/sl_dlg.js +85 -0
  452. data/public/javascripts/tiny_mce/plugins/fullpage/langs/sq_dlg.js +85 -0
  453. data/public/javascripts/tiny_mce/plugins/fullpage/langs/sr_dlg.js +85 -0
  454. data/public/javascripts/tiny_mce/plugins/fullpage/langs/sv_dlg.js +85 -0
  455. data/public/javascripts/tiny_mce/plugins/fullpage/langs/ta_dlg.js +85 -0
  456. data/public/javascripts/tiny_mce/plugins/fullpage/langs/te_dlg.js +85 -0
  457. data/public/javascripts/tiny_mce/plugins/fullpage/langs/th_dlg.js +85 -0
  458. data/public/javascripts/tiny_mce/plugins/fullpage/langs/tr_dlg.js +85 -0
  459. data/public/javascripts/tiny_mce/plugins/fullpage/langs/tt_dlg.js +85 -0
  460. data/public/javascripts/tiny_mce/plugins/fullpage/langs/tw_dlg.js +85 -0
  461. data/public/javascripts/tiny_mce/plugins/fullpage/langs/uk_dlg.js +85 -0
  462. data/public/javascripts/tiny_mce/plugins/fullpage/langs/vi_dlg.js +85 -0
  463. data/public/javascripts/tiny_mce/plugins/fullpage/langs/zh_dlg.js +85 -0
  464. data/public/javascripts/tiny_mce/plugins/fullscreen/editor_plugin.js +1 -0
  465. data/public/javascripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js +145 -0
  466. data/public/javascripts/tiny_mce/plugins/fullscreen/fullscreen.htm +110 -0
  467. data/public/javascripts/tiny_mce/plugins/iespell/editor_plugin.js +1 -0
  468. data/public/javascripts/tiny_mce/plugins/iespell/editor_plugin_src.js +51 -0
  469. data/public/javascripts/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -0
  470. data/public/javascripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js +632 -0
  471. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  472. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  473. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  474. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  475. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  476. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  477. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  478. data/public/javascripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css +90 -0
  479. data/public/javascripts/tiny_mce/plugins/inlinepopups/template.htm +387 -0
  480. data/public/javascripts/tiny_mce/plugins/insertdatetime/editor_plugin.js +1 -0
  481. data/public/javascripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js +80 -0
  482. data/public/javascripts/tiny_mce/plugins/layer/editor_plugin.js +1 -0
  483. data/public/javascripts/tiny_mce/plugins/layer/editor_plugin_src.js +209 -0
  484. data/public/javascripts/tiny_mce/plugins/media/css/content.css +6 -0
  485. data/public/javascripts/tiny_mce/plugins/media/css/media.css +16 -0
  486. data/public/javascripts/tiny_mce/plugins/media/editor_plugin.js +1 -0
  487. data/public/javascripts/tiny_mce/plugins/media/editor_plugin_src.js +405 -0
  488. data/public/javascripts/tiny_mce/plugins/media/img/flash.gif +0 -0
  489. data/public/javascripts/tiny_mce/plugins/media/img/flv_player.swf +0 -0
  490. data/public/javascripts/tiny_mce/plugins/media/img/quicktime.gif +0 -0
  491. data/public/javascripts/tiny_mce/plugins/media/img/realmedia.gif +0 -0
  492. data/public/javascripts/tiny_mce/plugins/media/img/shockwave.gif +0 -0
  493. data/public/javascripts/tiny_mce/plugins/media/img/trans.gif +0 -0
  494. data/public/javascripts/tiny_mce/plugins/media/img/windowsmedia.gif +0 -0
  495. data/public/javascripts/tiny_mce/plugins/media/js/embed.js +73 -0
  496. data/public/javascripts/tiny_mce/plugins/media/js/media.js +630 -0
  497. data/public/javascripts/tiny_mce/plugins/media/langs/ar_dlg.js +103 -0
  498. data/public/javascripts/tiny_mce/plugins/media/langs/az_dlg.js +103 -0
  499. data/public/javascripts/tiny_mce/plugins/media/langs/be_dlg.js +103 -0
  500. data/public/javascripts/tiny_mce/plugins/media/langs/bg_dlg.js +103 -0
  501. data/public/javascripts/tiny_mce/plugins/media/langs/bn_dlg.js +103 -0
  502. data/public/javascripts/tiny_mce/plugins/media/langs/br_dlg.js +103 -0
  503. data/public/javascripts/tiny_mce/plugins/media/langs/bs_dlg.js +103 -0
  504. data/public/javascripts/tiny_mce/plugins/media/langs/ca_dlg.js +103 -0
  505. data/public/javascripts/tiny_mce/plugins/media/langs/ch_dlg.js +103 -0
  506. data/public/javascripts/tiny_mce/plugins/media/langs/cs_dlg.js +103 -0
  507. data/public/javascripts/tiny_mce/plugins/media/langs/cy_dlg.js +103 -0
  508. data/public/javascripts/tiny_mce/plugins/media/langs/da_dlg.js +103 -0
  509. data/public/javascripts/tiny_mce/plugins/media/langs/de_dlg.js +103 -0
  510. data/public/javascripts/tiny_mce/plugins/media/langs/dv_dlg.js +103 -0
  511. data/public/javascripts/tiny_mce/plugins/media/langs/el_dlg.js +103 -0
  512. data/public/javascripts/tiny_mce/plugins/media/langs/en_dlg.js +103 -0
  513. data/public/javascripts/tiny_mce/plugins/media/langs/es_dlg.js +103 -0
  514. data/public/javascripts/tiny_mce/plugins/media/langs/et_dlg.js +103 -0
  515. data/public/javascripts/tiny_mce/plugins/media/langs/fa_dlg.js +103 -0
  516. data/public/javascripts/tiny_mce/plugins/media/langs/fi_dlg.js +103 -0
  517. data/public/javascripts/tiny_mce/plugins/media/langs/fr_dlg.js +103 -0
  518. data/public/javascripts/tiny_mce/plugins/media/langs/gl_dlg.js +103 -0
  519. data/public/javascripts/tiny_mce/plugins/media/langs/gu_dlg.js +103 -0
  520. data/public/javascripts/tiny_mce/plugins/media/langs/he_dlg.js +103 -0
  521. data/public/javascripts/tiny_mce/plugins/media/langs/hi_dlg.js +103 -0
  522. data/public/javascripts/tiny_mce/plugins/media/langs/hr_dlg.js +103 -0
  523. data/public/javascripts/tiny_mce/plugins/media/langs/hu_dlg.js +103 -0
  524. data/public/javascripts/tiny_mce/plugins/media/langs/ia_dlg.js +103 -0
  525. data/public/javascripts/tiny_mce/plugins/media/langs/id_dlg.js +103 -0
  526. data/public/javascripts/tiny_mce/plugins/media/langs/ii_dlg.js +103 -0
  527. data/public/javascripts/tiny_mce/plugins/media/langs/is_dlg.js +103 -0
  528. data/public/javascripts/tiny_mce/plugins/media/langs/it_dlg.js +103 -0
  529. data/public/javascripts/tiny_mce/plugins/media/langs/ja_dlg.js +103 -0
  530. data/public/javascripts/tiny_mce/plugins/media/langs/ko_dlg.js +103 -0
  531. data/public/javascripts/tiny_mce/plugins/media/langs/lt_dlg.js +103 -0
  532. data/public/javascripts/tiny_mce/plugins/media/langs/lv_dlg.js +103 -0
  533. data/public/javascripts/tiny_mce/plugins/media/langs/mk_dlg.js +103 -0
  534. data/public/javascripts/tiny_mce/plugins/media/langs/ml_dlg.js +103 -0
  535. data/public/javascripts/tiny_mce/plugins/media/langs/mn_dlg.js +103 -0
  536. data/public/javascripts/tiny_mce/plugins/media/langs/ms_dlg.js +102 -0
  537. data/public/javascripts/tiny_mce/plugins/media/langs/nb_dlg.js +103 -0
  538. data/public/javascripts/tiny_mce/plugins/media/langs/nl_dlg.js +103 -0
  539. data/public/javascripts/tiny_mce/plugins/media/langs/nn_dlg.js +103 -0
  540. data/public/javascripts/tiny_mce/plugins/media/langs/no_dlg.js +103 -0
  541. data/public/javascripts/tiny_mce/plugins/media/langs/pl_dlg.js +103 -0
  542. data/public/javascripts/tiny_mce/plugins/media/langs/pt_dlg.js +103 -0
  543. data/public/javascripts/tiny_mce/plugins/media/langs/ro_dlg.js +103 -0
  544. data/public/javascripts/tiny_mce/plugins/media/langs/ru_dlg.js +103 -0
  545. data/public/javascripts/tiny_mce/plugins/media/langs/sc_dlg.js +103 -0
  546. data/public/javascripts/tiny_mce/plugins/media/langs/se_dlg.js +103 -0
  547. data/public/javascripts/tiny_mce/plugins/media/langs/si_dlg.js +103 -0
  548. data/public/javascripts/tiny_mce/plugins/media/langs/sk_dlg.js +103 -0
  549. data/public/javascripts/tiny_mce/plugins/media/langs/sl_dlg.js +103 -0
  550. data/public/javascripts/tiny_mce/plugins/media/langs/sq_dlg.js +103 -0
  551. data/public/javascripts/tiny_mce/plugins/media/langs/sr_dlg.js +103 -0
  552. data/public/javascripts/tiny_mce/plugins/media/langs/sv_dlg.js +103 -0
  553. data/public/javascripts/tiny_mce/plugins/media/langs/ta_dlg.js +103 -0
  554. data/public/javascripts/tiny_mce/plugins/media/langs/te_dlg.js +103 -0
  555. data/public/javascripts/tiny_mce/plugins/media/langs/th_dlg.js +103 -0
  556. data/public/javascripts/tiny_mce/plugins/media/langs/tr_dlg.js +103 -0
  557. data/public/javascripts/tiny_mce/plugins/media/langs/tt_dlg.js +103 -0
  558. data/public/javascripts/tiny_mce/plugins/media/langs/tw_dlg.js +103 -0
  559. data/public/javascripts/tiny_mce/plugins/media/langs/uk_dlg.js +103 -0
  560. data/public/javascripts/tiny_mce/plugins/media/langs/vi_dlg.js +103 -0
  561. data/public/javascripts/tiny_mce/plugins/media/langs/zh_dlg.js +103 -0
  562. data/public/javascripts/tiny_mce/plugins/media/media.htm +822 -0
  563. data/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js +1 -0
  564. data/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js +50 -0
  565. data/public/javascripts/tiny_mce/plugins/noneditable/editor_plugin.js +1 -0
  566. data/public/javascripts/tiny_mce/plugins/noneditable/editor_plugin_src.js +87 -0
  567. data/public/javascripts/tiny_mce/plugins/pagebreak/css/content.css +1 -0
  568. data/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin.js +1 -0
  569. data/public/javascripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js +74 -0
  570. data/public/javascripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif +0 -0
  571. data/public/javascripts/tiny_mce/plugins/pagebreak/img/trans.gif +0 -0
  572. data/public/javascripts/tiny_mce/plugins/paste/editor_plugin.js +1 -0
  573. data/public/javascripts/tiny_mce/plugins/paste/editor_plugin_src.js +512 -0
  574. data/public/javascripts/tiny_mce/plugins/paste/js/pastetext.js +36 -0
  575. data/public/javascripts/tiny_mce/plugins/paste/js/pasteword.js +51 -0
  576. data/public/javascripts/tiny_mce/plugins/paste/langs/ar_dlg.js +5 -0
  577. data/public/javascripts/tiny_mce/plugins/paste/langs/az_dlg.js +5 -0
  578. data/public/javascripts/tiny_mce/plugins/paste/langs/be_dlg.js +5 -0
  579. data/public/javascripts/tiny_mce/plugins/paste/langs/bg_dlg.js +5 -0
  580. data/public/javascripts/tiny_mce/plugins/paste/langs/bn_dlg.js +5 -0
  581. data/public/javascripts/tiny_mce/plugins/paste/langs/br_dlg.js +5 -0
  582. data/public/javascripts/tiny_mce/plugins/paste/langs/bs_dlg.js +5 -0
  583. data/public/javascripts/tiny_mce/plugins/paste/langs/ca_dlg.js +5 -0
  584. data/public/javascripts/tiny_mce/plugins/paste/langs/ch_dlg.js +5 -0
  585. data/public/javascripts/tiny_mce/plugins/paste/langs/cs_dlg.js +5 -0
  586. data/public/javascripts/tiny_mce/plugins/paste/langs/cy_dlg.js +5 -0
  587. data/public/javascripts/tiny_mce/plugins/paste/langs/da_dlg.js +5 -0
  588. data/public/javascripts/tiny_mce/plugins/paste/langs/de_dlg.js +5 -0
  589. data/public/javascripts/tiny_mce/plugins/paste/langs/dv_dlg.js +5 -0
  590. data/public/javascripts/tiny_mce/plugins/paste/langs/el_dlg.js +5 -0
  591. data/public/javascripts/tiny_mce/plugins/paste/langs/en_dlg.js +5 -0
  592. data/public/javascripts/tiny_mce/plugins/paste/langs/es_dlg.js +5 -0
  593. data/public/javascripts/tiny_mce/plugins/paste/langs/et_dlg.js +5 -0
  594. data/public/javascripts/tiny_mce/plugins/paste/langs/fa_dlg.js +5 -0
  595. data/public/javascripts/tiny_mce/plugins/paste/langs/fi_dlg.js +5 -0
  596. data/public/javascripts/tiny_mce/plugins/paste/langs/fr_dlg.js +5 -0
  597. data/public/javascripts/tiny_mce/plugins/paste/langs/gl_dlg.js +5 -0
  598. data/public/javascripts/tiny_mce/plugins/paste/langs/gu_dlg.js +5 -0
  599. data/public/javascripts/tiny_mce/plugins/paste/langs/he_dlg.js +5 -0
  600. data/public/javascripts/tiny_mce/plugins/paste/langs/hi_dlg.js +5 -0
  601. data/public/javascripts/tiny_mce/plugins/paste/langs/hr_dlg.js +5 -0
  602. data/public/javascripts/tiny_mce/plugins/paste/langs/hu_dlg.js +5 -0
  603. data/public/javascripts/tiny_mce/plugins/paste/langs/ia_dlg.js +5 -0
  604. data/public/javascripts/tiny_mce/plugins/paste/langs/id_dlg.js +5 -0
  605. data/public/javascripts/tiny_mce/plugins/paste/langs/ii_dlg.js +5 -0
  606. data/public/javascripts/tiny_mce/plugins/paste/langs/is_dlg.js +5 -0
  607. data/public/javascripts/tiny_mce/plugins/paste/langs/it_dlg.js +5 -0
  608. data/public/javascripts/tiny_mce/plugins/paste/langs/ja_dlg.js +5 -0
  609. data/public/javascripts/tiny_mce/plugins/paste/langs/ko_dlg.js +5 -0
  610. data/public/javascripts/tiny_mce/plugins/paste/langs/lt_dlg.js +5 -0
  611. data/public/javascripts/tiny_mce/plugins/paste/langs/lv_dlg.js +5 -0
  612. data/public/javascripts/tiny_mce/plugins/paste/langs/mk_dlg.js +5 -0
  613. data/public/javascripts/tiny_mce/plugins/paste/langs/ml_dlg.js +5 -0
  614. data/public/javascripts/tiny_mce/plugins/paste/langs/mn_dlg.js +5 -0
  615. data/public/javascripts/tiny_mce/plugins/paste/langs/ms_dlg.js +5 -0
  616. data/public/javascripts/tiny_mce/plugins/paste/langs/nb_dlg.js +5 -0
  617. data/public/javascripts/tiny_mce/plugins/paste/langs/nl_dlg.js +5 -0
  618. data/public/javascripts/tiny_mce/plugins/paste/langs/nn_dlg.js +5 -0
  619. data/public/javascripts/tiny_mce/plugins/paste/langs/no_dlg.js +5 -0
  620. data/public/javascripts/tiny_mce/plugins/paste/langs/pl_dlg.js +5 -0
  621. data/public/javascripts/tiny_mce/plugins/paste/langs/pt_dlg.js +5 -0
  622. data/public/javascripts/tiny_mce/plugins/paste/langs/ro_dlg.js +5 -0
  623. data/public/javascripts/tiny_mce/plugins/paste/langs/ru_dlg.js +5 -0
  624. data/public/javascripts/tiny_mce/plugins/paste/langs/sc_dlg.js +5 -0
  625. data/public/javascripts/tiny_mce/plugins/paste/langs/se_dlg.js +5 -0
  626. data/public/javascripts/tiny_mce/plugins/paste/langs/si_dlg.js +5 -0
  627. data/public/javascripts/tiny_mce/plugins/paste/langs/sk_dlg.js +5 -0
  628. data/public/javascripts/tiny_mce/plugins/paste/langs/sl_dlg.js +5 -0
  629. data/public/javascripts/tiny_mce/plugins/paste/langs/sq_dlg.js +5 -0
  630. data/public/javascripts/tiny_mce/plugins/paste/langs/sr_dlg.js +5 -0
  631. data/public/javascripts/tiny_mce/plugins/paste/langs/sv_dlg.js +5 -0
  632. data/public/javascripts/tiny_mce/plugins/paste/langs/ta_dlg.js +5 -0
  633. data/public/javascripts/tiny_mce/plugins/paste/langs/te_dlg.js +5 -0
  634. data/public/javascripts/tiny_mce/plugins/paste/langs/th_dlg.js +5 -0
  635. data/public/javascripts/tiny_mce/plugins/paste/langs/tr_dlg.js +5 -0
  636. data/public/javascripts/tiny_mce/plugins/paste/langs/tt_dlg.js +5 -0
  637. data/public/javascripts/tiny_mce/plugins/paste/langs/tw_dlg.js +5 -0
  638. data/public/javascripts/tiny_mce/plugins/paste/langs/uk_dlg.js +5 -0
  639. data/public/javascripts/tiny_mce/plugins/paste/langs/vi_dlg.js +5 -0
  640. data/public/javascripts/tiny_mce/plugins/paste/langs/zh_dlg.js +5 -0
  641. data/public/javascripts/tiny_mce/plugins/paste/pastetext.htm +33 -0
  642. data/public/javascripts/tiny_mce/plugins/paste/pasteword.htm +27 -0
  643. data/public/javascripts/tiny_mce/plugins/preview/editor_plugin.js +1 -0
  644. data/public/javascripts/tiny_mce/plugins/preview/editor_plugin_src.js +50 -0
  645. data/public/javascripts/tiny_mce/plugins/preview/example.html +28 -0
  646. data/public/javascripts/tiny_mce/plugins/preview/jscripts/embed.js +73 -0
  647. data/public/javascripts/tiny_mce/plugins/preview/preview.html +17 -0
  648. data/public/javascripts/tiny_mce/plugins/print/editor_plugin.js +1 -0
  649. data/public/javascripts/tiny_mce/plugins/print/editor_plugin_src.js +31 -0
  650. data/public/javascripts/tiny_mce/plugins/safari/blank.htm +1 -0
  651. data/public/javascripts/tiny_mce/plugins/safari/editor_plugin.js +1 -0
  652. data/public/javascripts/tiny_mce/plugins/safari/editor_plugin_src.js +438 -0
  653. data/public/javascripts/tiny_mce/plugins/save/editor_plugin.js +1 -0
  654. data/public/javascripts/tiny_mce/plugins/save/editor_plugin_src.js +98 -0
  655. data/public/javascripts/tiny_mce/plugins/searchreplace/css/searchreplace.css +6 -0
  656. data/public/javascripts/tiny_mce/plugins/searchreplace/editor_plugin.js +1 -0
  657. data/public/javascripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js +54 -0
  658. data/public/javascripts/tiny_mce/plugins/searchreplace/js/searchreplace.js +126 -0
  659. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ar_dlg.js +16 -0
  660. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/az_dlg.js +16 -0
  661. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/be_dlg.js +16 -0
  662. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/bg_dlg.js +16 -0
  663. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/bn_dlg.js +16 -0
  664. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/br_dlg.js +16 -0
  665. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/bs_dlg.js +16 -0
  666. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ca_dlg.js +16 -0
  667. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ch_dlg.js +16 -0
  668. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/cs_dlg.js +16 -0
  669. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/cy_dlg.js +16 -0
  670. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/da_dlg.js +16 -0
  671. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/de_dlg.js +16 -0
  672. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/dv_dlg.js +16 -0
  673. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/el_dlg.js +16 -0
  674. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js +16 -0
  675. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/es_dlg.js +16 -0
  676. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/et_dlg.js +16 -0
  677. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/fa_dlg.js +16 -0
  678. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/fi_dlg.js +16 -0
  679. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/fr_dlg.js +16 -0
  680. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/gl_dlg.js +16 -0
  681. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/gu_dlg.js +16 -0
  682. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/he_dlg.js +16 -0
  683. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/hi_dlg.js +16 -0
  684. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/hr_dlg.js +16 -0
  685. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/hu_dlg.js +16 -0
  686. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ia_dlg.js +16 -0
  687. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/id_dlg.js +16 -0
  688. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ii_dlg.js +16 -0
  689. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/is_dlg.js +16 -0
  690. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/it_dlg.js +16 -0
  691. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ja_dlg.js +16 -0
  692. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ko_dlg.js +16 -0
  693. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/lt_dlg.js +16 -0
  694. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/lv_dlg.js +16 -0
  695. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/mk_dlg.js +16 -0
  696. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ml_dlg.js +16 -0
  697. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/mn_dlg.js +16 -0
  698. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ms_dlg.js +16 -0
  699. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/nb_dlg.js +16 -0
  700. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/nl_dlg.js +16 -0
  701. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/nn_dlg.js +16 -0
  702. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/no_dlg.js +16 -0
  703. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/pl_dlg.js +16 -0
  704. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/pt_dlg.js +16 -0
  705. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ro_dlg.js +16 -0
  706. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ru_dlg.js +16 -0
  707. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/sc_dlg.js +16 -0
  708. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/se_dlg.js +16 -0
  709. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/si_dlg.js +16 -0
  710. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/sk_dlg.js +16 -0
  711. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/sl_dlg.js +16 -0
  712. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/sq_dlg.js +16 -0
  713. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/sr_dlg.js +16 -0
  714. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/sv_dlg.js +16 -0
  715. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/ta_dlg.js +16 -0
  716. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/te_dlg.js +16 -0
  717. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/th_dlg.js +16 -0
  718. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/tr_dlg.js +16 -0
  719. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/tt_dlg.js +16 -0
  720. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/tw_dlg.js +16 -0
  721. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/uk_dlg.js +16 -0
  722. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/vi_dlg.js +16 -0
  723. data/public/javascripts/tiny_mce/plugins/searchreplace/langs/zh_dlg.js +16 -0
  724. data/public/javascripts/tiny_mce/plugins/searchreplace/searchreplace.htm +104 -0
  725. data/public/javascripts/tiny_mce/plugins/spellchecker/css/content.css +1 -0
  726. data/public/javascripts/tiny_mce/plugins/spellchecker/editor_plugin.js +1 -0
  727. data/public/javascripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js +338 -0
  728. data/public/javascripts/tiny_mce/plugins/spellchecker/img/wline.gif +0 -0
  729. data/public/javascripts/tiny_mce/plugins/style/css/props.css +13 -0
  730. data/public/javascripts/tiny_mce/plugins/style/editor_plugin.js +1 -0
  731. data/public/javascripts/tiny_mce/plugins/style/editor_plugin_src.js +52 -0
  732. data/public/javascripts/tiny_mce/plugins/style/js/props.js +641 -0
  733. data/public/javascripts/tiny_mce/plugins/style/langs/ar_dlg.js +63 -0
  734. data/public/javascripts/tiny_mce/plugins/style/langs/az_dlg.js +63 -0
  735. data/public/javascripts/tiny_mce/plugins/style/langs/be_dlg.js +63 -0
  736. data/public/javascripts/tiny_mce/plugins/style/langs/bg_dlg.js +63 -0
  737. data/public/javascripts/tiny_mce/plugins/style/langs/bn_dlg.js +63 -0
  738. data/public/javascripts/tiny_mce/plugins/style/langs/br_dlg.js +63 -0
  739. data/public/javascripts/tiny_mce/plugins/style/langs/bs_dlg.js +63 -0
  740. data/public/javascripts/tiny_mce/plugins/style/langs/ca_dlg.js +63 -0
  741. data/public/javascripts/tiny_mce/plugins/style/langs/ch_dlg.js +63 -0
  742. data/public/javascripts/tiny_mce/plugins/style/langs/cs_dlg.js +63 -0
  743. data/public/javascripts/tiny_mce/plugins/style/langs/cy_dlg.js +63 -0
  744. data/public/javascripts/tiny_mce/plugins/style/langs/da_dlg.js +63 -0
  745. data/public/javascripts/tiny_mce/plugins/style/langs/de_dlg.js +63 -0
  746. data/public/javascripts/tiny_mce/plugins/style/langs/dv_dlg.js +63 -0
  747. data/public/javascripts/tiny_mce/plugins/style/langs/el_dlg.js +63 -0
  748. data/public/javascripts/tiny_mce/plugins/style/langs/en_dlg.js +63 -0
  749. data/public/javascripts/tiny_mce/plugins/style/langs/es_dlg.js +63 -0
  750. data/public/javascripts/tiny_mce/plugins/style/langs/et_dlg.js +63 -0
  751. data/public/javascripts/tiny_mce/plugins/style/langs/fa_dlg.js +63 -0
  752. data/public/javascripts/tiny_mce/plugins/style/langs/fi_dlg.js +63 -0
  753. data/public/javascripts/tiny_mce/plugins/style/langs/fr_dlg.js +63 -0
  754. data/public/javascripts/tiny_mce/plugins/style/langs/gl_dlg.js +63 -0
  755. data/public/javascripts/tiny_mce/plugins/style/langs/gu_dlg.js +63 -0
  756. data/public/javascripts/tiny_mce/plugins/style/langs/he_dlg.js +63 -0
  757. data/public/javascripts/tiny_mce/plugins/style/langs/hi_dlg.js +63 -0
  758. data/public/javascripts/tiny_mce/plugins/style/langs/hr_dlg.js +63 -0
  759. data/public/javascripts/tiny_mce/plugins/style/langs/hu_dlg.js +63 -0
  760. data/public/javascripts/tiny_mce/plugins/style/langs/ia_dlg.js +63 -0
  761. data/public/javascripts/tiny_mce/plugins/style/langs/id_dlg.js +63 -0
  762. data/public/javascripts/tiny_mce/plugins/style/langs/ii_dlg.js +63 -0
  763. data/public/javascripts/tiny_mce/plugins/style/langs/is_dlg.js +63 -0
  764. data/public/javascripts/tiny_mce/plugins/style/langs/it_dlg.js +63 -0
  765. data/public/javascripts/tiny_mce/plugins/style/langs/ja_dlg.js +63 -0
  766. data/public/javascripts/tiny_mce/plugins/style/langs/ko_dlg.js +63 -0
  767. data/public/javascripts/tiny_mce/plugins/style/langs/lt_dlg.js +63 -0
  768. data/public/javascripts/tiny_mce/plugins/style/langs/lv_dlg.js +63 -0
  769. data/public/javascripts/tiny_mce/plugins/style/langs/mk_dlg.js +63 -0
  770. data/public/javascripts/tiny_mce/plugins/style/langs/ml_dlg.js +63 -0
  771. data/public/javascripts/tiny_mce/plugins/style/langs/mn_dlg.js +63 -0
  772. data/public/javascripts/tiny_mce/plugins/style/langs/ms_dlg.js +63 -0
  773. data/public/javascripts/tiny_mce/plugins/style/langs/nb_dlg.js +63 -0
  774. data/public/javascripts/tiny_mce/plugins/style/langs/nl_dlg.js +63 -0
  775. data/public/javascripts/tiny_mce/plugins/style/langs/nn_dlg.js +63 -0
  776. data/public/javascripts/tiny_mce/plugins/style/langs/no_dlg.js +63 -0
  777. data/public/javascripts/tiny_mce/plugins/style/langs/pl_dlg.js +63 -0
  778. data/public/javascripts/tiny_mce/plugins/style/langs/pt_dlg.js +63 -0
  779. data/public/javascripts/tiny_mce/plugins/style/langs/ro_dlg.js +63 -0
  780. data/public/javascripts/tiny_mce/plugins/style/langs/ru_dlg.js +63 -0
  781. data/public/javascripts/tiny_mce/plugins/style/langs/sc_dlg.js +63 -0
  782. data/public/javascripts/tiny_mce/plugins/style/langs/se_dlg.js +63 -0
  783. data/public/javascripts/tiny_mce/plugins/style/langs/si_dlg.js +63 -0
  784. data/public/javascripts/tiny_mce/plugins/style/langs/sk_dlg.js +63 -0
  785. data/public/javascripts/tiny_mce/plugins/style/langs/sl_dlg.js +63 -0
  786. data/public/javascripts/tiny_mce/plugins/style/langs/sq_dlg.js +63 -0
  787. data/public/javascripts/tiny_mce/plugins/style/langs/sr_dlg.js +63 -0
  788. data/public/javascripts/tiny_mce/plugins/style/langs/sv_dlg.js +63 -0
  789. data/public/javascripts/tiny_mce/plugins/style/langs/ta_dlg.js +63 -0
  790. data/public/javascripts/tiny_mce/plugins/style/langs/te_dlg.js +63 -0
  791. data/public/javascripts/tiny_mce/plugins/style/langs/th_dlg.js +63 -0
  792. data/public/javascripts/tiny_mce/plugins/style/langs/tr_dlg.js +63 -0
  793. data/public/javascripts/tiny_mce/plugins/style/langs/tt_dlg.js +63 -0
  794. data/public/javascripts/tiny_mce/plugins/style/langs/tw_dlg.js +63 -0
  795. data/public/javascripts/tiny_mce/plugins/style/langs/uk_dlg.js +63 -0
  796. data/public/javascripts/tiny_mce/plugins/style/langs/vi_dlg.js +63 -0
  797. data/public/javascripts/tiny_mce/plugins/style/langs/zh_dlg.js +63 -0
  798. data/public/javascripts/tiny_mce/plugins/style/props.htm +730 -0
  799. data/public/javascripts/tiny_mce/plugins/tabfocus/editor_plugin.js +1 -0
  800. data/public/javascripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js +109 -0
  801. data/public/javascripts/tiny_mce/plugins/table/cell.htm +183 -0
  802. data/public/javascripts/tiny_mce/plugins/table/css/cell.css +17 -0
  803. data/public/javascripts/tiny_mce/plugins/table/css/row.css +25 -0
  804. data/public/javascripts/tiny_mce/plugins/table/css/table.css +13 -0
  805. data/public/javascripts/tiny_mce/plugins/table/editor_plugin.js +1 -0
  806. data/public/javascripts/tiny_mce/plugins/table/editor_plugin_src.js +1160 -0
  807. data/public/javascripts/tiny_mce/plugins/table/js/cell.js +269 -0
  808. data/public/javascripts/tiny_mce/plugins/table/js/merge_cells.js +29 -0
  809. data/public/javascripts/tiny_mce/plugins/table/js/row.js +212 -0
  810. data/public/javascripts/tiny_mce/plugins/table/js/table.js +440 -0
  811. data/public/javascripts/tiny_mce/plugins/table/langs/ar_dlg.js +74 -0
  812. data/public/javascripts/tiny_mce/plugins/table/langs/az_dlg.js +74 -0
  813. data/public/javascripts/tiny_mce/plugins/table/langs/be_dlg.js +74 -0
  814. data/public/javascripts/tiny_mce/plugins/table/langs/bg_dlg.js +74 -0
  815. data/public/javascripts/tiny_mce/plugins/table/langs/bn_dlg.js +74 -0
  816. data/public/javascripts/tiny_mce/plugins/table/langs/br_dlg.js +74 -0
  817. data/public/javascripts/tiny_mce/plugins/table/langs/bs_dlg.js +74 -0
  818. data/public/javascripts/tiny_mce/plugins/table/langs/ca_dlg.js +74 -0
  819. data/public/javascripts/tiny_mce/plugins/table/langs/ch_dlg.js +74 -0
  820. data/public/javascripts/tiny_mce/plugins/table/langs/cs_dlg.js +74 -0
  821. data/public/javascripts/tiny_mce/plugins/table/langs/cy_dlg.js +74 -0
  822. data/public/javascripts/tiny_mce/plugins/table/langs/da_dlg.js +74 -0
  823. data/public/javascripts/tiny_mce/plugins/table/langs/de_dlg.js +74 -0
  824. data/public/javascripts/tiny_mce/plugins/table/langs/dv_dlg.js +74 -0
  825. data/public/javascripts/tiny_mce/plugins/table/langs/el_dlg.js +74 -0
  826. data/public/javascripts/tiny_mce/plugins/table/langs/en_dlg.js +74 -0
  827. data/public/javascripts/tiny_mce/plugins/table/langs/es_dlg.js +74 -0
  828. data/public/javascripts/tiny_mce/plugins/table/langs/et_dlg.js +74 -0
  829. data/public/javascripts/tiny_mce/plugins/table/langs/fa_dlg.js +74 -0
  830. data/public/javascripts/tiny_mce/plugins/table/langs/fi_dlg.js +74 -0
  831. data/public/javascripts/tiny_mce/plugins/table/langs/fr_dlg.js +74 -0
  832. data/public/javascripts/tiny_mce/plugins/table/langs/gl_dlg.js +74 -0
  833. data/public/javascripts/tiny_mce/plugins/table/langs/gu_dlg.js +74 -0
  834. data/public/javascripts/tiny_mce/plugins/table/langs/he_dlg.js +74 -0
  835. data/public/javascripts/tiny_mce/plugins/table/langs/hi_dlg.js +74 -0
  836. data/public/javascripts/tiny_mce/plugins/table/langs/hr_dlg.js +74 -0
  837. data/public/javascripts/tiny_mce/plugins/table/langs/hu_dlg.js +74 -0
  838. data/public/javascripts/tiny_mce/plugins/table/langs/ia_dlg.js +74 -0
  839. data/public/javascripts/tiny_mce/plugins/table/langs/id_dlg.js +74 -0
  840. data/public/javascripts/tiny_mce/plugins/table/langs/ii_dlg.js +74 -0
  841. data/public/javascripts/tiny_mce/plugins/table/langs/is_dlg.js +74 -0
  842. data/public/javascripts/tiny_mce/plugins/table/langs/it_dlg.js +74 -0
  843. data/public/javascripts/tiny_mce/plugins/table/langs/ja_dlg.js +74 -0
  844. data/public/javascripts/tiny_mce/plugins/table/langs/ko_dlg.js +74 -0
  845. data/public/javascripts/tiny_mce/plugins/table/langs/lt_dlg.js +74 -0
  846. data/public/javascripts/tiny_mce/plugins/table/langs/lv_dlg.js +74 -0
  847. data/public/javascripts/tiny_mce/plugins/table/langs/mk_dlg.js +74 -0
  848. data/public/javascripts/tiny_mce/plugins/table/langs/ml_dlg.js +74 -0
  849. data/public/javascripts/tiny_mce/plugins/table/langs/mn_dlg.js +74 -0
  850. data/public/javascripts/tiny_mce/plugins/table/langs/ms_dlg.js +74 -0
  851. data/public/javascripts/tiny_mce/plugins/table/langs/nb_dlg.js +74 -0
  852. data/public/javascripts/tiny_mce/plugins/table/langs/nl_dlg.js +74 -0
  853. data/public/javascripts/tiny_mce/plugins/table/langs/nn_dlg.js +74 -0
  854. data/public/javascripts/tiny_mce/plugins/table/langs/no_dlg.js +74 -0
  855. data/public/javascripts/tiny_mce/plugins/table/langs/pl_dlg.js +74 -0
  856. data/public/javascripts/tiny_mce/plugins/table/langs/pt_dlg.js +74 -0
  857. data/public/javascripts/tiny_mce/plugins/table/langs/ro_dlg.js +74 -0
  858. data/public/javascripts/tiny_mce/plugins/table/langs/ru_dlg.js +74 -0
  859. data/public/javascripts/tiny_mce/plugins/table/langs/sc_dlg.js +74 -0
  860. data/public/javascripts/tiny_mce/plugins/table/langs/se_dlg.js +73 -0
  861. data/public/javascripts/tiny_mce/plugins/table/langs/si_dlg.js +74 -0
  862. data/public/javascripts/tiny_mce/plugins/table/langs/sk_dlg.js +74 -0
  863. data/public/javascripts/tiny_mce/plugins/table/langs/sl_dlg.js +74 -0
  864. data/public/javascripts/tiny_mce/plugins/table/langs/sq_dlg.js +74 -0
  865. data/public/javascripts/tiny_mce/plugins/table/langs/sr_dlg.js +74 -0
  866. data/public/javascripts/tiny_mce/plugins/table/langs/sv_dlg.js +73 -0
  867. data/public/javascripts/tiny_mce/plugins/table/langs/ta_dlg.js +74 -0
  868. data/public/javascripts/tiny_mce/plugins/table/langs/te_dlg.js +74 -0
  869. data/public/javascripts/tiny_mce/plugins/table/langs/th_dlg.js +74 -0
  870. data/public/javascripts/tiny_mce/plugins/table/langs/tr_dlg.js +74 -0
  871. data/public/javascripts/tiny_mce/plugins/table/langs/tt_dlg.js +74 -0
  872. data/public/javascripts/tiny_mce/plugins/table/langs/tw_dlg.js +74 -0
  873. data/public/javascripts/tiny_mce/plugins/table/langs/uk_dlg.js +74 -0
  874. data/public/javascripts/tiny_mce/plugins/table/langs/vi_dlg.js +74 -0
  875. data/public/javascripts/tiny_mce/plugins/table/langs/zh_dlg.js +74 -0
  876. data/public/javascripts/tiny_mce/plugins/table/merge_cells.htm +37 -0
  877. data/public/javascripts/tiny_mce/plugins/table/row.htm +160 -0
  878. data/public/javascripts/tiny_mce/plugins/table/table.htm +192 -0
  879. data/public/javascripts/tiny_mce/plugins/template/blank.htm +12 -0
  880. data/public/javascripts/tiny_mce/plugins/template/css/template.css +23 -0
  881. data/public/javascripts/tiny_mce/plugins/template/editor_plugin.js +1 -0
  882. data/public/javascripts/tiny_mce/plugins/template/editor_plugin_src.js +156 -0
  883. data/public/javascripts/tiny_mce/plugins/template/js/template.js +106 -0
  884. data/public/javascripts/tiny_mce/plugins/template/langs/ar_dlg.js +15 -0
  885. data/public/javascripts/tiny_mce/plugins/template/langs/az_dlg.js +15 -0
  886. data/public/javascripts/tiny_mce/plugins/template/langs/be_dlg.js +15 -0
  887. data/public/javascripts/tiny_mce/plugins/template/langs/bg_dlg.js +15 -0
  888. data/public/javascripts/tiny_mce/plugins/template/langs/bn_dlg.js +15 -0
  889. data/public/javascripts/tiny_mce/plugins/template/langs/br_dlg.js +15 -0
  890. data/public/javascripts/tiny_mce/plugins/template/langs/bs_dlg.js +15 -0
  891. data/public/javascripts/tiny_mce/plugins/template/langs/ca_dlg.js +15 -0
  892. data/public/javascripts/tiny_mce/plugins/template/langs/ch_dlg.js +15 -0
  893. data/public/javascripts/tiny_mce/plugins/template/langs/cs_dlg.js +15 -0
  894. data/public/javascripts/tiny_mce/plugins/template/langs/cy_dlg.js +15 -0
  895. data/public/javascripts/tiny_mce/plugins/template/langs/da_dlg.js +15 -0
  896. data/public/javascripts/tiny_mce/plugins/template/langs/de_dlg.js +15 -0
  897. data/public/javascripts/tiny_mce/plugins/template/langs/dv_dlg.js +15 -0
  898. data/public/javascripts/tiny_mce/plugins/template/langs/el_dlg.js +15 -0
  899. data/public/javascripts/tiny_mce/plugins/template/langs/en_dlg.js +15 -0
  900. data/public/javascripts/tiny_mce/plugins/template/langs/es_dlg.js +15 -0
  901. data/public/javascripts/tiny_mce/plugins/template/langs/et_dlg.js +15 -0
  902. data/public/javascripts/tiny_mce/plugins/template/langs/fa_dlg.js +15 -0
  903. data/public/javascripts/tiny_mce/plugins/template/langs/fi_dlg.js +15 -0
  904. data/public/javascripts/tiny_mce/plugins/template/langs/fr_dlg.js +15 -0
  905. data/public/javascripts/tiny_mce/plugins/template/langs/gl_dlg.js +15 -0
  906. data/public/javascripts/tiny_mce/plugins/template/langs/gu_dlg.js +15 -0
  907. data/public/javascripts/tiny_mce/plugins/template/langs/he_dlg.js +15 -0
  908. data/public/javascripts/tiny_mce/plugins/template/langs/hi_dlg.js +15 -0
  909. data/public/javascripts/tiny_mce/plugins/template/langs/hr_dlg.js +15 -0
  910. data/public/javascripts/tiny_mce/plugins/template/langs/hu_dlg.js +15 -0
  911. data/public/javascripts/tiny_mce/plugins/template/langs/ia_dlg.js +15 -0
  912. data/public/javascripts/tiny_mce/plugins/template/langs/id_dlg.js +15 -0
  913. data/public/javascripts/tiny_mce/plugins/template/langs/ii_dlg.js +15 -0
  914. data/public/javascripts/tiny_mce/plugins/template/langs/is_dlg.js +15 -0
  915. data/public/javascripts/tiny_mce/plugins/template/langs/it_dlg.js +15 -0
  916. data/public/javascripts/tiny_mce/plugins/template/langs/ja_dlg.js +15 -0
  917. data/public/javascripts/tiny_mce/plugins/template/langs/ko_dlg.js +15 -0
  918. data/public/javascripts/tiny_mce/plugins/template/langs/lt_dlg.js +15 -0
  919. data/public/javascripts/tiny_mce/plugins/template/langs/lv_dlg.js +15 -0
  920. data/public/javascripts/tiny_mce/plugins/template/langs/mk_dlg.js +15 -0
  921. data/public/javascripts/tiny_mce/plugins/template/langs/ml_dlg.js +15 -0
  922. data/public/javascripts/tiny_mce/plugins/template/langs/mn_dlg.js +15 -0
  923. data/public/javascripts/tiny_mce/plugins/template/langs/ms_dlg.js +15 -0
  924. data/public/javascripts/tiny_mce/plugins/template/langs/nb_dlg.js +15 -0
  925. data/public/javascripts/tiny_mce/plugins/template/langs/nl_dlg.js +15 -0
  926. data/public/javascripts/tiny_mce/plugins/template/langs/nn_dlg.js +15 -0
  927. data/public/javascripts/tiny_mce/plugins/template/langs/no_dlg.js +15 -0
  928. data/public/javascripts/tiny_mce/plugins/template/langs/pl_dlg.js +15 -0
  929. data/public/javascripts/tiny_mce/plugins/template/langs/pt_dlg.js +15 -0
  930. data/public/javascripts/tiny_mce/plugins/template/langs/ro_dlg.js +15 -0
  931. data/public/javascripts/tiny_mce/plugins/template/langs/ru_dlg.js +15 -0
  932. data/public/javascripts/tiny_mce/plugins/template/langs/sc_dlg.js +15 -0
  933. data/public/javascripts/tiny_mce/plugins/template/langs/se_dlg.js +15 -0
  934. data/public/javascripts/tiny_mce/plugins/template/langs/si_dlg.js +15 -0
  935. data/public/javascripts/tiny_mce/plugins/template/langs/sk_dlg.js +15 -0
  936. data/public/javascripts/tiny_mce/plugins/template/langs/sl_dlg.js +15 -0
  937. data/public/javascripts/tiny_mce/plugins/template/langs/sq_dlg.js +15 -0
  938. data/public/javascripts/tiny_mce/plugins/template/langs/sr_dlg.js +15 -0
  939. data/public/javascripts/tiny_mce/plugins/template/langs/sv_dlg.js +15 -0
  940. data/public/javascripts/tiny_mce/plugins/template/langs/ta_dlg.js +15 -0
  941. data/public/javascripts/tiny_mce/plugins/template/langs/te_dlg.js +15 -0
  942. data/public/javascripts/tiny_mce/plugins/template/langs/th_dlg.js +15 -0
  943. data/public/javascripts/tiny_mce/plugins/template/langs/tr_dlg.js +15 -0
  944. data/public/javascripts/tiny_mce/plugins/template/langs/tt_dlg.js +15 -0
  945. data/public/javascripts/tiny_mce/plugins/template/langs/tw_dlg.js +15 -0
  946. data/public/javascripts/tiny_mce/plugins/template/langs/uk_dlg.js +15 -0
  947. data/public/javascripts/tiny_mce/plugins/template/langs/vi_dlg.js +15 -0
  948. data/public/javascripts/tiny_mce/plugins/template/langs/zh_dlg.js +15 -0
  949. data/public/javascripts/tiny_mce/plugins/template/template.htm +38 -0
  950. data/public/javascripts/tiny_mce/plugins/visualchars/editor_plugin.js +1 -0
  951. data/public/javascripts/tiny_mce/plugins/visualchars/editor_plugin_src.js +73 -0
  952. data/public/javascripts/tiny_mce/plugins/wordcount/editor_plugin.js +1 -0
  953. data/public/javascripts/tiny_mce/plugins/wordcount/editor_plugin_src.js +95 -0
  954. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/abbr.htm +148 -0
  955. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/acronym.htm +148 -0
  956. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/attributes.htm +153 -0
  957. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/cite.htm +148 -0
  958. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css +11 -0
  959. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/css/popup.css +9 -0
  960. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/del.htm +169 -0
  961. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js +1 -0
  962. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js +136 -0
  963. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/ins.htm +169 -0
  964. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js +25 -0
  965. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js +25 -0
  966. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js +123 -0
  967. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/cite.js +25 -0
  968. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/del.js +60 -0
  969. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js +231 -0
  970. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/js/ins.js +59 -0
  971. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ar_dlg.js +32 -0
  972. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/az_dlg.js +32 -0
  973. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/be_dlg.js +32 -0
  974. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/bg_dlg.js +32 -0
  975. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/bn_dlg.js +32 -0
  976. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/br_dlg.js +32 -0
  977. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/bs_dlg.js +32 -0
  978. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ca_dlg.js +32 -0
  979. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ch_dlg.js +32 -0
  980. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/cs_dlg.js +32 -0
  981. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/cy_dlg.js +32 -0
  982. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/da_dlg.js +32 -0
  983. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/de_dlg.js +32 -0
  984. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/dv_dlg.js +32 -0
  985. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/el_dlg.js +32 -0
  986. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js +32 -0
  987. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/es_dlg.js +32 -0
  988. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/et_dlg.js +32 -0
  989. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/fa_dlg.js +32 -0
  990. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/fi_dlg.js +32 -0
  991. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/fr_dlg.js +32 -0
  992. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/gl_dlg.js +32 -0
  993. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/gu_dlg.js +32 -0
  994. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/he_dlg.js +32 -0
  995. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/hi_dlg.js +32 -0
  996. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/hr_dlg.js +32 -0
  997. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/hu_dlg.js +32 -0
  998. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ia_dlg.js +32 -0
  999. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/id_dlg.js +32 -0
  1000. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ii_dlg.js +32 -0
  1001. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/is_dlg.js +32 -0
  1002. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/it_dlg.js +32 -0
  1003. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ja_dlg.js +32 -0
  1004. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ko_dlg.js +32 -0
  1005. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/lt_dlg.js +32 -0
  1006. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/lv_dlg.js +32 -0
  1007. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/mk_dlg.js +32 -0
  1008. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ml_dlg.js +32 -0
  1009. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/mn_dlg.js +32 -0
  1010. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ms_dlg.js +32 -0
  1011. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/nb_dlg.js +32 -0
  1012. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/nl_dlg.js +32 -0
  1013. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/nn_dlg.js +32 -0
  1014. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/no_dlg.js +32 -0
  1015. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/pl_dlg.js +32 -0
  1016. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/pt_dlg.js +32 -0
  1017. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ro_dlg.js +32 -0
  1018. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ru_dlg.js +32 -0
  1019. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/sc_dlg.js +32 -0
  1020. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/se_dlg.js +32 -0
  1021. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/si_dlg.js +32 -0
  1022. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/sk_dlg.js +32 -0
  1023. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/sl_dlg.js +32 -0
  1024. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/sq_dlg.js +32 -0
  1025. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/sr_dlg.js +32 -0
  1026. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/sv_dlg.js +32 -0
  1027. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/ta_dlg.js +32 -0
  1028. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/te_dlg.js +32 -0
  1029. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/th_dlg.js +32 -0
  1030. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/tr_dlg.js +32 -0
  1031. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/tt_dlg.js +32 -0
  1032. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/tw_dlg.js +32 -0
  1033. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/uk_dlg.js +32 -0
  1034. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/vi_dlg.js +32 -0
  1035. data/public/javascripts/tiny_mce/plugins/xhtmlxtras/langs/zh_dlg.js +32 -0
  1036. data/public/javascripts/tiny_mce/themes/advanced/about.htm +56 -0
  1037. data/public/javascripts/tiny_mce/themes/advanced/anchor.htm +31 -0
  1038. data/public/javascripts/tiny_mce/themes/advanced/charmap.htm +53 -0
  1039. data/public/javascripts/tiny_mce/themes/advanced/color_picker.htm +75 -0
  1040. data/public/javascripts/tiny_mce/themes/advanced/editor_template.js +1 -0
  1041. data/public/javascripts/tiny_mce/themes/advanced/editor_template_src.js +1153 -0
  1042. data/public/javascripts/tiny_mce/themes/advanced/image.htm +85 -0
  1043. data/public/javascripts/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
  1044. data/public/javascripts/tiny_mce/themes/advanced/img/icons.gif +0 -0
  1045. data/public/javascripts/tiny_mce/themes/advanced/js/about.js +72 -0
  1046. data/public/javascripts/tiny_mce/themes/advanced/js/anchor.js +37 -0
  1047. data/public/javascripts/tiny_mce/themes/advanced/js/charmap.js +325 -0
  1048. data/public/javascripts/tiny_mce/themes/advanced/js/color_picker.js +253 -0
  1049. data/public/javascripts/tiny_mce/themes/advanced/js/image.js +245 -0
  1050. data/public/javascripts/tiny_mce/themes/advanced/js/link.js +156 -0
  1051. data/public/javascripts/tiny_mce/themes/advanced/js/source_editor.js +62 -0
  1052. data/public/javascripts/tiny_mce/themes/advanced/langs/ar.js +64 -0
  1053. data/public/javascripts/tiny_mce/themes/advanced/langs/ar_dlg.js +51 -0
  1054. data/public/javascripts/tiny_mce/themes/advanced/langs/az.js +63 -0
  1055. data/public/javascripts/tiny_mce/themes/advanced/langs/az_dlg.js +51 -0
  1056. data/public/javascripts/tiny_mce/themes/advanced/langs/be.js +62 -0
  1057. data/public/javascripts/tiny_mce/themes/advanced/langs/be_dlg.js +51 -0
  1058. data/public/javascripts/tiny_mce/themes/advanced/langs/bg.js +62 -0
  1059. data/public/javascripts/tiny_mce/themes/advanced/langs/bg_dlg.js +51 -0
  1060. data/public/javascripts/tiny_mce/themes/advanced/langs/bn.js +62 -0
  1061. data/public/javascripts/tiny_mce/themes/advanced/langs/bn_dlg.js +51 -0
  1062. data/public/javascripts/tiny_mce/themes/advanced/langs/br.js +62 -0
  1063. data/public/javascripts/tiny_mce/themes/advanced/langs/br_dlg.js +51 -0
  1064. data/public/javascripts/tiny_mce/themes/advanced/langs/bs.js +62 -0
  1065. data/public/javascripts/tiny_mce/themes/advanced/langs/bs_dlg.js +51 -0
  1066. data/public/javascripts/tiny_mce/themes/advanced/langs/ca.js +62 -0
  1067. data/public/javascripts/tiny_mce/themes/advanced/langs/ca_dlg.js +51 -0
  1068. data/public/javascripts/tiny_mce/themes/advanced/langs/ch.js +62 -0
  1069. data/public/javascripts/tiny_mce/themes/advanced/langs/ch_dlg.js +51 -0
  1070. data/public/javascripts/tiny_mce/themes/advanced/langs/cs.js +62 -0
  1071. data/public/javascripts/tiny_mce/themes/advanced/langs/cs_dlg.js +51 -0
  1072. data/public/javascripts/tiny_mce/themes/advanced/langs/cy.js +62 -0
  1073. data/public/javascripts/tiny_mce/themes/advanced/langs/cy_dlg.js +51 -0
  1074. data/public/javascripts/tiny_mce/themes/advanced/langs/da.js +62 -0
  1075. data/public/javascripts/tiny_mce/themes/advanced/langs/da_dlg.js +51 -0
  1076. data/public/javascripts/tiny_mce/themes/advanced/langs/de.js +63 -0
  1077. data/public/javascripts/tiny_mce/themes/advanced/langs/de_dlg.js +51 -0
  1078. data/public/javascripts/tiny_mce/themes/advanced/langs/dv.js +62 -0
  1079. data/public/javascripts/tiny_mce/themes/advanced/langs/dv_dlg.js +51 -0
  1080. data/public/javascripts/tiny_mce/themes/advanced/langs/el.js +62 -0
  1081. data/public/javascripts/tiny_mce/themes/advanced/langs/el_dlg.js +51 -0
  1082. data/public/javascripts/tiny_mce/themes/advanced/langs/en.js +62 -0
  1083. data/public/javascripts/tiny_mce/themes/advanced/langs/en_dlg.js +51 -0
  1084. data/public/javascripts/tiny_mce/themes/advanced/langs/es.js +62 -0
  1085. data/public/javascripts/tiny_mce/themes/advanced/langs/es_dlg.js +51 -0
  1086. data/public/javascripts/tiny_mce/themes/advanced/langs/et.js +62 -0
  1087. data/public/javascripts/tiny_mce/themes/advanced/langs/et_dlg.js +51 -0
  1088. data/public/javascripts/tiny_mce/themes/advanced/langs/fa.js +62 -0
  1089. data/public/javascripts/tiny_mce/themes/advanced/langs/fa_dlg.js +51 -0
  1090. data/public/javascripts/tiny_mce/themes/advanced/langs/fi.js +62 -0
  1091. data/public/javascripts/tiny_mce/themes/advanced/langs/fi_dlg.js +51 -0
  1092. data/public/javascripts/tiny_mce/themes/advanced/langs/fr.js +65 -0
  1093. data/public/javascripts/tiny_mce/themes/advanced/langs/fr_dlg.js +51 -0
  1094. data/public/javascripts/tiny_mce/themes/advanced/langs/gl.js +62 -0
  1095. data/public/javascripts/tiny_mce/themes/advanced/langs/gl_dlg.js +51 -0
  1096. data/public/javascripts/tiny_mce/themes/advanced/langs/gu.js +62 -0
  1097. data/public/javascripts/tiny_mce/themes/advanced/langs/gu_dlg.js +51 -0
  1098. data/public/javascripts/tiny_mce/themes/advanced/langs/he.js +62 -0
  1099. data/public/javascripts/tiny_mce/themes/advanced/langs/he_dlg.js +51 -0
  1100. data/public/javascripts/tiny_mce/themes/advanced/langs/hi.js +62 -0
  1101. data/public/javascripts/tiny_mce/themes/advanced/langs/hi_dlg.js +51 -0
  1102. data/public/javascripts/tiny_mce/themes/advanced/langs/hr.js +62 -0
  1103. data/public/javascripts/tiny_mce/themes/advanced/langs/hr_dlg.js +51 -0
  1104. data/public/javascripts/tiny_mce/themes/advanced/langs/hu.js +62 -0
  1105. data/public/javascripts/tiny_mce/themes/advanced/langs/hu_dlg.js +51 -0
  1106. data/public/javascripts/tiny_mce/themes/advanced/langs/ia.js +62 -0
  1107. data/public/javascripts/tiny_mce/themes/advanced/langs/ia_dlg.js +51 -0
  1108. data/public/javascripts/tiny_mce/themes/advanced/langs/id.js +62 -0
  1109. data/public/javascripts/tiny_mce/themes/advanced/langs/id_dlg.js +51 -0
  1110. data/public/javascripts/tiny_mce/themes/advanced/langs/ii.js +62 -0
  1111. data/public/javascripts/tiny_mce/themes/advanced/langs/ii_dlg.js +51 -0
  1112. data/public/javascripts/tiny_mce/themes/advanced/langs/is.js +62 -0
  1113. data/public/javascripts/tiny_mce/themes/advanced/langs/is_dlg.js +51 -0
  1114. data/public/javascripts/tiny_mce/themes/advanced/langs/it.js +62 -0
  1115. data/public/javascripts/tiny_mce/themes/advanced/langs/it_dlg.js +51 -0
  1116. data/public/javascripts/tiny_mce/themes/advanced/langs/ja.js +62 -0
  1117. data/public/javascripts/tiny_mce/themes/advanced/langs/ja_dlg.js +51 -0
  1118. data/public/javascripts/tiny_mce/themes/advanced/langs/ko.js +62 -0
  1119. data/public/javascripts/tiny_mce/themes/advanced/langs/ko_dlg.js +51 -0
  1120. data/public/javascripts/tiny_mce/themes/advanced/langs/lt.js +63 -0
  1121. data/public/javascripts/tiny_mce/themes/advanced/langs/lt_dlg.js +51 -0
  1122. data/public/javascripts/tiny_mce/themes/advanced/langs/lv.js +62 -0
  1123. data/public/javascripts/tiny_mce/themes/advanced/langs/lv_dlg.js +51 -0
  1124. data/public/javascripts/tiny_mce/themes/advanced/langs/mk.js +62 -0
  1125. data/public/javascripts/tiny_mce/themes/advanced/langs/mk_dlg.js +51 -0
  1126. data/public/javascripts/tiny_mce/themes/advanced/langs/ml.js +62 -0
  1127. data/public/javascripts/tiny_mce/themes/advanced/langs/ml_dlg.js +51 -0
  1128. data/public/javascripts/tiny_mce/themes/advanced/langs/mn.js +62 -0
  1129. data/public/javascripts/tiny_mce/themes/advanced/langs/mn_dlg.js +51 -0
  1130. data/public/javascripts/tiny_mce/themes/advanced/langs/ms.js +62 -0
  1131. data/public/javascripts/tiny_mce/themes/advanced/langs/ms_dlg.js +51 -0
  1132. data/public/javascripts/tiny_mce/themes/advanced/langs/nb.js +62 -0
  1133. data/public/javascripts/tiny_mce/themes/advanced/langs/nb_dlg.js +51 -0
  1134. data/public/javascripts/tiny_mce/themes/advanced/langs/nl.js +62 -0
  1135. data/public/javascripts/tiny_mce/themes/advanced/langs/nl_dlg.js +51 -0
  1136. data/public/javascripts/tiny_mce/themes/advanced/langs/nn.js +62 -0
  1137. data/public/javascripts/tiny_mce/themes/advanced/langs/nn_dlg.js +51 -0
  1138. data/public/javascripts/tiny_mce/themes/advanced/langs/no.js +62 -0
  1139. data/public/javascripts/tiny_mce/themes/advanced/langs/no_dlg.js +51 -0
  1140. data/public/javascripts/tiny_mce/themes/advanced/langs/pl.js +62 -0
  1141. data/public/javascripts/tiny_mce/themes/advanced/langs/pl_dlg.js +51 -0
  1142. data/public/javascripts/tiny_mce/themes/advanced/langs/pt.js +62 -0
  1143. data/public/javascripts/tiny_mce/themes/advanced/langs/pt_dlg.js +51 -0
  1144. data/public/javascripts/tiny_mce/themes/advanced/langs/ro.js +62 -0
  1145. data/public/javascripts/tiny_mce/themes/advanced/langs/ro_dlg.js +51 -0
  1146. data/public/javascripts/tiny_mce/themes/advanced/langs/ru.js +62 -0
  1147. data/public/javascripts/tiny_mce/themes/advanced/langs/ru_dlg.js +51 -0
  1148. data/public/javascripts/tiny_mce/themes/advanced/langs/sc.js +64 -0
  1149. data/public/javascripts/tiny_mce/themes/advanced/langs/sc_dlg.js +51 -0
  1150. data/public/javascripts/tiny_mce/themes/advanced/langs/se.js +60 -0
  1151. data/public/javascripts/tiny_mce/themes/advanced/langs/se_dlg.js +51 -0
  1152. data/public/javascripts/tiny_mce/themes/advanced/langs/si.js +61 -0
  1153. data/public/javascripts/tiny_mce/themes/advanced/langs/si_dlg.js +51 -0
  1154. data/public/javascripts/tiny_mce/themes/advanced/langs/sk.js +62 -0
  1155. data/public/javascripts/tiny_mce/themes/advanced/langs/sk_dlg.js +51 -0
  1156. data/public/javascripts/tiny_mce/themes/advanced/langs/sl.js +62 -0
  1157. data/public/javascripts/tiny_mce/themes/advanced/langs/sl_dlg.js +51 -0
  1158. data/public/javascripts/tiny_mce/themes/advanced/langs/sq.js +62 -0
  1159. data/public/javascripts/tiny_mce/themes/advanced/langs/sq_dlg.js +51 -0
  1160. data/public/javascripts/tiny_mce/themes/advanced/langs/sr.js +62 -0
  1161. data/public/javascripts/tiny_mce/themes/advanced/langs/sr_dlg.js +51 -0
  1162. data/public/javascripts/tiny_mce/themes/advanced/langs/sv.js +60 -0
  1163. data/public/javascripts/tiny_mce/themes/advanced/langs/sv_dlg.js +51 -0
  1164. data/public/javascripts/tiny_mce/themes/advanced/langs/ta.js +62 -0
  1165. data/public/javascripts/tiny_mce/themes/advanced/langs/ta_dlg.js +51 -0
  1166. data/public/javascripts/tiny_mce/themes/advanced/langs/te.js +62 -0
  1167. data/public/javascripts/tiny_mce/themes/advanced/langs/te_dlg.js +51 -0
  1168. data/public/javascripts/tiny_mce/themes/advanced/langs/th.js +62 -0
  1169. data/public/javascripts/tiny_mce/themes/advanced/langs/th_dlg.js +51 -0
  1170. data/public/javascripts/tiny_mce/themes/advanced/langs/tr.js +62 -0
  1171. data/public/javascripts/tiny_mce/themes/advanced/langs/tr_dlg.js +51 -0
  1172. data/public/javascripts/tiny_mce/themes/advanced/langs/tt.js +62 -0
  1173. data/public/javascripts/tiny_mce/themes/advanced/langs/tt_dlg.js +51 -0
  1174. data/public/javascripts/tiny_mce/themes/advanced/langs/tw.js +64 -0
  1175. data/public/javascripts/tiny_mce/themes/advanced/langs/tw_dlg.js +51 -0
  1176. data/public/javascripts/tiny_mce/themes/advanced/langs/uk.js +62 -0
  1177. data/public/javascripts/tiny_mce/themes/advanced/langs/uk_dlg.js +51 -0
  1178. data/public/javascripts/tiny_mce/themes/advanced/langs/vi.js +62 -0
  1179. data/public/javascripts/tiny_mce/themes/advanced/langs/vi_dlg.js +51 -0
  1180. data/public/javascripts/tiny_mce/themes/advanced/langs/zh.js +64 -0
  1181. data/public/javascripts/tiny_mce/themes/advanced/langs/zh_dlg.js +51 -0
  1182. data/public/javascripts/tiny_mce/themes/advanced/link.htm +63 -0
  1183. data/public/javascripts/tiny_mce/themes/advanced/skins/default/content.css +32 -0
  1184. data/public/javascripts/tiny_mce/themes/advanced/skins/default/dialog.css +116 -0
  1185. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/buttons.png +0 -0
  1186. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/items.gif +0 -0
  1187. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
  1188. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif +0 -0
  1189. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/progress.gif +0 -0
  1190. data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif +0 -0
  1191. data/public/javascripts/tiny_mce/themes/advanced/skins/default/ui.css +214 -0
  1192. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/content.css +32 -0
  1193. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +115 -0
  1194. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  1195. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  1196. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  1197. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui.css +215 -0
  1198. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +8 -0
  1199. data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +5 -0
  1200. data/public/javascripts/tiny_mce/themes/advanced/source_editor.htm +31 -0
  1201. data/public/javascripts/tiny_mce/themes/simple/editor_template.js +1 -0
  1202. data/public/javascripts/tiny_mce/themes/simple/editor_template_src.js +85 -0
  1203. data/public/javascripts/tiny_mce/themes/simple/img/icons.gif +0 -0
  1204. data/public/javascripts/tiny_mce/themes/simple/langs/ar.js +11 -0
  1205. data/public/javascripts/tiny_mce/themes/simple/langs/az.js +11 -0
  1206. data/public/javascripts/tiny_mce/themes/simple/langs/be.js +11 -0
  1207. data/public/javascripts/tiny_mce/themes/simple/langs/bg.js +11 -0
  1208. data/public/javascripts/tiny_mce/themes/simple/langs/bn.js +11 -0
  1209. data/public/javascripts/tiny_mce/themes/simple/langs/br.js +11 -0
  1210. data/public/javascripts/tiny_mce/themes/simple/langs/bs.js +11 -0
  1211. data/public/javascripts/tiny_mce/themes/simple/langs/ca.js +11 -0
  1212. data/public/javascripts/tiny_mce/themes/simple/langs/ch.js +11 -0
  1213. data/public/javascripts/tiny_mce/themes/simple/langs/cs.js +11 -0
  1214. data/public/javascripts/tiny_mce/themes/simple/langs/cy.js +11 -0
  1215. data/public/javascripts/tiny_mce/themes/simple/langs/da.js +11 -0
  1216. data/public/javascripts/tiny_mce/themes/simple/langs/de.js +11 -0
  1217. data/public/javascripts/tiny_mce/themes/simple/langs/dv.js +11 -0
  1218. data/public/javascripts/tiny_mce/themes/simple/langs/el.js +11 -0
  1219. data/public/javascripts/tiny_mce/themes/simple/langs/en.js +11 -0
  1220. data/public/javascripts/tiny_mce/themes/simple/langs/es.js +11 -0
  1221. data/public/javascripts/tiny_mce/themes/simple/langs/et.js +11 -0
  1222. data/public/javascripts/tiny_mce/themes/simple/langs/fa.js +11 -0
  1223. data/public/javascripts/tiny_mce/themes/simple/langs/fi.js +11 -0
  1224. data/public/javascripts/tiny_mce/themes/simple/langs/fr.js +11 -0
  1225. data/public/javascripts/tiny_mce/themes/simple/langs/gl.js +11 -0
  1226. data/public/javascripts/tiny_mce/themes/simple/langs/gu.js +11 -0
  1227. data/public/javascripts/tiny_mce/themes/simple/langs/he.js +11 -0
  1228. data/public/javascripts/tiny_mce/themes/simple/langs/hi.js +11 -0
  1229. data/public/javascripts/tiny_mce/themes/simple/langs/hr.js +11 -0
  1230. data/public/javascripts/tiny_mce/themes/simple/langs/hu.js +11 -0
  1231. data/public/javascripts/tiny_mce/themes/simple/langs/ia.js +11 -0
  1232. data/public/javascripts/tiny_mce/themes/simple/langs/id.js +11 -0
  1233. data/public/javascripts/tiny_mce/themes/simple/langs/ii.js +11 -0
  1234. data/public/javascripts/tiny_mce/themes/simple/langs/is.js +11 -0
  1235. data/public/javascripts/tiny_mce/themes/simple/langs/it.js +11 -0
  1236. data/public/javascripts/tiny_mce/themes/simple/langs/ja.js +11 -0
  1237. data/public/javascripts/tiny_mce/themes/simple/langs/ko.js +11 -0
  1238. data/public/javascripts/tiny_mce/themes/simple/langs/lt.js +11 -0
  1239. data/public/javascripts/tiny_mce/themes/simple/langs/lv.js +11 -0
  1240. data/public/javascripts/tiny_mce/themes/simple/langs/mk.js +11 -0
  1241. data/public/javascripts/tiny_mce/themes/simple/langs/ml.js +11 -0
  1242. data/public/javascripts/tiny_mce/themes/simple/langs/mn.js +11 -0
  1243. data/public/javascripts/tiny_mce/themes/simple/langs/ms.js +11 -0
  1244. data/public/javascripts/tiny_mce/themes/simple/langs/nb.js +11 -0
  1245. data/public/javascripts/tiny_mce/themes/simple/langs/nl.js +11 -0
  1246. data/public/javascripts/tiny_mce/themes/simple/langs/nn.js +11 -0
  1247. data/public/javascripts/tiny_mce/themes/simple/langs/no.js +11 -0
  1248. data/public/javascripts/tiny_mce/themes/simple/langs/pl.js +11 -0
  1249. data/public/javascripts/tiny_mce/themes/simple/langs/pt.js +11 -0
  1250. data/public/javascripts/tiny_mce/themes/simple/langs/ro.js +11 -0
  1251. data/public/javascripts/tiny_mce/themes/simple/langs/ru.js +11 -0
  1252. data/public/javascripts/tiny_mce/themes/simple/langs/sc.js +11 -0
  1253. data/public/javascripts/tiny_mce/themes/simple/langs/se.js +11 -0
  1254. data/public/javascripts/tiny_mce/themes/simple/langs/si.js +11 -0
  1255. data/public/javascripts/tiny_mce/themes/simple/langs/sk.js +11 -0
  1256. data/public/javascripts/tiny_mce/themes/simple/langs/sl.js +11 -0
  1257. data/public/javascripts/tiny_mce/themes/simple/langs/sq.js +11 -0
  1258. data/public/javascripts/tiny_mce/themes/simple/langs/sr.js +11 -0
  1259. data/public/javascripts/tiny_mce/themes/simple/langs/sv.js +11 -0
  1260. data/public/javascripts/tiny_mce/themes/simple/langs/ta.js +11 -0
  1261. data/public/javascripts/tiny_mce/themes/simple/langs/te.js +11 -0
  1262. data/public/javascripts/tiny_mce/themes/simple/langs/th.js +11 -0
  1263. data/public/javascripts/tiny_mce/themes/simple/langs/tr.js +11 -0
  1264. data/public/javascripts/tiny_mce/themes/simple/langs/tt.js +11 -0
  1265. data/public/javascripts/tiny_mce/themes/simple/langs/tw.js +11 -0
  1266. data/public/javascripts/tiny_mce/themes/simple/langs/uk.js +11 -0
  1267. data/public/javascripts/tiny_mce/themes/simple/langs/vi.js +11 -0
  1268. data/public/javascripts/tiny_mce/themes/simple/langs/zh.js +11 -0
  1269. data/public/javascripts/tiny_mce/themes/simple/skins/default/content.css +25 -0
  1270. data/public/javascripts/tiny_mce/themes/simple/skins/default/ui.css +32 -0
  1271. data/public/javascripts/tiny_mce/themes/simple/skins/o2k7/content.css +17 -0
  1272. data/public/javascripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png +0 -0
  1273. data/public/javascripts/tiny_mce/themes/simple/skins/o2k7/ui.css +35 -0
  1274. data/public/javascripts/tiny_mce/tiny_mce.js +1 -0
  1275. data/public/javascripts/tiny_mce/tiny_mce_popup.js +5 -0
  1276. data/public/javascripts/tiny_mce/tiny_mce_src.js +13135 -0
  1277. data/public/javascripts/tiny_mce/utils/editable_selects.js +69 -0
  1278. data/public/javascripts/tiny_mce/utils/form_utils.js +199 -0
  1279. data/public/javascripts/tiny_mce/utils/mctabs.js +76 -0
  1280. data/public/javascripts/tiny_mce/utils/validate.js +219 -0
  1281. data/tasks/tiny_mce.rake +45 -0
  1282. data/test/functional/full_tiny_mce_controller_test.rb +74 -0
  1283. data/test/functional/slim_tiny_mce_controller_test.rb +45 -0
  1284. data/test/test_helper.rb +19 -0
  1285. data/test/unit/helpers/tiny_mce_helper_test.rb +116 -0
  1286. data/test/unit/options_validator_test.rb +51 -0
  1287. data/test/unit/tiny_mce_test.rb +17 -0
  1288. data/tiny_mce.gemspec +1332 -0
  1289. data/tiny_mce_options.yml +167 -0
  1290. metadata +1350 -0
@@ -0,0 +1,5 @@
1
+ *~
2
+ *.gem
3
+ rdoc
4
+ doc
5
+ pkg
@@ -0,0 +1,51 @@
1
+ = Plugin Changelog
2
+
3
+ == Unreleased
4
+ * Upgraded TinyMCE frin 3.2.4 to 3.2.6 (Sergio Cambra)
5
+
6
+ == Version 3.2.4.1 (2009-06-03)
7
+ * Upgraded TinyMCE to 3.2.3 (see CHANGELOG_TINYMCE) (Maciej Litwiniuk)
8
+ * Upgraded TinyMCE to 3.2.4.1 (see CHANGELOG_TINYMCE) (Sergio Cambra)
9
+ * Cleanup tiny_mce_options.yml (Sergio Cambra)
10
+ * Maintaining backwards compatibility with Rails 2.1 or earlier (which do not have I18n)
11
+
12
+ == Version 3.2.2 (2009-03-12)
13
+ * Upgraded TinyMCE to 3.2.2 (see CHANGELOG_TINYMCE)
14
+ * Fixed errors when uses_tiny_mce was used with no options (Joseph Wilk)
15
+ * Further testing for uses_tiny_mce method without any options
16
+
17
+ == Version 3.2.1.1-1 (2009-02-23)
18
+ * Rewrote test suite
19
+ * Added comments throughout the plugin for future developer
20
+ - to all users: feel free to fork this repo, make changes, and send a pull request
21
+ * Split the plugin into 4 files to make it easier to maintain
22
+ * Added two missing TinyMCE configuration options
23
+ * Better Regex check for the theme_advanced_container configuration option
24
+ * Console notification on next installation steps when installing plugin via script/plugin
25
+
26
+ == Version 3.2.1.1 (2009-02-17)
27
+ * Updated TinyMCE to 3.2.1.1
28
+
29
+ == Version 3.2.1 (2008-11-16)
30
+ * Updated TinyMCE to 3.2.1
31
+ * New raw_tiny_mce_init, which produces raw javascript (without the <script> tags)
32
+ * New ASpell spellchecking functionality (require aspell installed, see SPELLCHECKING_PLUGIN.rdoc for more details)
33
+ * Added ability to pass in additional javascript for complex data needed in places such as the template plugin
34
+ Now in Rails 2.2, thanks for your support: * Help get a patch to a bug, that prevents ampersands in link/image urls, submitted to Rails core
35
+
36
+ == Version 3.2.0.2-1 (2008-10-10)
37
+ * Updated documentation
38
+ * Bug fixes to tiny_mce helper methods (thanks remvee)
39
+ * Fixed tests to work with the latest changes (thanks remvee)
40
+
41
+ == Version 3.2.0.2 (2008-10-04)
42
+ * Updated TinyMCE to 3.2.0.2
43
+ * Formated README file with RDoc syntax for easier reading on Github
44
+ * Added separate TinyMCE changelog (starting from 3.0 alphas through to now)
45
+ * Rake task refactored (now uses cp_r instead of custom method), and new update task
46
+ * Edited TinyMCE helper methods (single "include_tiny_mce_if_needed" method includes Javascript and initializes TinyMCE)
47
+ * Updated TinyMCE configuration options file (tiny_mce_options.yml)
48
+
49
+ == Version 3.1.0.1 (2008-07-02)
50
+ * Updated TinyMCE
51
+ * Replaced old documentation with readme file containing link to online documentation
@@ -0,0 +1,912 @@
1
+ Version 3.2.6 (2009-08-19)
2
+ Added new wordcount plugin, this will display the number of typed words as you write. Contributed by Andrew Ozz.
3
+ Added new getNext and getPrev methods to DOM utils. These will return the first matching sibling.
4
+ Fixed bug where it was impossible to place the caret after a table on Gecko. It will now add a paragraph after tables.
5
+ Fixed bug where inline dialogs would fail if used in a window opened using a showModalDialog. Patch contributed by Derek Britt.
6
+ Fixed bug where IE could sometimes render a unknown runtime error on invalid input HTML.
7
+ Fixed bug where some incorrectly placed tables wouldn't be moved outside the paragraphs on IE.
8
+ Fixed bug where uppercase script/style element wouldn't be handled correctly and converted to valid lowercase.
9
+ Fixed bug where some WebKit versions on Mac OS X would produce issues with hidden select fields.
10
+ Fixed bug where the media plugin would fail on WebKit since the node wasn't properly imported to the right document.
11
+ Fixed bug where absolute URLs for the TinyMCE script using a base href element would cause loading problems in IE 6/7.
12
+ Fixed bug where pasting using the paste plugin wasn't possible on IE with to restrictive security settings.
13
+ Fixed bug where pasting of whitespace was impossible using the new custom paste method.
14
+ Fixed bug where pasting on some WebKit browsers would not work if you pasted specific contents due to a WebKit bug.
15
+ Fixed bug where doctypes with multiple lines would not be parsed correctly by the fullpage plugin. Patch contributed by Colin.
16
+ Fixed bug where the autoresize plugin would break the fullscreen functionality.
17
+ Fixed bug where tables would be chopped up running on IE using invalid contents and pasting paragraphs into a cell.
18
+ Fixed bug where the each method of jQuery build didn't iterate styleSheets. We now use the TinyMCE API one instead.
19
+ Fixed bug where auto switching to paragraphs after headers some times failed in Gecko.
20
+ Fixed so all editor options gets passed to the Serializer class. Patch contributed by Jasper Mattsson.
21
+ Fixed so script/style blocks isn't wrapped in paragraphs as other inline elements.
22
+ Fixed so the XHR requests sends the X-Requested-With HTTP header.
23
+ Fixed so the data url scheme is handled in the tinymce.util.URI class.
24
+ Changed inline documentation to use moxiedoc style comments.
25
+ Removed the compat2x plugin people should have upgraded to the 3.x API by now. 3.0 was released more then a year ago.
26
+ Re-added Gecko specific message for users who doesn't understand the security concept regarding paste.
27
+ Version 3.2.5 (2009-06-29)
28
+ Added new jQuery plugin for the jQuery specific package. This enables you to more easily load and use TinyMCE.
29
+ Added new autoresize plugin contributed by Peter Dekkers. This plugin will auto resize the editor to the size of the contents.
30
+ Fixed so all packages have the same directory structure. Previous releases had a different structure for the production package.
31
+ Fixed so the paste from word dialog forces the contents to be processed as word contents even if it's not.
32
+ Fixed so the jQuery build adapter build works. It's currently only excluding Sizzle.
33
+ Fixed so noscript element contents is retained during the editing process.
34
+ Fixed bug where the getBookmark method would need a "simple" string input when the documented way is a boolean.
35
+ Fixed bug where invalid contents could break the fix_table_elements logic.
36
+ Fixed bug where Sizzle specific attributes would be serialized if the valid_elements was set to *[*].
37
+ Fixed bug where IE would produce an error if you specified a relative content_css and opened the paste dialog.
38
+ Fixed bug where pasting images on IE would produce broken images if they came from an external site.
39
+ Fixed bug where memory was leaked if you add/remove controls dynamically. Some event handlers wasn't removed properly.
40
+ Fixed bug where domain relaxing wasn't treated correctly if you added it after the TinyMCE script element.
41
+ Fixed bug where the activeEditor wasn't set to null if the last editor instance was removed.
42
+ Fixed bug where IE was leaking memory on the onbeforeunload event due to some recently introduced logic. Patch contributed by Options.
43
+ Fixed bug where inserting tables in Safari 4 didn't work due to a new WebKit bug where some element names are reserved.
44
+ Fixed bug where URLs having a :// value in the query string would make it absolute regardless of URL settings.
45
+ Fixed the WebKit specific bug where DOM Ranges would fail if the node wasn't attached to something in a different way.
46
+ Removed the auto_resize option and the resizeToContent method from the tinymce.Editor class. Use the new autoresize plugin instead.
47
+ Version 3.2.4.1 (2009-05-25)
48
+ Fixed bug where Gecko browsers would produce an extra space after for example strong when loaded from sub domains.
49
+ Fixed bug where script elements would be removed if they where placed inside a paragraph element.
50
+ Fixed bug where IE 8 would produce 1 item remaining when loading CSS files dynamically with an empty cache.
51
+ Fixed bug where bound events would be removed from other editor instances if a specific one was removed.
52
+ Fixed various bugs and issues with script and style elements inside the editor.
53
+ Fixed so all script contents gets wrapped in CDATA sections so that they can be parsed using a XML parser.
54
+ Fixed so it's impossible for elements marked as closed to have child nodes rendered in output.
55
+ Version 3.2.4 (2009-05-21)
56
+ Added new paste_remove_styles/paste_remove_styles_if_webkit option to paste plugin concept contributed by Hadrien Gardeur.
57
+ Added new functionality to paste plugin contributed by Scott Eade aka monkeybrain.
58
+ Added new paste_block_drop option to the paste plugin this is disabled by default and will block any drag/drop event.
59
+ Added new bind/unbind methods to DOMUtils these works like Event.add/Event.remove but is easier to access.
60
+ Added new paste_dialog_width/paste_dialog_height options to paste pluign. Enables you to change the dialog sizes.
61
+ Fixed bug on IE 8 where it would sometimes produce a "1 item remaining" status message that would never finish.
62
+ Fixed bug on Safari 4 beta that would produce DOM Range exceptions on the DOMUtils split method since the browser has a bug.
63
+ Fixed bug where the paste plugin could accidentally think that some word sentences was supposed to be list elements.
64
+ Fixed bug where paste plugin would produce one extra empty undo level on some browsers.
65
+ Fixed bug where spans wasn't produced correctly on new line when the keep_styles option was enabled.
66
+ Fixed bug where the caret would be placed at the beginning of contents in IE 8 if you selected colors from the color pickers.
67
+ Fixed so the Event class is a normal class instead of a static one. The tinymce.dom.Event is now a global instance of that class.
68
+ Fixed so internal events for instances gets removed when the DOMUtils instance is removed.
69
+ Fixed so preventDefault and stopPropagation methods can be used on the event object in all browsers.
70
+ Version 3.2.3.1 (2009-05-05)
71
+ Fixed bug where paragraphs containing form elements such as input or textarea would be removed.
72
+ Fixed bug where some IE versions would produce a wrapper function for events attributes.
73
+ Fixed bug where table cell contents could be removed if you pressed return/enter at the end of the cell contents.
74
+ Fixed bug where the paste plugin would remove a extra character if the selection range was collapsed.
75
+ Fixed bug where creating tables with % width wouldn't be handled correctly on WebKit browsers.
76
+ Version 3.2.3 (2009-04-23)
77
+ Added new paste plugin logic. This new version will autodetect Word contents and clean it up.
78
+ Added a optional root element argument to getPos so you can tell it where to stop the calculation.
79
+ Added new DOM ready logic to remove the usage of document.write. We now use basically the same method as jQuery.
80
+ Fixed bug where WebKit browsers would fail when selecting all contents in the area using Ctrl+A.
81
+ Fixed bug where IE would produce paragraphs with empty inline style elements.
82
+ Fixed bug where WebKit browsers would fail when inserting tables with a non pixel width.
83
+ Fixed bug where block elements could get a redundant br element at the end of the element.
84
+ Fixed bug where the tabfocus plugin only worked with a single editor instance on page.
85
+ Fixed bug where IE 8 was loosing caret position if the selection was collapsed and a menu was clicked.
86
+ Fixed bug with application/xhtml+xml mode where menus wasn't working properly.
87
+ Fixed bug where the onstop workaround fix for IE would produce errors in an ASP update panel.
88
+ Fixed bug where the submit function override could produce errors if executed in the wrong scope.
89
+ Fixed bug where the area element wasn't closed by a short ending.
90
+ Fixed various number issues in the style plugins properties dialog. Contributed by datpaulchen.
91
+ Fixed issues with size suffix values in the style plugin dialog.
92
+ Fixed issue where hasDuplicate variable would leak out to the global space due to a bug in the Sizzle engine.
93
+ Fixed issue where the paste event would fire a dialog warning on IE since we extracted the text contents.
94
+ Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported.
95
+ Version 3.2.2.3 (2009-03-26)
96
+ Fixed regression bug with the getPos method, it would return invalid if the view port was to small.
97
+ Version 3.2.2.2 (2009-03-25)
98
+ Fixed so the DOMUtils getPos method can be used cross documents if needed.
99
+ Fixed bug where undo/redo wasn't working correctly in Gecko browsers.
100
+ Version 3.2.2.1 (2009-03-19)
101
+ Added support for tel: URL prefixes. Even though this doesn't match any official RFC.
102
+ Fixed so the select method of the Selection class selects the first best suitable contents.
103
+ Fixed bug where the regexps for www. prefixes for link and advlink dialogs would match wwwX.
104
+ Fixed bug where the preview dialog would fail to open if the content_css wasn't defined. Patch contributed by David Bildstr�m (ChronoZ).
105
+ Fixed bug where editors wasn't converted in application/xhtml+xml mode due to an issue with Sizzle.
106
+ Fixed bug where alignment would fail if multiple lines where selected.
107
+ Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported.
108
+ Version 3.2.2 (2009-03-05)
109
+ Added new CSS selector engine. Sizzle the same one that jQuery and other libraries are using.
110
+ Added new is and getParents methods to the DOMUtils class. These use the new Sizzle engine to select elements.
111
+ Added new removeformat_selector option, enables you to specify a CSS selector pattern of elements to remove when using removeformat.
112
+ Fixed so the getParent method can take CSS expressions when selecting it's parents.
113
+ Added new ant based build process, includes a new javabased preprocessor and a yuicompressor ant task.
114
+ Moved the tab_focus logic into a plugin called tabfocus, so the old tab_focus option has been removed from the core.
115
+ Replaced the TinyMCE custom unit testing framework with Qunit and rewrote all tests to match the new logic.
116
+ Moved the examples/testcases to a root directory called tests since it now includes slickspeed.
117
+ Fixed bug where nbsp wasn't replaced correctly in ForceBlocks.js. Patch contributed by thorn.
118
+ Fixed bug where an dom exception would be thrown in Gecko when the theme_advanced_path path was set to false under xml application mode.
119
+ Fixed bug where it was impossible to get out of a link at the end of a block element in Gecko.
120
+ Fixed bug where the latest WebKit nightly would fail when changing font size and font family.
121
+ Fixed bug where the latest WebKit nightly would fail when opening dialogs due to changes to the arguments object.
122
+ Fixed bug where paragraphs wasn't added to elements positioned absolute using classes.
123
+ Fixed bug where font size values with dot's like 1.4em would produce a class instead of the style value.
124
+ Fixed bug where IE 8 would return an incorrect position for elements.
125
+ Fixed bug where IE 8 would render colorpicker/filepicker icons incorrectly.
126
+ Fixed bug where trailing slashes for directories in URLs would be removed.
127
+ Fixed bug where autostart and other boolean values in the media dialog wouldn't be stored/parsed correctly.
128
+ Fixed bug where the repaint call for the media plugin wouldn't be executed due to a typo in the source.
129
+ Fixed bug where id attribute of object elements wasn't kept intact by the media plugin.
130
+ Fixed bug where preview of embeded elements when the media_use_script option was used would fail.
131
+ Fixed bug where inlinepopups could be rendered at an incorrect location on IE 6 while dragging.
132
+ Fixed bug where the blocker shim could be placed at an incorrect location on IE 6.
133
+ Fixed bug where the multiple and size attributes of select elements would produce incorrect values while running in IE.
134
+ Fixed bug where IE would loose the caret position is you selected a color from the color drop down.
135
+ Fixed bug where remove format wouldn't work on IE since it couldn't remove span elements that had style information.
136
+ Fixed bug where Opera was removing links when removing formatting from selected contents.
137
+ Fixed bug where paragraphs could be produced inside non positional elements styled with the CSS position value of static.
138
+ Fixed bug where removeformat wouldn't work if you selected part of a span in IE.
139
+ Fixed bug where media plugin didn't retain the style attribute on embed/object elements.
140
+ Fixed bug where auto focus on empty editor instances could produce strange results if you inserted an image into it.
141
+ Fixed bug where &nbsp; characters would be removed in FF when inserted with the mceInsertContent or selection.setContent methods.
142
+ Fixed bug where warning message of missing paste support wasn't displayed on WebKit browsers.
143
+ Fixed bug where anchor links could include other links. The selected range is now unlinked before adding news links to it.
144
+ Fixed memory leak when TinyMCE was used with prototype. Patch contributed by James Ots.
145
+ Fixed so the non documented fullpage_hide_in_source_view option for the fullpage plugin works again in the 3.x branch.
146
+ Fixed so tables doesn't get inserted into paragraphs by default since it's not W3C valid. Can be disabled by using the fix_table_elements option.
147
+ Fixed so the source view dialog sets a source_view state to the event object. Enables plugins to intercept the source view mode.
148
+ Fixed various validation issues with the html dialogs and pages.
149
+ Removed ask mode option since there is way better ways of doing this now. Use the add/remove control methods instead.
150
+ Removed logic for compatibility with Safari 2.x, this browser is no longer supported since no one is using it.
151
+ Removed the auto domain relaxing feature. If loading scripts cross sub domains it's better to specify the document.domain by hand.
152
+ Version 3.2.1.1 (2008-11-27)
153
+ Added new theme_advanced_default_background_color/theme_advanced_default_foreground_color options. Patch contributed by David Bildstr�m (ChronoZ).
154
+ Fixed font style formatting compatibility issue with Adobe Air.
155
+ Fixed so legacy font elements get converted into spans even if cleanup_on_startup isn't enabled.
156
+ Fixed bug where pre elements could be incorrectly modified by an IE bug workaround. Patch contributed by hu vime.
157
+ Fixed bug where input elements inside inlinepopups wasn't editable in Firefox 2.
158
+ Fixed bug where the xhtmlxtras plugin wasn't replacing attribute values correctly.
159
+ Fixed bug where menu buttons in skin variants would look strange due to IE 8 fixes.
160
+ Fixed bug where WebKit browsers would on backspace take you back to the previous page if the editor was empty.
161
+ Fixed bug where DOMUtils decode method wouldn't handle strings larger than 4096kb due to node chunking.
162
+ Fixed bug where meta key wasn't handled as ctrl key on Mac OS X for custom keyboard short cuts.
163
+ Fixed bug where init event would get fired twice on WebKit on Mac OS X.
164
+ Version 3.2.1 (2008-11-04)
165
+ Added support for custom icon image for drop menus. Use icon_src to set a custom image directly.
166
+ Added new media_strict option to media plugin. Enables you to control if the flash embed is strict or not. Enabled by default.
167
+ Fixed so the editors script files gets dynamically loaded without using XHR or eval.
168
+ Fixed so the media plugin outputs valid XHTML object elements for Flash movies. Can be disabled with the media_strict option.
169
+ Fixed so dynamic loading doesn't require eval calls on non IE browsers for better Air support.
170
+ Fixed bug where the editor wasn't treated as empty if the remaining paragraph had attributes.
171
+ Fixed bug where id's of elements was removed ones they got wrapped in paragraphs. Patch contributed by ChronoZ.
172
+ Fixed bug where WebKit browsers where placing list elements inside paragraph elements.
173
+ Fixed bug where inserting images or links would produce absolute urls on WebKit browsers.
174
+ Fixed bug where values for checked, readonly, disabled and selected attributes was incorrect on IE.
175
+ Fixed bug where positive values for checked, readonly, disabled and selected attributes wasn't forced to valid values.
176
+ Fixed bug where selecting the first option in a native select box would produce an undefined error.
177
+ Fixed bug where tabindex 32768 could be outputted on IE if element attributes where cloned.
178
+ Fixed bug where the media dialogs preview window would display incorrect contents due to duplicate clsid prefixes.
179
+ Fixed bug where non pixel or percent heights for textarea elements would produce errors on IE.
180
+ Fixed bug where cdata sections in script elements wasn't handled correctly.
181
+ Fixed bug where nowrap of table cells would produce a 65535 value output.
182
+ Fixed bug where media plugin would produce an error if you selected the first item in the items list.
183
+ Fixed bug where media plugin would modify links with the item _value in them.
184
+ Fixed so table width/height is better forced if inline_styles is enabled. Patch contributed by daKmoR.
185
+ Fixed css for IE 8 such as opacity and other rendering quirks.
186
+ Version 3.2.0.2 (2008-10-02)
187
+ Fixed bug where the SelectBox and NativeSelectBox wasn't updated correctly if undefined was passed to them.
188
+ Fixed bug where the style dropdown wasn't correctly changed back to it's original state when element had no class.
189
+ Fixed bug where multiple pending font styles wasn't handled correctly.
190
+ Fixed so you can disable all auto css loading for dialogs by setting the popups_css option to false.
191
+ Version 3.2.0.1 (2008-09-17)
192
+ Fixed bug where font sizes and faces wouldn't be changed correctly when there was a parent with a different style.
193
+ Fixed bug where adding fonts to the same selection would produce redundant spans.
194
+ Version 3.2 (2008-09-11)
195
+ Added new text style support, it will now use span elements internally instead of font elements.
196
+ Added new improved support for the theme_advanced_font_sizes option, check the Wiki for details.
197
+ Added new keep_style setting that maintains the text style on return/enter on non IE browsers, enabled by default.
198
+ Added new onBeforeSetContent/onBeforeGetContent/onSetContent/onGetContent events to the Selection class.
199
+ Added new selectByIndex method to ListBox class. This enables you to select list items by an index instead of a value.
200
+ Added new possibility to the select method of the ListBox class. This can now have a selector function as it's value argument.
201
+ Added new possibility to skip the loading of popups css by setting the feature popup_css to the value false.
202
+ Added new possibility to skip translation of popups by setting the translate_i18n feature to false.
203
+ Added new element_format option enables you to produce HTML element endings instead of XHTML. But we are still in the XHTML is better camp.
204
+ Added missing allowfullscreen and quality options for flash elements, this will now get correctly stored.
205
+ Fixed bug where table cell dialog didn't close properly unless the accessibility_warnings option was set to false.
206
+ Fixed bug where the modal dialog blocker element for inlinepopups wasn't placed at a correct location if the page had scroll.
207
+ Fixed bug where non inline dialogs didn't close correctly if the inlinepopups plugin was used.
208
+ Fixed bug where non inline dialogs could make the modal dialog blocker to work incorrectly.
209
+ Fixed bug where style select wasn't populated correctly if you pressed the arrow. Patch by Hari Karam Singh.
210
+ Fixed bug where toggling the fullscreen mode didn't restore scrollbars on IE when the editor was inside a frame. Patch by Jacob Barrett.
211
+ Fixed bug where inserting flash contents using the template plugin didn't work correctly.
212
+ Fixed bug where inserting flash contents using the selection.setContent or mceInsertContent command didn't work correctly.
213
+ Fixed bug where IE would produce an exception if a comment started with -.
214
+ Fixed bug where the blockquote button would wrap lists incorrectly on non IE browsers.
215
+ Fixed bug where Opera would display BR elements in the element path.
216
+ Fixed bug where xhtmlxtras didn't insert elements correctly on IE.
217
+ Fixed bug where the buttons wasn't activated correctly in the xhtmlxtras plugin.
218
+ Fixed bug where adding an object as the style attribute for the dom setAttribs method wouldn't work.
219
+ Fixed bug where the background color would bleed out to parent container element in Gecko.
220
+ Fixed bug where the insert column actions for tables would fail if you did it in a thead or tfoot. Patch contributed by T Andersen (tan73).
221
+ Fixed bug where event blocker element wasn't positioned correctly for the inlinepopups plugin.
222
+ Fixed bug where pasting from Office 2007 would produce an odd comment in the contents.
223
+ Fixed bug where the paste as plain text could remove an extra character. Patch contributed by Speednet.
224
+ Fixed bug where some characters where missing for the paste_replace_list option. Patch contributed by Speednet.
225
+ Fixed bug where removing non existing editor instances by the mceRemoveControl command would produce an error.
226
+ Fixed bug where meta elements with the name description would produce errors in IE.
227
+ Fixed bug where color and background colors wouldn't be updated properly.
228
+ Fixed bug where the createMenuButton of tinymce.ControlManager didn't implement the last class argument.
229
+ Fixed bug where the editor_css option was relative from the TinyMCE installation directory not the current page.
230
+ Fixed bug where elements wouldn't be padded if the element contained bogus br elements. For example TD elements.
231
+ Fixed bug where parsing of <body > in fullpage plugin would produce an error.
232
+ Fixed bug where relative urls with just ./ would become an empty string.
233
+ Fixed bug where outdent button would be disabled if inline_styles where set to false.
234
+ Fixed bug where replace with an empty search string would produce an error on IE.
235
+ Fixed bug where restoring the overflow state of the body in fullscreen plugin running on IE would produce vertical scrollbars.
236
+ Fixed bug where pressing return/enter in list items would sometimes move the caret the to top of the content area in FF.
237
+ Fixed bug where the style listbox wouldn't be updated correctly if you used the use_native_selects option.
238
+ Fixed bug where WebKit browsers would produce a div element when ending list elements using return.
239
+ Fixed so translation of popup contents only occurs if it's needed.
240
+ Optimized the URI object in regards or converting absolute URIs to relative URIs.
241
+ Version 3.1.1 (2008-08-18)
242
+ Added new getSize method to DOMUtils it will return the dimensions only of an element.
243
+ Added new alert/confirm methods to the tinyMCEPopup class to prevent focus problems and also to shorten method calls.
244
+ Added new plugin_preview_inline option to preview plugin to enable/disable native/inline dialogs.
245
+ Added new readonly option. If this is set the editor will only display the contents for the user.
246
+ Added missing tabindex and accesskey to input elements in the default valid_elements setup.
247
+ Updated firebug lite to 1.2, to enable it use the tiny_mce_dev.js?debug=1 on the development package.
248
+ Fixed so the preview dialog in the preview plugin uses inline dialogs/popups.
249
+ Fixed so CDATA sections remains intact through the serialization process of the DOM tree.
250
+ Fixed various issues with the getAttrib command. It will now return more correct values.
251
+ Fixed bug where the embed element wasn't properly parsed in the media plugin it now supports 3 formats.
252
+ Fixed bug where the noshade attribute was serialized incorrectly on IE.
253
+ Fixed bug where editing an existing link element didn't force it relative.
254
+ Fixed bug where image link creation fails on Safari if the image is aligned.
255
+ Fixed bug where it was possible to scroll the fullscreen mode in Opera 9.50.
256
+ Fixed bug where removal of center image alignment would fail. Patch contributed by Andrew Ozz.
257
+ Fixed bug where inlinedialogs didn't work properly if the doctype was incorrect in IE.
258
+ Fixed bug where cross domain loading didn't work correctly in Opera 9.50.
259
+ Fixed bug where breaking huge text blocks with return/enter key would scroll to end of block.
260
+ Fixed bug where replace button kept inserting the replacement text even if there is no more matches.
261
+ Fixed bug with fullpage plugin where value wasn't set correctly. Patch contributed by Pascal Chantelois.
262
+ Fixed bug where the dom utils setAttrib method call could produce an exception if the input was null/false.
263
+ Fixed bug where pressing backspace would sometimes remove one extra character in Gecko browsers.
264
+ Fixed bug where the native confirm/alert boxes would move focus to parent document if fired in dialogs.
265
+ Fixed bug where Opera 9.50 was telling you that the selection is collapsed even when it isn't.
266
+ Fixed bug where mceInsertContent would break up existing elements in Opera and Gecko.
267
+ Fixed bug where TinyMCE fails to detect some keyboard combos on Mac, contributed by MattyRob.
268
+ Fixed bug where replace all didn't move the caret to beginning of text before searching.
269
+ Fixed bug where the oninit callback wasn't executed correctly when the strict_loading_mode option was used, thanks goes to Nicholas Oxhoej.
270
+ Fixed bug where a access denied exception was thrown if some other script specified document.domain before loading TinyMCE.
271
+ Fixed so setting language to empty string will skip language loading if translations are made by some backend.
272
+ Fixed so dialog_type is automatically modal if you use the inlinepopups plugin use dialog_type : "window" to re-enable the old behavior.
273
+ Version 3.1.0.1 (2008-06-18)
274
+ Fixed bug where the Opera line break fix didn't work correctly on Mac OS X and Unix.
275
+ Fixed bug where IE was producing the default value the maxlength attribute of input elements.
276
+ Version 3.1.0 (2008-06-17)
277
+ Fixed bug where the paste as text didn't work correctly it encoded produced paragraphs and br elements.
278
+ Fixed bug where embed element in XHTML style didn't work correctly in the media plugin.
279
+ Fixed bug where style elements was forced empty in IE. The will now be wrapped in a comment just like script elements.
280
+ Fixed bug where some script elements wrapped in CDATA could fail to be serialized correctly.
281
+ Fixed bug where FF 3 produced -moz- internal styles in some style attributes.
282
+ Fixed bug where query strings and external URLs didn't work correctly in style attributes.
283
+ Fixed bug where shape attribute of area elements got serialized as rect regardless of it's initial value in IE 6.
284
+ Fixed bug where selection of elements inside layers would fail in IE since focus was moved to the document body.
285
+ Fixed bug where pressing enter/return in an editable select box would produce an __mce_add_custom__ class value.
286
+ Fixed bug where changing font size of text placed inside a colored text chunk would remove the parent node.
287
+ Fixed bug where Opera 9.5 final produced a strange line break behavior due to a workaround for previous Opera versions.
288
+ Fixed bug where text/background color would produce a strange focus problem when you tried to click on the body in IE.
289
+ Fixed issue where selecting the title of an listbox equals the old 2.x behavior of changing the value to an empty string.
290
+ Fixed issue where it was common for the media plugin to break if the _value attribute wasn't added for the param element.
291
+ Fixed issue where the wrong parent editor instance might be updated if you use fullscreen mode in an incorrect way.
292
+ Fixed issue where Safari was producing a warning about the base element not being closed correctly.
293
+ Removed redundant form element name matching from regexp in the DOMUtils class.
294
+ Version 3.0.9 (2008-06-02)
295
+ Added new contextmenu_offset_x/contextmenu_offset_y options for the contextmenu plugin.
296
+ Added cite attribute to the default rule for the blockquote element.
297
+ Added support for using arrow keys for selection of items in listboxes.
298
+ Added support for using arrow keys for selection of items in dropmenus.
299
+ Fixed bug where blockformat change on elements with BR inside them didn't change correctly on Firefox.
300
+ Fixed bug where removing table rows inside thead or tfoot would remove the whole table if it was the last one.
301
+ Fixed bug where XHR synchronous mode didn't execute the callback handlers synchronously.
302
+ Fixed bug where setting border to 0 didn't add border: 0 to the style attribute when using the advimage dialog.
303
+ Fixed bug where the selection of images and table cells didn't work correctly when the editor is placed in a frame and running on IE.
304
+ Fixed bug where the store/restore of a selection didn't work correctly in non IE browsers.
305
+ Fixed bug where only the first element would be invalid for the invalid_elements option.
306
+ Fixed bug where paste as plain text didn't encode the characters correctly when they where inserted.
307
+ Fixed bug where HTML source window couldn't be maximized on Gecko when the maximizable feature was enabled.
308
+ Fixed bug where color selection using the color picker could produce exception in IE.
309
+ Fixed bug where font size changes could produce produce extra redundant elements.
310
+ Fixed bug where IE could produce unknown runtime error if you replaced a image with another image from a separate frame.
311
+ Fixed bug where the domLoaded state for the Event class wasn't set correctly if the editor was loaded dynamically using the gzip compressor.
312
+ Fixed bug where handling of the base element for a page would produce incorrect urls. Based on a patch contributed by John LeSueur.
313
+ Fixed bug where table constraint alert boxes was presented with an empty value and wasn't the skinned inline ones.
314
+ Fixed bug where the onChange event wasn't fired when the form was submitted. It's now also triggered when the save method is called.
315
+ Fixed bug where encoding set to xml didn't work as expected. It now encodes the contents into XML entities.
316
+ Fixed bug where numrows didn't work correctly for the merge cells dialog of the table plugin.
317
+ Fixed bug where the onGetContent event was fired even when the no_events flag was set.
318
+ Fixed bug where the preview panels for the advimage and the media plugin could overflow on Safari and FF 3.
319
+ Fixed bug where the editing and removal of abbr elements using the xhtmlxtras plugin working correctly on IE.
320
+ Fixed bug where save button in the save plugin didn't work correctly on IE.
321
+ Fixed bug where dragging layers didn't work as expected since it would snap back to it's original location if you saved.
322
+ Fixed bug where the description of the template plugin dialog wasn't updated correctly.
323
+ Fixed bug where the values for frame and rules in the table dialogs where swapped.
324
+ Fixed bug where the elements like ins, del, cite, acronym and abbr didn't have the default editing style as the old 2.x branch.
325
+ Fixed bug where ask mode would lock the focused textarea if you pressed cancel in the confirm dialog on FF 3.
326
+ Fixed bug where ask mode would produce contents for empty textareas if you reloaded the page.
327
+ Fixed so the onGetContent event gets the full pass through object just like the other events.
328
+ Fixed so attributes for block elements remains the same when you change format of a element.
329
+ Version 3.0.8 (2008-04-30)
330
+ Fixed bug where IE would produce an error if textareas without names where converted.
331
+ Fixed bug where editor wasn't forced empty when there was only a single br or empty paragraph left.
332
+ Fixed bug where IE would produce an warning message if object elements where produced in the media plugins preview running on https.
333
+ Fixed bug where new addVer function didn't handle hash items correctly. Patch contributed by Mirek Burkon.
334
+ Fixed bug where font_size_style_values option wasn't applied correctly to fonts inside the editor.
335
+ Fixed bug where image selection could be lost if a image was edited using context menu on IE.
336
+ Fixed bug where style values wasn't updated properly due to an invalid regexp.
337
+ Fixed bug where IE 6 where displaying warning message about insecure items when inserting an image while using https. Patch contributed by Norifumi Sunaoka.
338
+ Fixed bug where IE was producing an auto save message if you selected a color from the color split button.
339
+ Fixed bug where backspace sometimes would move the caret to the end of the previous block in Gecko.
340
+ Fixed bug where the rowlayout manager didn't work as described in the documentation.
341
+ Fixed bug where the default options for the fullpage plugin wasn't applied correctly.
342
+ Fixed bug where selection would jump one character if you applied a styles to a words in non IE browsers.
343
+ Fixed bug where undo levels wasn't added correctly if you went back in undo history and added a new event.
344
+ Fixed bug where font size dropdown didn't mark the selected size in IE.
345
+ Fixed bug where the size of the editor was determined using clientWidth instead of offsetWidth.
346
+ Fixed so the onchange event doesn't fire on the initial undo level, it will also fire when the editor is blurred.
347
+ Fixed so the advhr plugin produces XHTML valid output instead of non standard attributes.
348
+ Fixed so blockquote gets converted into [quote] in when the bbcode plugin is enabled.
349
+ Fixed so theme_advanced_font_sizes can be named for example Font 1=1, Font 2=2 etc.
350
+ Fixed so editor_selector/editor_deselector can be regexps. By default only strings are allowed not part regexps like before.
351
+ Fixed so that the version suffix is optional. It still requires the build process so you need to export it manually.
352
+ Fixed so it's possible to tab to table cells in non Gecko browsers and also produce new rows if you tab at the end of a table. Contributed by Josh Peek.
353
+ Version 3.0.7 (2008-04-14)
354
+ Added new version suffix to all internal GET requests to make sure that the users cache gets cleared correctly.
355
+ Fixed issue with isDirty returning true event if it wasn't dirty on IE due to changes in tables during initialization.
356
+ Fixed memory leak in IE where if a page was unloaded before all images on the page was loaded it would leak.
357
+ Fixed bug in IE where underline and strikethrough could produce an exception error message.
358
+ Fixed bug where inserting paragraphs in totally empty table cells would produce odd effects.
359
+ Fixed bug where layer style data wasn't updated correctly due to some performance enhancements with the DOM serializer.
360
+ Fixed bug where it would convert the wrong element if there was two elements with the same name and id on the page.
361
+ Fixed bug where it was possible to add style information to the body element using the style plugin.
362
+ Fixed bug where Gecko would add an extra undo level some times due to the blur event.
363
+ Fixed bug where the underline icon would get active if the caret was inside a link element.
364
+ Fixed bug where merging th cells not working correctly. Patch contributed by Andr� R.
365
+ Fixed bug where forecolorpicker and backcolorpicker buttons where rendered incorrectly when the o2k7 skin was used.
366
+ Fixed bug where comment couldn't contain -- since it's invalid markup. It will now at least not break on those invalid comments.
367
+ Fixed bug where apos wasn't handled correctly in IE. It will now convert apos to &#39; on IE since that browser doesn't support that entity.
368
+ Fixed bug where entities wasn't encoded correctly inside pre elements since they where protected from whitespace removal.
369
+ Fixed bug where color split buttons where rendered incorrectly on IE6 when using the non default theme.
370
+ Fixed so caret is placed after links ones they are created, to improve usability of the editor.
371
+ Fixed so you can select tables by clicking on it's borders in non IE browsers to normalize the behavior.
372
+ Fixed so the menus can be toggled by clicking once more on the icon in listboxes, menubuttons and splitbuttons based on code contributed by Josh Peek.
373
+ Fixed so buttons can be labeled, currently only works with the default skin, so it's kind of experimental. Patch contributed by Daniel Insley.
374
+ Fixed so forecolorpicker and backcolorpicker remembers the last selected color. Patch contributed by Shane Tomlinson.
375
+ Fixed so that you can only execute the mceAddEditor command once for the same instance name.
376
+ Fixed so command functions added with addCommand can pass though the call to default handles if it returns true.
377
+ Version 3.0.6.2 (2008-04-07)
378
+ Fixed bug where empty tables couldn't be edited correctly on non IE browsers if they where loaded into the editor.
379
+ Fixed bug where it was impossible to resize layers correctly in IE since it thought it was an image.
380
+ Fixed bug where an editor instance was stealing focus in IE resulting in a scroll to the editor on page reloads.
381
+ Fixed bug where Safari was crashing on Mac OS X if you closed dialogs using the Esc key.
382
+ Version 3.0.6.1 (2008-04-04)
383
+ Added support for the missing mceAddFrameControl command. The input for this command has changed so consult the Wiki.
384
+ Fixed bug where sub menus for the drop menus would leave an empty element behind.
385
+ Fixed memory leak in IE if the editor was placed in a frame or iframe.
386
+ Version 3.0.6 (2008-04-03)
387
+ Added elements to the default value of valid_elements option. It now contains all XHTML strict elements and a few transitional.
388
+ Added more accessibility fixes, it's now possible to navigate and close list boxes and split button menus with the keyboard.
389
+ Added missing getInfo method to the contextmenu and safari plugin, this caused problems for the Drupal module.
390
+ Added new inlinepopups_zindex option to the inlinepopups plugin so that you can configure the default start z-index.
391
+ Added new setControlType method to the tinymce.ControlManager class. This method enables you to override the default classes.
392
+ Added ability to specific an optional control class to use instead of the default one for the ControlManager methods. Based on concept by Josh Peek.
393
+ Fixed bug where attribute rules for the DOM Serializer couldn't contain - or _ characters in their names.
394
+ Fixed bug where inlinepopups event blocker and modal dialog blocker elements produced vertical scrollbars.
395
+ Fixed bug where there was a rendering issue with quirks mode in Safari moving the resize handle to an incorrect position.
396
+ Fixed bug with forecolor/backcolor controls on IE. Sometimes elements positioned relative will generate display errors.
397
+ Fixed bug where a p2 was leaking out in the global name space when you selected a color from the forecolor/backcolor controls.
398
+ Fixed bug where empty paragraphs didn't work as expected in browsers other than IE.
399
+ Fixed bug where the load method of the tinymce.dom.ScriptLoader didn't check if the file was already loaded.
400
+ Fixed bug where the load method for the PluginManager and ThemeManager didn't check if a plugin/theme by a specific name was all ready loaded.
401
+ Fixed bug where the theme_advanced_link_targets option didn't work correctly with the advanced themes link dialog. Patch contributed by Arnold B.
402
+ Fixed bug where the style command would merge classes into empty span elements.
403
+ Fixed bug where the style command would remove empty span elements outside the current selection.
404
+ Fixed bug where the fix for the Safari backspace bug removed all editor contents if it was filled with empty paragraphs.
405
+ Fixed bug where alert and confirm boxes opened by the inlinepopups plugin would produce an exception if domain relaxing was used.
406
+ Fixed bug where Safari was adding style attributes to all elements when you paste them into the editor.
407
+ Fixed bug where the spellchecker menus was visually incorrect since the space for the non existing icon was still there.
408
+ Fixed bug where remove_linebreaks option didn't remove line breaks inside the text contents of a element.
409
+ Fixed bug where Safari 3.1 was introducing _mc_tmp into paragraphs due to the new querySelectorAll and a TinyMCE specific workaround.
410
+ Fixed bug where getParam method in the Editor class was returning incorrect objects and would mess up the font drop down. Patch contributed by speednet.
411
+ Fixed bug where the table dialog would produce an exception in IE when you edited tables since it tried to place focus in a disabled field.
412
+ Fixed bug where class attribute on some span elements was removed on cleanup.
413
+ Fixed bug where resizing the editor in IE could produce an exception if the editor width/height got to be a negative value.
414
+ Fixed bug where wmv files wouldn't play since the src param was used instead of the url param.
415
+ Fixed bug where br elements would be added here and there in Gecko. Geckos internal _moz_dirty br elements where serialized as well.
416
+ Fixed bug where editing named anchors would produce two anchors instead of one updated one.
417
+ Fixed bug where arrow and function keys didn't work when an noneditable element was focused within the editor.
418
+ Fixed bug where the dispatcher could produce an exception if the listener list was altered inside an event callback.
419
+ Fixed bug where it was impossible to totally empty the editor contents on Safari due to an mistreatment of nbsp as whitespace. Patch contributed by Andrew Ozz.
420
+ Fixed bug where TinyMCE would not convert textareas with the same name attribute value. It will now generate an unique id for those textareas.
421
+ Fixed bug where backspace/delete key was deleting td elements inside tables while running on Gecko.
422
+ Fixed bug where Firefox 3.0b4 and Opera 9.26 where scrolling to the top of document when pressing return/enter.
423
+ Fixed bug where the template plugin wasn't just inserting the mceTmpl tagged element.
424
+ Fixed bug where the alert method of the default WindowManager implementation didn't translate input language strings like the inlinepopups dialog does.
425
+ Fixed bugs with the backspace behavior in Gecko. The caret was placed on incorrect locations in the DOM sometimes.
426
+ Fixed so advimage dialog and table dialogs has support for editable select boxes for the class value.
427
+ Fixed so the media, pagebreak and spellchecker doesn't load it's default content.css file if the content_css option is set to false.
428
+ Fixed so the paste_use_dialog option works again it's enabled by default but can be disabled on IE. Patch contributed by Speednet.
429
+ Fixed so that the fullscreen editor is focused when switching fullscreen editing on.
430
+ Fixed so it's possible to edit images and links inside tables using the context menu.
431
+ Fixed so table dialogs and the advanced image dialog doesn't loose selection in IE if the dialogs where navigated/submitted with the keyboard.
432
+ Fixed so the theme_advanced_blockformats options can have named items for example title 1=h1;title 2=h2.
433
+ Fixed so it's possible to add a custom editor_css for the simple theme.
434
+ Fixed quirks with directionality rtl, patch contributed by Andrew Ozz.
435
+ Fixed so the inlinepopups default start zIndex is 300000.
436
+ Fixed typo in media plugin Shockware is now replaced with Shockwave.
437
+ Fixed psuedo memory leak in IE with the replaceChild method inside the DOMUtils.replace method.
438
+ Fixed so memory is released when an editor instance is removed from page.
439
+ Optimized the color split button menus so that they use less event handlers.
440
+ Removed the util/mclayer.js file since it's no longer used by any of the TinyMCE dialogs and is considered deprecated.
441
+ Version 3.0.5 (2008-03-12)
442
+ Added new black skin variant to the o2k7 skin contributed by Stefan Moonen.
443
+ Added new explode method to the tinymce core class. This does a split but removed whitespace it also defaults to a , delimiter.
444
+ Added new detection logic for IE 8 standards mode into the DOMUtils class strMode can now be checked to see if that mode is on/off.
445
+ Added new noscale option value for the scale select box for Flash in the media plugin.
446
+ Fixed bug where the menu for the ColorSplitButton wasn't removed when the editor was removed.
447
+ Fixed bug where font colors couldn't be edited correctly since the style of the element didn't get updated correctly.
448
+ Fixed bug where class of elements would get lost when TinyMCE was fixing incorrect HTML markup.
449
+ Fixed bug where table editing would produce double height values.
450
+ Fixed bug where width style value wouldn't be removed if you switched width unit from cm/em to pixels or percent.
451
+ Fixed bug where the search/replace input box wasn't auto focused like the other dialogs.
452
+ Fixed bug where the old mceAddControl command would use the fullscreen settings next time it created an instance.
453
+ Fixed bug where multiple lines where added to the target cell if you merged multiple empty cells.
454
+ Fixed bug where drop down menus would be incorrectly positioned inside scrollable divs.
455
+ Fixed bug where the separators of the silver skin variant didn't display correctly in IE 6.
456
+ Fixed bug where createStyleSheet seems to load scripts at opposite order in some IE versions.
457
+ Fixed bug where directionality could produce odd results for the UI and the dialogs.
458
+ Fixed bug where the DOM serializer wouldn't serialize custom namespaced attributes in IE 6 using the *[*] valid elements rule.
459
+ Fixed bug where table caption would be inserted after the thead element if you swapped a tr to be inside the thead.
460
+ Fixed bug where the youtube detection logic for the media plugin was to generic.
461
+ Fixed so the deprecated and undocumented theme_advanced_path_location set to none won't hide the whole statusbar.
462
+ Fixed so most input lists can have whitespace in them they are now split using the new tinymce.explode method.
463
+ Fixed so the popup_css and popup_css_add URLs are relative to where the current document is located.
464
+ Fixed various bugs and quirks with the store/restore selection logic.
465
+ Fixed so the editor starts in IE 8 standards mode but still that browser is very very buggy.
466
+ Fixed so dialog_type set to modal will block the background and other inline windows and only give access to the front most window.
467
+ Version 3.0.4.1 (2008-03-08)
468
+ Fixed critical bug where it was impossible to edit images when inlinepopups where used due to lost selection in IE.
469
+ Version 3.0.4 (2008-03-07)
470
+ Added new option constrain_menus, this enables you to force view port constraints on all menus. Contributed by Shane Tomlinson.
471
+ Fixed bug where table background wasn't visible inside the editor due to a default CSS rule overriding the style attribute.
472
+ Fixed bug where links would get a null class added if no styles was used in IE.
473
+ Fixed bug where spellchecker was auto focusing the editor in IE.
474
+ Fixed bug where document.domain would produce invalid argument if the editor was loaded in IE6 over a network UNC path.
475
+ Fixed bug where table height attribute was used, this is deprecated in XHTML so it now adds it as an style.
476
+ Fixed bug where textareas with style values would produce error in IE.
477
+ Fixed so the first element in each dialog is focused by default to enhance keyboard usage.
478
+ Fixed so you can add a mceFocus class to elements to make it auto focused.
479
+ Fixed so you can close dialogs using the esc key.
480
+ Fixed so you can press return/enter to submit the action of each dialog.
481
+ Fixed so tabbing inside an inline popups wont focus the resize anchor elements.
482
+ Fixed so you can press ok in inline alert messages using the return/enter key.
483
+ Fixed so textareas can be set to non px or % sizes for example em, cm, pt etc.
484
+ Fixed so non pixel values can be used in width/height properties for tables.
485
+ Fixed so the custom context menu can be disabled by holding down ctrl key while clicking.
486
+ Fixed so the layout for the o2k7 skin looks better if you don't have separators before and after list boxes.
487
+ Fixed so the sub classes get a copy of the super class constructor function to ease up type checking.
488
+ Fixed so font sizes for the format block previews are normalized according to http://www.w3.org/TR/CSS21/sample.html (it can be overridden).
489
+ Fixed so font sizes for h1-h6 in the default content.css is normalized according to http://www.w3.org/TR/CSS21/sample.html (it can be overridden).
490
+ Version 3.0.3 (2008-03-03)
491
+ Fixed bug where an error about document.domain would be thrown if TinyMCE was loaded using a different port.
492
+ Fixed bug where mode exact would convert textareas without id or name if the elements option was omitted.
493
+ Fixed bug where the caret could be placed at an incorrect location when backspace was used in Gecko.
494
+ Fixed bug where local file:// URLs where converted into absolute domain URLs.
495
+ Fixed bug where an error was produced if a editor was removed inside an editor command.
496
+ Fixed bug where force_p_newlines didn't effect the paste plugin correctly.
497
+ Fixed bug where the paste plugin was producing an exception on IE if you pasted contents with middots.
498
+ Fixed bug where delete key could produce exceptions in Gecko sometimes due to the fix for the table cell bug.
499
+ Fixed bug where the layer plugin would produce an visual add class called mceVisualAid this one is now renamed to mceItemVisualAid to mark it internal.
500
+ Fixed bug where TinyMCE wouldn't initialize properly if ActiveX controls was disabled in IE.
501
+ Fixed bug where tables and other elements that had visual aids on them would produce an extra space after any custom class names.
502
+ Fixed bug where search with an empty string would produce some odd "invalid pointer" error in IE.
503
+ Fixed bug where elements like menus where placed at incorrect positions in Opera 9.26.
504
+ Fixed bug where IE was loosing focus of the editor when you clicked some dropmenu and if it was placed in a frame or iframe.
505
+ Fixed bug where focus of images could be lost in IE if you focused the accessibility confirm dialog in the advimage plugin.
506
+ Fixed bug where nestled font elements would produce odd output like missing font elements.
507
+ Fixed bug where text colors and styles got removed if invalid_elements included the font element.
508
+ Fixed bug where text-decoration set to underline or line-through would remove other styles from span elements.
509
+ Fixed bug where editor contents like \n\n would be incorrectly handled and processed as real line feeds.
510
+ Fixed bug where incorrectly encoded urls with ampersands in them would be decoded incorrectly.
511
+ Optimized the DOMUtils decode method to be a lot faster if the string doesn't have any entities to decode.
512
+ Version 3.0.2.1 (2008-02-26)
513
+ Fixed alert/confirm dialogs so they display correctly.
514
+ Version 3.0.2 (2008-02-26)
515
+ Added new body_id option that enables you to specify the id of the body inside the editor iframe based on ideas by David Bildstr�m (ChronoZ).
516
+ Added new body_class option that enables you to set the class for the body of the editor iframe based on ideas by David Bildstr�m (ChronoZ).
517
+ Added new CSS class to the default content.css files mceForceColors that forces white background and black text can be used with the body_class option.
518
+ Added new type parameter to the Editor.getParam function to reduce redundant logic for parsing hash tables.
519
+ Added new isDone method to the ScriptLoaded class, this enables you to check if a script has been loaded or not.
520
+ Added new resizeTo and resizeBy methods for the advanced theme. Can be called using tinyMCE.activeEditor.theme.resizeTo(w, h);
521
+ Added new skin_variant option this can be used to extend existing skins with slight modifications like color.
522
+ Added new variant of the o2k7 skin called "silver" based on a contribution made by Stefan Moonen.
523
+ Fixed bug where the template plugin might produce errors if the template_mdate_classes wasn't configured.
524
+ Fixed bug where the media plugin didn't convert the URLs for movies once they where inserted.
525
+ Fixed bug where the style field for the advlink dialog didn't work correctly if you edited an existing link.
526
+ Fixed bug where alignment of toolbars would fail in editor was uses in a quirks mode on IE, fix contributed by Peter Wood & Art Lawry.
527
+ Fixed bug where initialization of multiple editors at the same time using the mceAddControl method would produce errors.
528
+ Fixed bug where initialization of editors using mceAddControl command or new tinymce.Editor calls would fail during page load.
529
+ Fixed bug where the check for domain relaxing could fail if the document.domain property was changed by another script.
530
+ Fixed bug where textareas couldn't be named description or any other name that matches the meta elements in IE and Opera.
531
+ Fixed bug where the element path would fail sometimes in IE due to "unknown runtime error" on innerHTML.
532
+ Fixed bug where Safari would crash if you was hiding the editor before serializing the contents.
533
+ Fixed bug where the editor wasn't scaled propertly in fullscreen mode using the old fullscreen_new_window option.
534
+ Fixed bug where render method didn't load language packs in IE and Opera if you rendered an editor during page load.
535
+ Fixed bug where resizing the browser window in fullscreen didn't resize the editor.
536
+ Fixed bug where the blockquote command didn't move the caret inside the new empty blockquote if you used it on an empty document.
537
+ Fixed bug where auto in a style width/height for the textarea would produce an editor with the size value of 100. Fix contributed by Shane Tomlinson.
538
+ Fixed bug where restoration of selection at the beginning of an element could fail in Gecko.
539
+ Fixed bug where caret restoration after a cleanup could place the it at an incorrect location.
540
+ Fixed bug where delete key inside td elements would delete the cell in Gecko.
541
+ Fixed so the blockquote button toggles individual lines. This behavior is a bit more like the old indentation behavior in the 2.x branch.
542
+ Fixed so the dialog language packs only gets loaded the first time you open a dialog.
543
+ Fixed so all classes in the whole UI is prefixed with "mce" to avoid collisions, use the skin converter to update your existing skins.
544
+ Fixed so all classes in the inlinepopups logic is prefixed with "mce" to avoid collisions, use the skin converter to update your existing skins.
545
+ Fixed so that the window in fullscreen mode can be resized when fullscreen_new_window option is enabled.
546
+ Fixed so blockquote elements are formatted in the source output with an linefeed before and after it.
547
+ Optimized the editor initialization by reducing the number of calls to getBookmark/moveToBookmark.
548
+ Version 3.0.1 (2008-02-21)
549
+ Added spellchecker plugin into the main package, but without any backend can be specified with the spellchecker_rpc_url option.
550
+ Added src attribute for script elements to the default valid_elements option value.
551
+ Added extra parameter to the class_filter callback it can now also filter out classes based on the whole CSS rule.
552
+ Added support for domain relaxing, TinyMCE can now be loaded from an remote domain as long as they are on the same root domain.
553
+ Added support for custom elements the new custom_elements option enables you to add non HTML elements to the editor.
554
+ Added support for the W3C Selectors API that was added to latest nightly build of WebKit.
555
+ Fixed bug where some object param element wasn't stored correctly using the media plugin.
556
+ Fixed bug where Opera was scrolling to top of page is drop menus on list boxes where displayed.
557
+ Fixed bug where IE6 was crashing if a format block was used on a container with anchor elements.
558
+ Fixed bug where spans with font sizes wasn't handled correctly when editor was loading contents.
559
+ Fixed bug where mode exact couldn't convert editors with name only. Id is no longer required but recommended.
560
+ Fixed bug where the mceInsertRawHTML command produced an extra undo level.
561
+ Fixed bug where the specific_textareas mode didn't work correctly this is the same thing as textareas now.
562
+ Fixed bug where the values of input elements in the HTML page of dialogs pages where changed in IE.
563
+ Fixed bug where fullscreen and fullpage plugins didn't work well together.
564
+ Fixed bug where embed elements wasn't handled properly in the media plugin.
565
+ Fixed bug where style information on span elements gets munged when fonts are converted to spans.
566
+ Fixed bug where some entities in element attributes where encoded incorrectly in the latest WebKit build.
567
+ Fixed bug where initialization would fail in IE if there where two input elements with the name submit in the form.
568
+ Fixed bug where fullscreen mode didn't work correctly in IE when the fullscreen_new_window option was used.
569
+ Fixed bug where invalid contents like an ul inside a p element would produce odd results in IE.
570
+ Fixed bug where Opera 9.2x was placing the drop menus at incorrect locations if the editor was placed in a table.
571
+ Fixed bug where Opera was producing odd results if enter/return was pressed while having forced_root_blocks disabled.
572
+ Fixed bug where layer plugin was stealing focus in IE on initialization.
573
+ Fixed bug where body attributes wasn't set properly in the fullpage plugin, fix contributed by Hiroaki Kawai.
574
+ Fixed bug where insert image and insert link dialogs where producing an extra level in the undo history.
575
+ Fixed bug where Gecko would produce an error if empty elements like <div></div> where inserted using mceInsertContent.
576
+ Fixed bug where center alignment of images produced odd results inside table cells.
577
+ Fixed bug where center alignment of images couldn't be toggled correctly.
578
+ Fixed bug where alignment of images inside tables would produce double float style items in IE if the fix_table_elements option was enabled.
579
+ Fixed bug where a variable called 'v' was polluting the global namespace. Objects tinymce and tinyMCE are the only ones allowed to be global.
580
+ Fixed bug where insert table from context menu couldn't insert new tables inside existing tables.
581
+ Fixed bug where Safari wouldn't produce br elements on enter when the force_br_newlines option was enabled.
582
+ Fixed bug where switching cell type in table cell dialog would produce odd attributes in IE.
583
+ Fixed bug where Gecko was outputting internal attributes if valid_elements where set to "*[*]".
584
+ Fixed bug where the style plugin would produce non hex colors inside the dialog when running on Gecko.
585
+ Fixed bug where an empty src value for insert image would remove the currently selected image if it wasn't and image element.
586
+ Fixed bug where hidden input elements would break the logic for the tab_focus option.
587
+ Fixed bug where save button wasn't working correctly in fullscreen mode.
588
+ Fixed bug where the editor was forced to be placed in a form element if the save_onsavecallback option was used.
589
+ Fixed bug where upper case param attributes wasn't parsed correctly in the media plugin.
590
+ Fixed bug where render method of tinymce.Editor class would produce an exception if the strict_loading_mode option was omitted.
591
+ Fixed bug where nodeChanged event could be fired while the editor was loading and there for produce an exception in FF.
592
+ Fixed bug where no undo levels where added if the user created new table rows using the tab key on Gecko.
593
+ Fixed bug where tables would be broken if you selected a different block format for contents withing an table cell.
594
+ Fixed bug where the render method of the tinymce.Editor class didn't setup the tinymce.EditorManager.settings object correctly.
595
+ Fixed bug where the advanced image dialog would go to the first tab if the alternative image was changed using the file browser link.
596
+ Fixed bug where the forced_root_block option would produce BR elements inside empty blocks if the block wasn't a paragraph.
597
+ Fixed bug where the forced_root_block doesn't work correctly on IE if the specified element was something else than paragraphs.
598
+ Fixed bug where selection of images would get lost if user selected something from the context menu in IE.
599
+ Fixed bug where the context menu plugin would pollute the global namespace with two variables p1 and p2.
600
+ Fixed compatibility issue with Mootools, it is destroying document.getElementById on unload in IE. (Mantra: You don't own the internal objects).
601
+ Fixed bugs where dialogs/tabs and other UI elements where rendered incorrectly in Firefox 3.
602
+ Fixed so the auto CSS class importer is compatible with 2.x.
603
+ Fixed so the editor UI and inlinedialogs works correctly with the YUI CSS reset package.
604
+ Fixed so header and footer elements are forced to lower case when the fullpage plugin is used.
605
+ Fixed so load prefixes "-" for plugins and themes isn't required if the plugin/theme was loaded by the ThemeManager/PluginManager.
606
+ Fixed so the JSONRequest uses application/json content type to make Ruby on rails happy.
607
+ Fixed so the CSS rule is more exact for the body in the default content.css files. Body is now defined as "body.mceContentBody" instead of just "body".
608
+ Fixed so the tiny_mce_dev.js uses XHR instead of document.write to load scripts to resolve an issue with Opera 9.50.
609
+ Fixed so language pack loading can be disabled by setting the language option to false. Can be useful for systems with their own language pack management.
610
+ Version 3.0 (2008-01-30)
611
+ Added map and area elements to the default valid_elements list and also some indentation rules.
612
+ Fixed bug where empty paragraphs wasn't padded when loading contents.
613
+ Fixed bug where the RowLayout manager didn't work at all.
614
+ Fixed bug where style attribute data would get messed up in advimage dialog.
615
+ Fixed bug where the table dialogs class select wasn't updated correctly.
616
+ Fixed bug where elements would get extra whitespace around on insert when body was present in valid_elements.
617
+ Fixed bug where coords attribute of the area element wasn't handled properly in IE.
618
+ Fixed bug where Safari didn't produce BR elements on shift+return.
619
+ Fixed bug where force blocks would cast odd invalid attribute exception in IE.
620
+ Fixed bug where media plugin would produce extra whitespace before and after objects.
621
+ Fixed bug where cleanup_callback could break the contents of the editor. But use the new event system instead of this option.
622
+ Fixed bug where the tab_focus option didn't work between editor instanced. You can now tab between editors.
623
+ Fixed bug where the load function of the ScriptLoader class didn't load single files without the load que as it was supposed to.
624
+ Fixed bug where the execcommand_callback parameter order was incorrect. Recommendation use the new addCommand method.
625
+ Fixed bug where range.select calls sometimes failed on some IE versions.
626
+ Fixed bug where Safari was scrolling to top of document when enter/returned was pressed.
627
+ Fixed bug where fullscreen_new_window option didn't work correctly.
628
+ Fixed bug where the nonbreaking plugin inserted an space instead of an non breaking space the first time.
629
+ Fixed bug where the visualization of non breaking spaces where visual in element path.
630
+ Fixed so the focus is restored to the editor after inserting an custom character.
631
+ Fixed so the isNotDirty state is set to false if a new undo level is added.
632
+ Fixed so pointless style information for borders gets removed in IE.
633
+ Fixed so the resize button has a se-resize cursor css value.
634
+ Version 3.0rc2 (2008-01-18)
635
+ Added new fix_nesting option to fix bug #1867292, this is disabled by default.
636
+ Added new indentation option enables you to specify how much each indent/outdent call will add/remove.
637
+ Added easier support for enabling/disabling icon columns on drop menues.
638
+ Added new menu button control class. This control is very similar to the splitbutton but without any onclick action.
639
+ Added support for previous tab focus (shift+tab). The tab_focus setting now takes two items next and previous element.
640
+ Fixed bug where iframes inside the editor got removed in Firefox on initial load.
641
+ Fixed bug where the CSS for abbr elements wasn't applied correctly in IE.
642
+ Fixed bug where mceAddControl on element inside a hidden container produced errors.
643
+ Fixed bug where closed anchors like <a /> produced strange results.
644
+ Fixed bug where caret would jump to the top of the editor if enter was pressed a the end of a list.
645
+ Fixed bug where remove editor failed if the editor wasn't properly initialized.
646
+ Fixed bug where render call on for a non existing element produced exception.
647
+ Fixed bug where parent window was hidden when the color picker was used in a non inlinepopups setup.
648
+ Fixed bug where onchange event wasn't fired correctly on IE when color picker was used in dialogs.
649
+ Fixed bug where save plugin could not save contents if the converted element wasn't an textarea.
650
+ Fixed bug where events might be fired even after an editor instance was removed such as blur events.
651
+ Fixed bug where an exception about undefined undo levels could be throwed sometimes.
652
+ Fixed bug where the plugin_preview_pageurl option didn't work.
653
+ Fixed bug where adding/removing an editor instance very fast could produce problems.
654
+ Fixed bug where the link button was highlighted when an anchor element was selected.
655
+ Fixed bug where the selected contents where removed if a new anchor element was added.
656
+ Fixed bug where splitbuttons where rendered one pixel down in the default theme.
657
+ Fixed bug where some buttons where placed at incorrect positions in the o2k7 theme.
658
+ Fixed bug that made it impossible to visually disable a custom button that used an image instead of CSS sprites.
659
+ Fixed bug where it wasn't possible to press delete/backspace if the editor was added+removed and re-added due to a FF bug.
660
+ Fixed bug where an entities option with only 38,amp,60,lt,62,gt would fail in IE.
661
+ Fixed bug where innerHTML sometimes generated unknown runtime error on IE.
662
+ Fixed bug where content_css files wasn't loaded in the template preview iframe.
663
+ Fixed bug where scroll position was incorrect when toggling fullscreen mode.
664
+ Fixed bug where restoration of overflow didn't work correctly when disabling fullscreen mode in Opera.
665
+ Fixed bug where drop menus where places at incorrect locations if the editor was placed in a scrollable container element.
666
+ Fixed bug where hideMenu didn't hide sub menus correctly. It will now hide all menus recursively.
667
+ Fixed so theme_advanced_path_location can be used in init options for compatibility reasons.
668
+ Fixed so the drop menu colors matches the rest of o2k7 theme.
669
+ Fixed so the preview example.html file is updated to the new 3.x API.
670
+ Fixed so the margins are the same by default inside the editable area between IE and other browsers.
671
+ Fixed so editor contents gets stored before it the onSubmit event is fired.
672
+ Version 3.0rc1 (2008-01-08)
673
+ Added new classes for toolbar rows in advanced theme mceToolbarRow1..n enabled you to change appearance of individual rows.
674
+ Added auto detection for the strict_loading_mode option when running in application/xhtml+xml mode on Gecko.
675
+ Optimized the HTML serializer by bundling some post process methods together.
676
+ Fixed so that the toolbars have unique IDs, enables you to alter the toolbars using the ControlManager and the DOM.
677
+ Fixed bug where delta values for dialog sizes in language packs didn't work correctly due to missing string to number casting.
678
+ Fixed bug where paragraph generation logic didn't handle hr or table elements correctly if they where the only element.
679
+ Fixed bug where some elements got extra linebreaks added after or before it in HTML output.
680
+ Fixed bug where it was hard to modify existing style data on table rows and table cells.
681
+ Fixed bug where the dom.getRect method didn't handle non pixel values correctly.
682
+ Fixed bug where strikethrough and underline couldn't be toggled on existing span elements.
683
+ Fixed bug where the postprocessor searched for nsbp instead of nbsp entities.
684
+ Fixed bug where it was impossible to edit links that had child elements within them.
685
+ Fixed bug where it was possible to click on the parent item of a submenu.
686
+ Fixed bug where mouseover/mouseout images couldn't be removed in advimage dialog.
687
+ Fixed bug where drop menus didn't work when running in application/xhtml+xml mode.
688
+ Fixed bug where Opera added doctype to output in application/xhtml+xml mode.
689
+ Fixed bug where some DOM methods didn't work correctly in the application/xhtml+xml mode.
690
+ Fixed bug where the inlinepopups didn't work correctly in the application/xhtml+xml mode.
691
+ Fixed bug where the ColorSplitButton didn't display correctly in the application/xhtml+xml mode.
692
+ Fixed bug where the UI layout was incorrect on Gecko browsers when running in application/xhtml+xml mode.
693
+ Fixed bug where the word paste plugin produced exception while running in application/xhtml+xml mode.
694
+ Fixed bug where there wasn't any hidden input element generated for divs while running in application/xhtml+xml mode.
695
+ Fixed bug where indentation of script/style/pre elements where incorrect.
696
+ Fixed bug where script element contents was removed in IE.
697
+ Fixed bug where script element contents got entity encoded.
698
+ Fixed bug where you couldn't edit existing element styles using the styles plugin.
699
+ Fixed bug where styles wasn't updated properly sometimes due to an performance enhancement.
700
+ Fixed bug where font sizes couldn't be changed using the style plugin.
701
+ Fixed bug where an error was produced in Gecko browsers when switching back from fullscreen mode.
702
+ Fixed bug where Opera was producing br elements after elements like h3.
703
+ Fixed bug where TinyMCE couldn't be loaded on a page using - characters in it's URL.
704
+ Fixed bug where the editor container element was forced to have a specific name.
705
+ Fixed bug with force_br_newlines option on Firefox, even though it should never be used (Read FAQ).
706
+ Fixed bug where onclick event had an return true; prefix added when creating an popup.
707
+ Fixed bug where the theme_advanced_statusbar_location option couldn't handle the value "none".
708
+ Fixed issue with URLs with multiple at characters for example an Zope URI.
709
+ Fixed so simple and advanced themes doesn't collide.
710
+ Fixed so a elements gets removed when the href field is left empty, the href attribute is required in a link after all.
711
+ Fixed so img elements gets removed when the src field is left empty, the src attribute is required for all images after all.
712
+ Removed the indent and encode methods from the tinymce.dom.Serializer class due to performance enhancement and reduction of the API size.
713
+ Version 3.0b3 (2007-12-14)
714
+ Added new getElement method to Editor class, returns the element that was replaced with the editor instance.
715
+ Added new unavailable prefix for disabled controls for accessibility reasons.
716
+ Fixed bug where regexp patterns couldn't be used for the editor_selector/editor_deselector options.
717
+ Fixed bug where the DOM wasn't properly initialized before the onInit event was executed in popups.
718
+ Fixed bug where font sizes where reduced by font size actions on previous spans in Safari.
719
+ Fixed bug where HR elements got places at the wrong location in IE.
720
+ Fixed bug where align/justify didn't work correctly on multiple paragraphs.
721
+ Fixed bug with missing translation for cell scope settings.
722
+ Fixed bug where selection/caret position was lost on some table actions.
723
+ Fixed bug where editor instances couldn't be added to hidden div elements.
724
+ Fixed bug where list elements in Safari would get an odd ID attribute.
725
+ Fixed bug where IE would return <html/> when the editor was completely empty.
726
+ Fixed bug where accessibility title attribute for access keys wasn't setup properly.
727
+ Fixed bug where forecolorpicker and backcolorpicker control names wasn't working.
728
+ Fixed bug where inserting template content didn't work in Safari due to selection exception.
729
+ Fixed bug where absolute URLs to remote hosts couldn't be used for background images.
730
+ Fixed bug where mysterious span elements where produced in Safari when injecting HTML contents.
731
+ Fixed bug where the media plugin didn't work correctly on the latest Opera 9.24.
732
+ Fixed bug where indentation of HTML output wasn't applied to all block elements.
733
+ Fixed bug where Safari was production DOM exception if you pressed enter in an empty editor.
734
+ Fixed bug where media plugin didn't parse script tags correctly patch contributed by Mathieu Campagna.
735
+ Fixed bug where the drop menus of list boxes like blockformat could produce scrolling of the page.
736
+ Fixed bug where the drop menus where placed at an incorrect location if TinyMCE was placed in a scrollable div.
737
+ Fixed bug where submit buttons couldn't be named submit, it's not recommended to name submit buttons submit anyway.
738
+ Fixed bug where the stylelistbox produced an exception if there was only one class in the list box.
739
+ Fixed bug where the stylelistbox wasn't updated correctly when the current class was removed.
740
+ Fixed bug where the formatblock command sometimes removed the body element.
741
+ Fixed bug where fullscreen switching in IE sometimes produced an exception when the spellchecker plugin was enabled.
742
+ Fixed issue where FF produced an empty paragraph when the editor was completely empty.
743
+ Fixed issue with size of image dialog in the advanced theme.
744
+ Fixed issues with the bbcode plugin it now also handles spans and the [font] rule.
745
+ Fixed so the style compression feature is a bit smarter to resolve issues with Opera.
746
+ Reintroduced the remove_linebreaks option, this is enabled by default.
747
+ Version 3.0b2 (2007-11-29)
748
+ Added type and compact attributes to the default valid_elements list for the ul and ol elements.
749
+ Added missing accessibility support to native list boxes in both the toolbar and dialogs.
750
+ Added missing access key for the element path for accessibility reasons.
751
+ Fixed support for loading themes from external URLs.
752
+ Fixed bug where setOuterHTML didn't work correctly when multiple elements where passed to it.
753
+ Fixed bug with visualchars plugin was moving elements around in the DOM.
754
+ Fixed bug with DIV elements that got converted into editors on IE.
755
+ Fixed bug with paste plugin using the old event API.
756
+ Fixed bug where the spellchecker was removing the word when it was ignored.
757
+ Fixed bug where fullscreen wasn't working properly.
758
+ Fixed bug where the base href element and attribute was ignored.
759
+ Fixed bug where redo function didn't work in IE.
760
+ Fixed bug where content_css didn't work as previous 2.x branch.
761
+ Fixed bug where preview dialog was throwing errors if the content_css wasn't defined.
762
+ Fixed bug where the theme_advanced_path option didn't work like the 2.x branch.
763
+ Fixed bug where the theme_advanced_statusbar_location was called theme_advanced_status_location.
764
+ Fixed bug where the strict_loading_mode option didn't work if you created editors dynamically without using the EditorManager.
765
+ Fixed bug where some language values wasn't translated such as insert and update in dialogs.
766
+ Fixed bug where some image attributes wasn't stored correctly when inserting an image.
767
+ Fixed bug where fullscreen mode didn't restore scrollbars when disabled.
768
+ Fixed bug where there was no visual representation for tab focus in toolbars on IE.
769
+ Fixed bug where HR elements wasn't treated as block elements so forced_root_block would fail on these.
770
+ Fixed bug where autosave presented warning message even when the form was submitted normally.
771
+ Fixed typo of openBrower it's now openBrowser in form_utils.js.
772
+ Fixed various HTML problems like missing TD elements and duplicated doctypes.
773
+ Fixed default values for theme_advanced_resize_horizontal, theme_advanced_resizing_use_cookie to be 2.x compatible.
774
+ Moved spellchecker JS files into the development package.
775
+ Removed support for theme_advanced_path_location since the theme_advanced_statusbar_location is the correct option name.
776
+ Version 3.0b1 (2007-11-21)
777
+ Added new tab_focus option, that enables you to specify a element id or that the next element to be focused on tab key down.
778
+ Added new addQueryValueHandler method to the tinymce.Editor class.
779
+ Added new class_filter option, this enables you to specify a function that can filter out CSS classes for the styles list box.
780
+ Added support form [url=url]title[/url] to the bbcode plugin.
781
+ Renamed the addCommandQueryState method in the tinymce.Editor class to addQueryStateHandler.
782
+ Renamed loadQue to loadQueue, to correct spelling.
783
+ Removed the createDOM method from the window manager and replace it with a createInstance method.
784
+ Removed the add to beginning of class attribute parameter of the DOMUtils.addClass method.
785
+ Fixed bug with the forced_root_block option, didn't work correctly with multiple inline elements.
786
+ Fixed bug where image dialogs replaced the current image element with a new one even when it was updated.
787
+ Fixed bug where the submit trigger wasn't executed when divs where converted into editor instances.
788
+ Fixed bug where div elements that got converted into editors didn't get a hidden input element generated for them.
789
+ Fixed bug where the the media_use_script option for the media plugin wasn't working correctly.
790
+ Fixed bug where the font size and font family listboxes wasn't updated correctly on Safari.
791
+ Fixed bug where the height of the fieldset in default image dialog for the advanced theme was to small.
792
+ Fixed bug where the font sizes behaved incorrectly after a cleanup on Safari.
793
+ Fixed bug where formatblock didn't work correctly in Safari on some elements.
794
+ Fixed bug where template plugin didn't insert content correctly unless some options where specified.
795
+ Fixed bug where charmap on Safari produced scrollbars.
796
+ Fixed bug where there was white artifacts in some dialogs due to missing background color.
797
+ Fixed bug where port was added to all external URLs if the editor was loaded from a custom port.
798
+ Fixed bug where the context menus got duplicated on Safari 3.0.4 on Mac OS X.
799
+ Fixed bug where dialogs like paste from word was huge on Firefox.
800
+ Fixed bug with media plugin not working with windows media objects.
801
+ Fixed bug where a forever loop was created if multiple instances where submitted using form.submit.
802
+ Fixed bug with editing a table produce error in IE when inlinepopups where used.
803
+ Fixed bug where the style plugin generated ugly looking style information in IE.
804
+ Fixed bug where the inline dialogs that got opened while in fullscreen mode wasn't visible.
805
+ Fixed bug where it was difficult to place the caret inside the word paste dialog.
806
+ Fixed bug where Opera produced strange border in the word paste dialog.
807
+ Fixed bug where viewport constraints could move a inlinepopup to a negative x, y position if the viewport was to small.
808
+ Fixed bug where template plugin was producing an error due to a deprecated API call.
809
+ Fixed bug where drag drop of images failed in Gecko if a document_base_url was specified.
810
+ Fixed bug where Firefox 3 failed to apply block formats like H1-H6 it still breaks on DIVs this has been reported to bugzilla.
811
+ Fixed bug where IE was producing a warning dialog about non secure items when running TinyMCE over HTTPS.
812
+ Fixed bug where the onbeforeunload event was triggered when menus or dialogs where opened.
813
+ Fixed bug where the fullscreen mode of the HTML view source box threw an error.
814
+ Fixed bug where the mceFocus command didn't work correctly.
815
+ Fixed bug where the selection could get lost in IE using inlinepopups.
816
+ Fixed so the body of the editor area has the mceContentBody class just like the 2.x branch.
817
+ Fixed so the media icon gets active when a media element is selected.
818
+ Version 3.0a3 (2007-11-13)
819
+ Added new experimental jQuery and Prototype framework adapters to the development package.
820
+ Added new translation.html file for the development package. Helps with the internationalization of TinyMCE.
821
+ Added new setup callback option, use this callback to add events to TinyMCE. This method is recommended over the old callbacks.
822
+ Added new API documetation to all classes, functions, events, properties to the Wiki with examples etc.
823
+ Added new init method to all plugins and themes, since it's shorter to write and it mimics interface capable languages better.
824
+ Fixed various CSS issues in the default skin such as alignment of split buttons and separators.
825
+ Fixed issues with mod_security. It didn't like that a content type of text/javascript was forced in a XHR.
826
+ Fixed all events so that they now pass the sender object as it's first argument.
827
+ Fixed some DOM methods so they now can take an array as input.
828
+ Fixed so addButton and the methods of the ControlManager uses less arguments and it now uses a settings object instead.
829
+ Fixed various issues with the tinymce.util.URI class.
830
+ Fixed bug in IE and Safari and the on demand gzip loading feature.
831
+ Fixed bug with moving inline windows sometimes failed in IE6.
832
+ Fixed bug where save_callback function wasn't executed at all.
833
+ Fixed bug where inlinepopups produces scrollbars if windows where moved to the corners of the browser.
834
+ Fixed bug where view HTML source failed when inserting a embedded media object.
835
+ Fixed bug where the listbox menus didn't display correctly on IE6.
836
+ Fixed bug where undo level wasn't added when editor was blurred.
837
+ Fixed bug where spellchecker wasn't disabled when fullscreen mode was enabled.
838
+ Fixed bug where Firefox could crash some times when the user switched to fullscreen mode.
839
+ Fixed bug where tinymce.ui.DropMenu didn't remove all item data when an item was removed from the menu.
840
+ Fixed bug where anchor list in advlink dialog wasn't populated correctly in Safari.
841
+ Fixed bug where it wasn't possible to edit tables in IE when inlinepopups was enabled.
842
+ Fixed bug where it wasn't possible to change the table width of an existing table.
843
+ Fixed bug where xhtmlxtras like abbr didn't work correctly on IE.
844
+ Fixed bug where IE6 had some graphics rendering issues with the inlinepopups.
845
+ Fixed bug where inlinepopup windows where moved incorrectly when they were boundary checked for min width.
846
+ Fixed bug where textareas without id or name couldn't be converted into editor instances.
847
+ Fixed bug where TinyMCE was stealing element focus on IE.
848
+ Fixed bug where the getParam method didn't handle false values correctly.
849
+ Fixed bug where inlinepopups was clipped by other TinyMCE instances or relative elements in IE.
850
+ Fixed bug where the contextmenu was clipped by other TinyMCE instances or relative elements in IE.
851
+ Fixed bug where listbox menus was clipped by other TinyMCE instances or relative elements in IE.
852
+ Fixed bug where listboxes wasn't updated correctly when the a value wasn't found by select.
853
+ Fixed various CSS issues that produced odd rendering bugs in IE.
854
+ Fixed issues with tinymce.ui.DropMenu class, it required some optional settings to be specified.
855
+ Fixed so multiple blockquotes can be removed with a easier method than before.
856
+ Optimized some of the core API to boost performance.
857
+ Removed some functions from the core API that wasn't needed.
858
+ Version 3.0a2 (2007-11-02)
859
+ Fixed critical bug where IE generaded an error on a hasAttribute call in the serialization engine.
860
+ Fixed critical bug where some dialogs didn't open in the non dev package.
861
+ Fixed bug when using the theme_advanced_styles option. Error was thrown in some dialogs.
862
+ Fixed bug where the close buttons produced an error when native windows where used.
863
+ Fixed bug in default skin so that split buttons gets activated correctly.
864
+ Fixed so plugins can be loaded from external urls outsite the plugins directory.
865
+ Version 3.0a1 (2007-11-01)
866
+ Rewrote the core and most of the plugins and themes from scratch.
867
+ Added new and improved serialization engine, faster and more powerful.
868
+ Added new internal event system, things like editor.onClick.add(func).
869
+ Added new inlinepopups plugin, the dialogs are now skinnable and uses clearlooks2 as default.
870
+ Added new contextmenu plugin, context menus can now have submenus and plugins can add items on the fly.
871
+ Added new skin support for the simple and advanced themes you can alter the whole UI using CSS.
872
+ Added new o2k7 skin for the simple and advanced themes.
873
+ Added new custom list boxes for font size/format/style etc with preview support.
874
+ Added new UI management, enabled plugins to create controls like splitbuttons or menus easier.
875
+ Added new JSON parser/serializer and JSON-RPC class to the core API.
876
+ Added new cookie utility class to the core API.
877
+ Added new Unit testing class to the core API only available in dev mode.
878
+ Added new firebug lite integration when loading the dev version of TinyMCE.
879
+ Added new Safari plugin, fixes lots compatibility of issues with Safari 3.x.
880
+ Added new URI/URL parsing it now handles the hole RFC and even some exceptions.
881
+ Added new pagebreak plugin, enables you to insert pagebreak comments like <!-- pagebreak -->
882
+ Added new on demand loading of plugins and themes. Enables you to load and init TinyMCE at any time.
883
+ Added new throbber/progress visualization a plugin can show/hide this when it's needed.
884
+ Added new blockquote button. Enables you to wrap paragraphs in blockquotes.
885
+ Added new compat2x plugin. Will provide a TinyMCE 2.x API for older plugins.
886
+ Added new theme_advanced_resizing_min_width, theme_advanced_resizing_min_height options.
887
+ Added new theme_advanced_resizing_max_height, theme_advanced_resizing_max_height options.
888
+ Added new use_native_selects option. Enables you to toggle native listboxes on and off.
889
+ Added new docs_url option enables you to specify where the TinyMCE user documentation is located.
890
+ Added new frame and rules options for the table dialog.
891
+ Added new global rule for valid_elements/extended_valid_elements enables you to specify global attributes for all elements.
892
+ Added new deny attribute rule characher so it's possible to deny global attribute rules on specific elements.
893
+ Added new unit tests in the dev package of TinyMCE. Runs tests on the core API, commands and settings of the editor.
894
+ Readded the inline_styles option and enabled it by default so deprecated attributes are no longer used.
895
+ Removed all button images and replaced them with CSS sprite images. Reduces the number of requests needed.
896
+ Removed lots of language files and merged them into the base language files. Reduces the number of requests needed.
897
+ Removed lots of unnecessary files and merged many of them together to reduce requests and improve loading speed.
898
+ Reduced the over all script size by 33% and the number of files/requests by 75% so it loads a lot faster.
899
+ Fixed so convert_fonts_to_spans are enabled by default. So no more font tags.
900
+ Fixed so underline and strikethrough uses spans instread of deprecated U and STRIKE elements.
901
+ Fixed so indent/outdent adds/removed margin-left instead of blockquotes.
902
+ Fixed so alignment of paragraphs results in a text-align style value instead of the deprecated align attribute.
903
+ Fixed so alignment of images uses float or vertical-align style values instead of the deprecated align attribute.
904
+ Fixed so all classes from @import stylesheets gets imported into the editor.
905
+ Fixed so the directionality can toggle the dir attribute on and off.
906
+ Fixed so the fullscreen_settings can be used for all types of fullscreen modes.
907
+ Fixed so the advanced HR dialog gets displayed when inserting a HR not only on edit.
908
+ Fixed bug where word wrap didn't work in the source editor on Safari.
909
+ Fixed so non HTML elements can be used within the editor such as <myns:tag>
910
+ Fixed various memory leaks in IE and reduced the unload cleanups needed.
911
+ Fixed so the preformatted option adds an invisible container pre tag inside the editor.
912
+ Renamed the _template plugin to example and updated it to use the new 3.x API.