skylinecms 3.1.0 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (540) hide show
  1. data/.gitignore +5 -0
  2. data/CHANGELOG +51 -1
  3. data/Gemfile +8 -0
  4. data/Rakefile +0 -43
  5. data/app/controllers/skyline/application_controller.rb +30 -26
  6. data/app/controllers/skyline/articles_controller.rb +8 -28
  7. data/app/controllers/skyline/authentications_controller.rb +6 -8
  8. data/app/controllers/skyline/browser/links_controller.rb +12 -8
  9. data/app/controllers/skyline/browser/tabs/linkables_controller.rb +9 -0
  10. data/app/controllers/skyline/browser/tabs/media_library/media_files_controller.rb +0 -12
  11. data/app/controllers/skyline/content/editors/editable_list_controller.rb +0 -4
  12. data/app/controllers/skyline/content/editors/joinable_list_controller.rb +1 -19
  13. data/app/controllers/skyline/content_controller.rb +14 -30
  14. data/app/controllers/skyline/content_items_controller.rb +3 -9
  15. data/app/controllers/skyline/content_sections_controller.rb +3 -10
  16. data/app/controllers/skyline/link_section_links_controller.rb +2 -10
  17. data/app/controllers/skyline/media/data_controller.rb +24 -14
  18. data/app/controllers/skyline/media/dirs_controller.rb +12 -26
  19. data/app/controllers/skyline/media/files_controller.rb +12 -28
  20. data/app/controllers/skyline/publications_controller.rb +0 -12
  21. data/app/controllers/skyline/published_publications_controller.rb +0 -4
  22. data/app/controllers/skyline/sections_controller.rb +4 -18
  23. data/app/controllers/skyline/site/media_files_data_controller.rb +11 -13
  24. data/app/controllers/skyline/site/pages_controller.rb +4 -3
  25. data/app/controllers/skyline/skyline2_controller.rb +1 -1
  26. data/app/controllers/skyline/users_controller.rb +7 -31
  27. data/app/controllers/skyline/variant_current_editor_controller.rb +5 -5
  28. data/app/controllers/skyline/variants_controller.rb +3 -3
  29. data/app/helpers/skyline/application_helper.rb +16 -5
  30. data/app/helpers/skyline/button_helper.rb +12 -18
  31. data/app/helpers/skyline/content_helper.rb +11 -11
  32. data/app/helpers/skyline/dialog_helper.rb +3 -2
  33. data/app/helpers/skyline/editors/checkable_list.rb +4 -2
  34. data/app/helpers/skyline/editors/date_time.rb +1 -1
  35. data/app/helpers/skyline/editors/display.rb +1 -1
  36. data/app/helpers/skyline/editors/editable_list.rb +13 -8
  37. data/app/helpers/skyline/editors/editor.rb +10 -10
  38. data/app/helpers/skyline/editors/list.rb +2 -2
  39. data/app/helpers/skyline/editors/page_browser.rb +1 -0
  40. data/app/helpers/skyline/editors/wysiwyg.rb +2 -3
  41. data/app/helpers/skyline/form_helper.rb +36 -0
  42. data/app/helpers/skyline/media/files_helper.rb +1 -1
  43. data/app/helpers/skyline/message_generator.rb +13 -4
  44. data/app/helpers/skyline/pages_helper.rb +1 -1
  45. data/app/helpers/skyline/plugin_helper.rb +1 -1
  46. data/app/helpers/skyline/presenters/presenter.rb +12 -8
  47. data/app/helpers/skyline/ref_object_helper.rb +9 -7
  48. data/app/helpers/skyline/translation_helper.rb +1 -1
  49. data/app/helpers/skyline/tree_helper.rb +1 -3
  50. data/app/middleware/skyline/flash_session_cookie_middleware.rb +6 -1
  51. data/app/middleware/skyline/plugins_loader_middleware.rb +1 -1
  52. data/app/middleware/skyline/sprockets_middleware.rb +1 -1
  53. data/app/models/skyline/article.rb +94 -26
  54. data/app/models/skyline/article_version.rb +22 -9
  55. data/app/models/skyline/image_ref.rb +1 -1
  56. data/app/models/skyline/inline_ref.rb +78 -62
  57. data/app/models/skyline/link_ref.rb +1 -1
  58. data/app/models/skyline/media_cache.rb +4 -2
  59. data/app/models/skyline/media_file.rb +2 -5
  60. data/app/models/skyline/media_node.rb +2 -2
  61. data/app/models/skyline/object_ref.rb +2 -2
  62. data/app/models/skyline/page.rb +8 -6
  63. data/app/models/skyline/page_fragment.rb +4 -2
  64. data/app/models/skyline/publication.rb +1 -1
  65. data/app/models/skyline/sections/content_collection_section.rb +1 -1
  66. data/app/models/skyline/sections/link_section.rb +1 -1
  67. data/app/models/skyline/user.rb +17 -7
  68. data/app/models/skyline/user_preference.rb +1 -1
  69. data/app/models/skyline/variant.rb +11 -5
  70. data/app/templates/skyline/page/default/index.html.erb +1 -1
  71. data/app/templates/skyline/sections/raw_section/default/index.html.erb +1 -1
  72. data/app/templates/skyline/sections/wysiwyg_section/default/index.html.erb +1 -1
  73. data/app/views/skyline/articles/_currently_editing.html.erb +1 -1
  74. data/app/views/skyline/articles/_meta.html.erb +24 -11
  75. data/app/views/skyline/articles/_security.html.erb +2 -2
  76. data/app/views/skyline/articles/_takeover_action.html.erb +1 -1
  77. data/app/views/skyline/articles/edit.html.erb +29 -16
  78. data/app/views/skyline/articles/edit_preview_only.html.erb +2 -2
  79. data/app/views/skyline/articles/index.html.erb +2 -2
  80. data/app/views/skyline/articles/page/_header.html.erb +1 -1
  81. data/app/views/skyline/articles/page/_index.html.erb +9 -3
  82. data/app/views/skyline/articles/page_fragment/_index.html.erb +7 -2
  83. data/app/views/skyline/articles/update.js.erb +20 -0
  84. data/app/views/skyline/authentications/new.html.erb +1 -1
  85. data/app/views/skyline/browser/links/_index.html.erb +2 -0
  86. data/app/views/skyline/browser/tabs/linkables/_index.html.erb +29 -0
  87. data/app/views/skyline/browser/tabs/linkables/_show.html.erb +67 -0
  88. data/app/views/skyline/browser/tabs/linkables/show.js.erb +4 -0
  89. data/app/views/skyline/browser/tabs/media_library/_index.html.erb +2 -2
  90. data/app/views/skyline/browser/tabs/media_library/media_files/_index.html.erb +4 -35
  91. data/app/views/skyline/browser/tabs/media_library/media_files/_show.html.erb +1 -3
  92. data/app/views/skyline/browser/tabs/media_library/media_files/index.js.erb +1 -0
  93. data/app/views/skyline/browser/tabs/media_library/media_files/show.js.erb +1 -0
  94. data/app/views/skyline/browser/tabs/pages/_index.html.erb +1 -1
  95. data/app/views/skyline/content/_add.rhtml +6 -1
  96. data/app/views/skyline/content/_filter.rhtml +1 -1
  97. data/app/views/skyline/content/_import.html.erb +1 -1
  98. data/app/views/skyline/content/_index.html.erb +2 -2
  99. data/app/views/skyline/content/_meta.html.erb +2 -2
  100. data/app/views/skyline/content/create.rhtml +1 -1
  101. data/app/views/skyline/content/edit.rhtml +1 -1
  102. data/app/views/skyline/content/editors/editable_list/new.js.erb +2 -0
  103. data/app/views/skyline/content/editors/joinable_list/_add.html.erb +17 -10
  104. data/app/views/skyline/content/editors/joinable_list/_list.html.erb +24 -8
  105. data/app/views/skyline/content/editors/joinable_list/cancel.js.erb +1 -0
  106. data/app/views/skyline/content/editors/joinable_list/index.js.erb +1 -0
  107. data/app/views/skyline/content/editors/joinable_list/new.js.erb +5 -0
  108. data/app/views/skyline/content/field.js.erb +2 -0
  109. data/app/views/skyline/content/import.js.erb +4 -0
  110. data/app/views/skyline/content/order.js.erb +6 -0
  111. data/app/views/skyline/content/presenters/_table.html.erb +1 -1
  112. data/app/views/skyline/content_items/_content_item.html.erb +2 -2
  113. data/app/views/skyline/content_items/new.js.erb +6 -0
  114. data/app/views/skyline/content_sections/_tags.html.erb +2 -2
  115. data/app/views/skyline/content_sections/new.js.erb +6 -0
  116. data/app/views/skyline/link_section_links/_form.html.erb +1 -1
  117. data/app/views/skyline/link_section_links/new.js.erb +4 -0
  118. data/app/views/skyline/locales/show.js.erb +3 -3
  119. data/app/views/skyline/media/dirs/_edit.html.erb +9 -7
  120. data/app/views/skyline/media/dirs/edit.js.erb +1 -0
  121. data/app/views/skyline/media/dirs/index.html.erb +16 -6
  122. data/app/views/skyline/media/dirs/index.js.erb +6 -0
  123. data/app/views/skyline/media/dirs/show.js.erb +5 -0
  124. data/app/views/skyline/media/files/_edit.html.erb +13 -11
  125. data/app/views/skyline/media/files/_index.html.erb +2 -2
  126. data/app/views/skyline/media/files/_new.html.erb +2 -2
  127. data/app/views/skyline/media/files/edit.js.erb +4 -0
  128. data/app/views/skyline/media/files/index.js.erb +4 -0
  129. data/app/views/skyline/media/files/update.js.erb +8 -0
  130. data/app/views/skyline/publications/_index.html.erb +2 -2
  131. data/app/views/skyline/publications/index.js.erb +9 -0
  132. data/app/views/skyline/sections/_content_collection_section.html.erb +6 -6
  133. data/app/views/skyline/sections/_content_item_section.html.erb +1 -1
  134. data/app/views/skyline/sections/_form.html.erb +4 -4
  135. data/app/views/skyline/sections/_link_section.html.erb +6 -1
  136. data/app/views/skyline/sections/_splitter_section.html.erb +1 -1
  137. data/app/views/skyline/sections/_wysiwyg_section.html.erb +2 -2
  138. data/app/views/skyline/sections/new.js.erb +12 -0
  139. data/app/views/skyline/settings/edit.html.erb +1 -1
  140. data/app/views/skyline/shared/_head.html.erb +3 -0
  141. data/app/views/skyline/shared/_header_area.html.erb +5 -5
  142. data/app/views/skyline/users/_edit.html.erb +1 -1
  143. data/app/views/skyline/users/_form.html.erb +1 -1
  144. data/app/views/skyline/users/_new.html.erb +1 -1
  145. data/app/views/skyline/users/create.js.erb +2 -0
  146. data/app/views/skyline/users/edit.js.erb +1 -0
  147. data/app/views/skyline/users/index.html.erb +21 -6
  148. data/app/views/skyline/users/new.js.erb +1 -0
  149. data/app/views/skyline/users/update.js.erb +2 -0
  150. data/config/initializers/dependencies.rb +1 -17
  151. data/config/initializers/gem_dependencies.rb +10 -0
  152. data/config/initializers/locales.rb +8 -1
  153. data/config/initializers/middlewares.rb +7 -3
  154. data/config/initializers/observers.rb +6 -4
  155. data/config/locales/en-US.yml +44 -34
  156. data/config/locales/nl-NL.yml +45 -33
  157. data/config/routes.rb +65 -74
  158. data/db/migrate/20090508145820_create_skyline_pages.rb +2 -2
  159. data/db/migrate/20090508145852_create_skyline_page_versions.rb +2 -2
  160. data/db/migrate/20090508150149_create_skyline_sections.rb +1 -1
  161. data/db/migrate/20090610142139_add_skyline_tags_taggable_type.rb +2 -2
  162. data/db/migrate/20090624154251_create_skyline_link_section_links.rb +1 -1
  163. data/db/migrate/20100120113953_remove_unused_articles_index.rb +1 -1
  164. data/db/migrate/20110816080626_add_skyline_test_article_data.rb +13 -0
  165. data/db/migrate/20111101092405_rename_indexes.rb +24 -0
  166. data/doc/INSTALL.md +54 -27
  167. data/doc/MIGRATION.md +27 -2
  168. data/lib/skyline.rb +2 -1
  169. data/lib/skyline/authentication/user.rb +80 -0
  170. data/lib/skyline/belongs_to_referable.rb +1 -1
  171. data/lib/skyline/cli/init.rb +14 -26
  172. data/lib/skyline/cli/init/templates/config/initializers/skyline_configuration.rb +0 -1
  173. data/lib/skyline/configuration.rb +74 -32
  174. data/lib/skyline/content/content.rb +7 -6
  175. data/lib/skyline/content/field_meta_data.rb +2 -2
  176. data/lib/skyline/content/stack.rb +1 -1
  177. data/lib/skyline/content_item_section_selectable.rb +4 -4
  178. data/lib/skyline/deprecated/version3_0_8.rb +2 -2
  179. data/lib/skyline/engine.rb +37 -0
  180. data/lib/skyline/form_builder.rb +8 -8
  181. data/lib/skyline/linkable.rb +28 -0
  182. data/lib/skyline/plugins/manager.rb +77 -0
  183. data/lib/skyline/plugins/plugin.rb +89 -0
  184. data/lib/skyline/rendering/helpers/renderer_helper.rb +1 -1
  185. data/lib/skyline/rendering/renderer.rb +27 -13
  186. data/lib/skyline/route_constraint.rb +15 -0
  187. data/lib/skyline/settings.rb +9 -7
  188. data/lib/skyline/taggable.rb +2 -2
  189. data/lib/skyline/version.rb +4 -4
  190. data/lib/skylinecms.rb +5 -3
  191. data/lib/tasks/database.rake +2 -2
  192. data/public/skyline/javascripts/src/application.js +5 -4
  193. data/public/skyline/javascripts/src/rails.js +165 -0
  194. data/public/skyline/javascripts/src/sections.js +6 -9
  195. data/public/skyline/javascripts/src/skyline.editor/src/plugins/autoresize/editor_plugin.js +72 -27
  196. data/public/skyline/javascripts/src/skyline.editor/src/plugins/skylineimage/dialog.js +13 -12
  197. data/public/skyline/javascripts/src/skyline.editor/src/plugins/skylinelink/dialog.js +7 -7
  198. data/public/skyline/javascripts/src/skyline.editor/src/skyline.editor.js +4 -3
  199. data/public/skyline/javascripts/src/skyline.editor/src/theme.js +101 -536
  200. data/public/skyline/javascripts/src/skyline.editor/test/multiple_editors.html +1 -0
  201. data/public/skyline/javascripts/src/skyline.editor/test/single.html +56 -0
  202. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/changelog.txt +1410 -1091
  203. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/examples/accessibility.html +101 -0
  204. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/examples/custom_formats.html +1 -1
  205. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/examples/full.html +12 -12
  206. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/examples/lists/media_list.js +5 -1
  207. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/examples/media/sample.flv +0 -0
  208. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/examples/menu.html +2 -1
  209. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/examples/skins.html +4 -4
  210. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/examples/word.html +3 -2
  211. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/langs/en.js +1 -170
  212. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js +1 -5
  213. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm +30 -29
  214. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js +1 -1
  215. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js +1 -1
  216. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm +34 -31
  217. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js +32 -13
  218. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js +1 -43
  219. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js +21 -17
  220. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js +1 -52
  221. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm +35 -30
  222. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js +1 -1
  223. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js +31 -9
  224. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js +1 -0
  225. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js +172 -0
  226. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js +1 -1
  227. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js +23 -5
  228. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js +1 -1
  229. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js +14 -5
  230. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js +1 -1
  231. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js +1 -1
  232. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js +1 -1
  233. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js +34 -21
  234. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm +15 -14
  235. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
  236. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif +0 -0
  237. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif +0 -0
  238. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif +0 -0
  239. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif +0 -0
  240. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif +0 -0
  241. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js +1 -20
  242. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js +1 -0
  243. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin_src.js +50 -0
  244. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css +3 -42
  245. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js +1 -1
  246. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js +315 -63
  247. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm +18 -330
  248. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js +199 -438
  249. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js +1 -85
  250. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js +1 -1
  251. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js +12 -4
  252. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm +2 -1
  253. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -1
  254. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js +80 -16
  255. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  256. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  257. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  258. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  259. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  260. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css +1 -1
  261. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js +1 -1
  262. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js +2 -0
  263. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js +1 -1
  264. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js +31 -28
  265. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js +1 -0
  266. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js +781 -0
  267. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/css/media.css +5 -4
  268. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js +1 -1
  269. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js +703 -295
  270. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/js/media.js +361 -602
  271. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js +1 -103
  272. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/media.htm +365 -285
  273. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf +0 -0
  274. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js +1 -1
  275. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js +4 -3
  276. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js +1 -1
  277. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js +7 -2
  278. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js +1 -1
  279. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js +1 -4
  280. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js +1 -1
  281. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js +148 -239
  282. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js +1 -5
  283. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js +1 -1
  284. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js +4 -0
  285. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js +18 -6
  286. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js +1 -16
  287. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm +17 -16
  288. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js +1 -1
  289. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js +55 -38
  290. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/style/js/props.js +3 -9
  291. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js +1 -63
  292. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/style/props.htm +515 -398
  293. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js +1 -1
  294. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js +122 -112
  295. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/cell.htm +16 -14
  296. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js +1 -1
  297. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js +1364 -1139
  298. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js +44 -11
  299. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/js/row.js +18 -18
  300. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/js/table.js +15 -14
  301. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js +1 -74
  302. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm +11 -11
  303. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/row.htm +12 -9
  304. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/table/table.htm +54 -53
  305. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/template/js/template.js +1 -1
  306. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js +1 -15
  307. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js +1 -1
  308. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js +1 -1
  309. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js +1 -1
  310. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js +36 -20
  311. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm +6 -5
  312. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm +6 -5
  313. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm +6 -5
  314. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm +5 -4
  315. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm +9 -8
  316. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js +1 -1
  317. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js +6 -6
  318. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm +11 -10
  319. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js +1 -16
  320. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js +2 -12
  321. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js +3 -5
  322. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js +4 -13
  323. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js +1 -32
  324. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/about.htm +3 -5
  325. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm +5 -5
  326. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm +39 -40
  327. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm +10 -9
  328. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js +1 -1
  329. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js +195 -54
  330. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/image.htm +51 -51
  331. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
  332. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif +0 -0
  333. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif +0 -0
  334. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif +0 -0
  335. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/{plugins/pagebreak → themes/advanced}/img/pagebreak.gif +0 -0
  336. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif +0 -0
  337. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/{plugins/media → themes/advanced}/img/realmedia.gif +0 -0
  338. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif +0 -0
  339. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/{plugins/media → themes/advanced}/img/trans.gif +0 -0
  340. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif +0 -0
  341. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/{plugins/media → themes/advanced}/img/windowsmedia.gif +0 -0
  342. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js +1 -0
  343. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js +5 -0
  344. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js +26 -6
  345. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js +108 -32
  346. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js +12 -6
  347. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js +4 -7
  348. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js +6 -12
  349. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js +1 -62
  350. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js +1 -51
  351. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/link.htm +27 -28
  352. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm +47 -0
  353. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css +14 -1
  354. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png +0 -0
  355. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif +0 -0
  356. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif +0 -0
  357. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css +5 -4
  358. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css +24 -0
  359. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +105 -0
  360. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css +102 -0
  361. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css +12 -0
  362. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +1 -0
  363. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  364. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  365. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  366. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui.css +8 -6
  367. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +1 -1
  368. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +1 -1
  369. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm +3 -3
  370. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js +1 -1
  371. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js +1 -2
  372. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif +0 -0
  373. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js +1 -11
  374. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/tiny_mce.js +1 -1
  375. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/tiny_mce_popup.js +1 -1
  376. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/tiny_mce_src.js +7838 -5579
  377. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/utils/editable_selects.js +1 -1
  378. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/utils/form_utils.js +14 -4
  379. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/utils/mctabs.js +95 -10
  380. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/utils/validate.js +35 -3
  381. data/public/skyline/javascripts/src/skyline/src/drag.js +10 -7
  382. data/public/skyline/javascripts/src/skyline/src/layout.js +13 -12
  383. data/public/skyline/javascripts/src/skyline/src/menubutton.js +1 -3
  384. data/public/skyline/javascripts/src/skyline/src/sortable.js +7 -5
  385. data/public/skyline/javascripts/src/skyline/src/tree.js +8 -4
  386. data/public/skyline/javascripts/src/skyline/test/sortable.html +73 -12
  387. data/public/skyline/javascripts/src/skyline/vendor/mootools/mootools-core.js +485 -2
  388. data/public/skyline/javascripts/src/skyline/vendor/mootools/mootools-more.js +130 -81
  389. data/public/skyline/stylesheets/general.css +23 -6
  390. data/skylinecms.gemspec +45 -0
  391. data/test/mocks/test_article.rb +11 -0
  392. data/test/mocks/test_section.rb +1 -1
  393. data/test/test_helper.rb +2 -1
  394. data/test/unit/article_test.rb +142 -0
  395. data/test/unit/inline_ref_test.rb +38 -16
  396. data/test/unit/test_content_object_test.rb +2 -1
  397. data/vendor/digitpaint/nested_attributes_positioning.rb +1 -1
  398. metadata +207 -487
  399. data/app/helpers/skyline/media_files_helper.rb +0 -7
  400. data/config/initializers/javascript_generator_methods.rb +0 -4
  401. data/config/initializers/rails_defaults.rb +0 -6
  402. data/doc/Bundler.md +0 -76
  403. data/lib/skyline/plugins_manager.rb +0 -150
  404. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/examples/translate.html +0 -84
  405. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/css/content.css +0 -6
  406. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/img/flash.gif +0 -0
  407. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/img/flv_player.swf +0 -0
  408. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/img/quicktime.gif +0 -0
  409. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/media/img/shockwave.gif +0 -0
  410. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/pagebreak/css/content.css +0 -1
  411. data/public/skyline/javascripts/src/skyline.editor/vendor/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/trans.gif +0 -0
  412. data/rails/init.rb +0 -32
  413. data/vendor/digitpaint/personify/README.md +0 -86
  414. data/vendor/digitpaint/personify/lib/parser/personify.rb +0 -838
  415. data/vendor/digitpaint/personify/lib/parser/personify.treetop +0 -126
  416. data/vendor/digitpaint/personify/lib/parser/personify_node_classes.rb +0 -7
  417. data/vendor/digitpaint/personify/lib/template.rb +0 -16
  418. data/vendor/digitpaint/personify/personify.rb +0 -7
  419. data/vendor/digitpaint/personify/script/generate_parser.rb +0 -6
  420. data/vendor/digitpaint/personify/test/fixtures/multiple_tags.txt +0 -8
  421. data/vendor/digitpaint/personify/test/parse_runner.rb +0 -25
  422. data/vendor/digitpaint/personify/test/parser_test.rb +0 -109
  423. data/vendor/digitpaint/personify/test/test_helper.rb +0 -16
  424. data/vendor/digitpaint/personify/vendor/treetop/.gitignore +0 -5
  425. data/vendor/digitpaint/personify/vendor/treetop/History.txt +0 -9
  426. data/vendor/digitpaint/personify/vendor/treetop/README +0 -164
  427. data/vendor/digitpaint/personify/vendor/treetop/Rakefile +0 -20
  428. data/vendor/digitpaint/personify/vendor/treetop/Treetop.tmbundle/Snippets/grammar ___ end.tmSnippet +0 -20
  429. data/vendor/digitpaint/personify/vendor/treetop/Treetop.tmbundle/Snippets/rule ___ end.tmSnippet +0 -18
  430. data/vendor/digitpaint/personify/vendor/treetop/Treetop.tmbundle/Syntaxes/Treetop Grammar.tmLanguage +0 -251
  431. data/vendor/digitpaint/personify/vendor/treetop/Treetop.tmbundle/info.plist +0 -10
  432. data/vendor/digitpaint/personify/vendor/treetop/bin/tt +0 -28
  433. data/vendor/digitpaint/personify/vendor/treetop/doc/contributing_and_planned_features.markdown +0 -103
  434. data/vendor/digitpaint/personify/vendor/treetop/doc/grammar_composition.markdown +0 -65
  435. data/vendor/digitpaint/personify/vendor/treetop/doc/index.markdown +0 -90
  436. data/vendor/digitpaint/personify/vendor/treetop/doc/pitfalls_and_advanced_techniques.markdown +0 -51
  437. data/vendor/digitpaint/personify/vendor/treetop/doc/semantic_interpretation.markdown +0 -189
  438. data/vendor/digitpaint/personify/vendor/treetop/doc/site.rb +0 -110
  439. data/vendor/digitpaint/personify/vendor/treetop/doc/sitegen.rb +0 -60
  440. data/vendor/digitpaint/personify/vendor/treetop/doc/syntactic_recognition.markdown +0 -100
  441. data/vendor/digitpaint/personify/vendor/treetop/doc/using_in_ruby.markdown +0 -21
  442. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/arithmetic.rb +0 -551
  443. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/arithmetic.treetop +0 -97
  444. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/arithmetic_node_classes.rb +0 -7
  445. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/arithmetic_test.rb +0 -54
  446. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/lambda_calculus +0 -0
  447. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/lambda_calculus.rb +0 -718
  448. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/lambda_calculus.treetop +0 -132
  449. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/lambda_calculus_node_classes.rb +0 -5
  450. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/lambda_calculus_test.rb +0 -89
  451. data/vendor/digitpaint/personify/vendor/treetop/examples/lambda_calculus/test_helper.rb +0 -18
  452. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop.rb +0 -11
  453. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/bootstrap_gen_1_metagrammar.rb +0 -45
  454. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler.rb +0 -6
  455. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/grammar_compiler.rb +0 -40
  456. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/lexical_address_space.rb +0 -17
  457. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/metagrammar.rb +0 -2955
  458. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/metagrammar.treetop +0 -404
  459. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes.rb +0 -19
  460. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/anything_symbol.rb +0 -20
  461. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/atomic_expression.rb +0 -14
  462. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/character_class.rb +0 -22
  463. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/choice.rb +0 -31
  464. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/declaration_sequence.rb +0 -24
  465. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/grammar.rb +0 -28
  466. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/inline_module.rb +0 -27
  467. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/nonterminal.rb +0 -13
  468. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/optional.rb +0 -19
  469. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/parenthesized_expression.rb +0 -9
  470. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/parsing_expression.rb +0 -138
  471. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/parsing_rule.rb +0 -55
  472. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/predicate.rb +0 -45
  473. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/repetition.rb +0 -55
  474. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/sequence.rb +0 -68
  475. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/terminal.rb +0 -20
  476. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/transient_prefix.rb +0 -9
  477. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/node_classes/treetop_file.rb +0 -9
  478. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/compiler/ruby_builder.rb +0 -113
  479. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/ruby_extensions.rb +0 -2
  480. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/ruby_extensions/string.rb +0 -42
  481. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/runtime.rb +0 -5
  482. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/runtime/compiled_parser.rb +0 -95
  483. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/runtime/interval_skip_list.rb +0 -4
  484. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/runtime/interval_skip_list/head_node.rb +0 -15
  485. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/runtime/interval_skip_list/interval_skip_list.rb +0 -200
  486. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/runtime/interval_skip_list/node.rb +0 -164
  487. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/runtime/syntax_node.rb +0 -72
  488. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/runtime/terminal_parse_failure.rb +0 -16
  489. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/runtime/terminal_syntax_node.rb +0 -17
  490. data/vendor/digitpaint/personify/vendor/treetop/lib/treetop/version.rb +0 -9
  491. data/vendor/digitpaint/personify/vendor/treetop/script/generate_metagrammar.rb +0 -14
  492. data/vendor/digitpaint/personify/vendor/treetop/script/svnadd +0 -11
  493. data/vendor/digitpaint/personify/vendor/treetop/script/svnrm +0 -11
  494. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/and_predicate_spec.rb +0 -36
  495. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/anything_symbol_spec.rb +0 -52
  496. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/character_class_spec.rb +0 -188
  497. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/choice_spec.rb +0 -80
  498. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/circular_compilation_spec.rb +0 -28
  499. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/failure_propagation_functional_spec.rb +0 -21
  500. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/grammar_compiler_spec.rb +0 -84
  501. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/grammar_spec.rb +0 -41
  502. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/nonterminal_symbol_spec.rb +0 -40
  503. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/not_predicate_spec.rb +0 -38
  504. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/one_or_more_spec.rb +0 -35
  505. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/optional_spec.rb +0 -37
  506. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/parenthesized_expression_spec.rb +0 -19
  507. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/parsing_rule_spec.rb +0 -32
  508. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/sequence_spec.rb +0 -115
  509. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/terminal_spec.rb +0 -81
  510. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/terminal_symbol_spec.rb +0 -37
  511. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/test_grammar.treetop +0 -7
  512. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/test_grammar.tt +0 -7
  513. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/test_grammar_do.treetop +0 -7
  514. data/vendor/digitpaint/personify/vendor/treetop/spec/compiler/zero_or_more_spec.rb +0 -56
  515. data/vendor/digitpaint/personify/vendor/treetop/spec/composition/a.treetop +0 -11
  516. data/vendor/digitpaint/personify/vendor/treetop/spec/composition/b.treetop +0 -11
  517. data/vendor/digitpaint/personify/vendor/treetop/spec/composition/c.treetop +0 -10
  518. data/vendor/digitpaint/personify/vendor/treetop/spec/composition/d.treetop +0 -10
  519. data/vendor/digitpaint/personify/vendor/treetop/spec/composition/grammar_composition_spec.rb +0 -26
  520. data/vendor/digitpaint/personify/vendor/treetop/spec/ruby_extensions/string_spec.rb +0 -32
  521. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/compiled_parser_spec.rb +0 -101
  522. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/interval_skip_list/delete_spec.rb +0 -147
  523. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/interval_skip_list/expire_range_spec.rb +0 -349
  524. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/interval_skip_list/insert_and_delete_node.rb +0 -385
  525. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/interval_skip_list/insert_spec.rb +0 -660
  526. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/interval_skip_list/interval_skip_list_spec.graffle +0 -6175
  527. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/interval_skip_list/interval_skip_list_spec.rb +0 -58
  528. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/interval_skip_list/palindromic_fixture.rb +0 -23
  529. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/interval_skip_list/palindromic_fixture_spec.rb +0 -164
  530. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/interval_skip_list/spec_helper.rb +0 -84
  531. data/vendor/digitpaint/personify/vendor/treetop/spec/runtime/syntax_node_spec.rb +0 -53
  532. data/vendor/digitpaint/personify/vendor/treetop/spec/spec_helper.rb +0 -106
  533. data/vendor/digitpaint/personify/vendor/treetop/spec/spec_suite.rb +0 -4
  534. data/vendor/digitpaint/personify/vendor/treetop/treetop.gemspec +0 -18
  535. data/vendor/mootools-on-rails/README +0 -54
  536. data/vendor/mootools-on-rails/Rakefile +0 -22
  537. data/vendor/mootools-on-rails/lib/mootools_on_rails.rb +0 -30
  538. data/vendor/mootools-on-rails/lib/mootools_on_rails/mootools_helper.rb +0 -510
  539. data/vendor/mootools-on-rails/test/mootools_helper_test.rb +0 -138
  540. data/vendor/mootools-on-rails/test/test_helper.rb +0 -5
@@ -18,6 +18,7 @@
18
18
  <script src="../../skyline/src/dialog.js" type="text/javascript" charset="utf-8"></script>
19
19
 
20
20
  <script src="../vendor/tinymce/jscripts/tiny_mce/tiny_mce_src.js?debug=1" type="text/javascript" charset="utf-8"></script>
21
+ <script src="../vendor/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js" type="text/javascript" charset="utf-8"></script>
21
22
  <script src="../vendor/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js" type="text/javascript" charset="utf-8"></script>
22
23
  <script src="../src/script_loader.js" type="text/javascript" charset="utf-8"></script>
23
24
 
@@ -0,0 +1,56 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7
+ <meta name="author" content="DigitPaint BV. http://www.digitpaint.nl" />
8
+
9
+ <title>Skyline v3</title>
10
+
11
+ <link href="undohtml.css?1195729478" media="screen" rel="stylesheet" type="text/css" />
12
+ <link href="../assets/ui.css?1195729478" media="screen" rel="stylesheet" type="text/css" />
13
+ <link href="/javascripts/skyline/assets/dialog/dialog.css?1195729478" media="screen" rel="stylesheet" type="text/css" />
14
+ <script src="../../skyline/vendor/mootools/mootools-core.js" type="text/javascript" charset="utf-8"></script>
15
+
16
+ <script src="../../skyline/src/skyline.js" type="text/javascript" charset="utf-8"></script>
17
+ <script src="../../skyline/src/utils.js" type="text/javascript" charset="utf-8"></script>
18
+ <script src="../../skyline/src/dialog.js" type="text/javascript" charset="utf-8"></script>
19
+
20
+ <script src="../vendor/tinymce/jscripts/tiny_mce/tiny_mce_src.js?debug=1" type="text/javascript" charset="utf-8"></script>
21
+ <script src="../vendor/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js" type="text/javascript" charset="utf-8"></script>
22
+ <script src="../vendor/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js" type="text/javascript" charset="utf-8"></script>
23
+ <script src="../src/script_loader.js" type="text/javascript" charset="utf-8"></script>
24
+
25
+ <script src="../src/skyline.editor.js" type="text/javascript" charset="utf-8"></script>
26
+
27
+ <script src="../src/theme.js" type="text/javascript" charset="utf-8"></script>
28
+ <script src="../src/ui/separator.js" type="text/javascript" charset="utf-8"></script>
29
+ <script src="../src/ui/toolbar.js" type="text/javascript" charset="utf-8"></script>
30
+ <script src="../src/plugins/autoresize/editor_plugin.js" type="text/javascript" charset="utf-8"></script>
31
+ <script src="../src/plugins/skylinewindows/editor_plugin.js" type="text/javascript" charset="utf-8"></script>
32
+ <script src="../src/plugins/skylineimage/editor_plugin.js" type="text/javascript" charset="utf-8"></script>
33
+ <script src="../src/plugins/skylineimage/dialog.js" type="text/javascript" charset="utf-8"></script>
34
+ <script src="../src/plugins/skylinelink/editor_plugin.js" type="text/javascript" charset="utf-8"></script>
35
+ <script src="../src/plugins/skylinelink/dialog.js" type="text/javascript" charset="utf-8"></script>
36
+ <script src="../src/plugins/skylinecode/editor_plugin.js" type="text/javascript" charset="utf-8"></script>
37
+ <script src="../src/plugins/skylinecode/dialog.js" type="text/javascript" charset="utf-8"></script>
38
+ <script src="../src/plugins/skylinecontextmenu/editor_plugin.js" type="text/javascript" charset="utf-8"></script>
39
+ <script src="../src/plugins/skylinetable/editor_plugin.js" type="text/javascript" charset="utf-8"></script>
40
+
41
+
42
+ </head>
43
+ <body>
44
+
45
+ <div id="mceToolbarContainer" class="defaultSkin" style="overflow: auto; zoom: 1 "></div>
46
+
47
+ <textarea id="area1" style="width: 300px; height: 5px" class="skylineEditor">
48
+ text piet <strong>puk</strong>
49
+ </textarea>
50
+
51
+
52
+ <script type="text/javascript" charset="utf-8">
53
+ e1 = new Skyline.Editor("area1", {language : "en"});
54
+ </script>
55
+ </body>
56
+ </html>
@@ -1,1091 +1,1410 @@
1
- Version 3.3.9 (2010-09-08)
2
- Fixed bug where inserting table rows into a table with subtable would produce an incorrect column count.
3
- Fixed bug where the selection of cells in a table with subtables could produce invalid selections.
4
- Fixed bug where the table plugin would produce a script error if you tried to move the caret before a first child table.
5
- Fixed bug where the keep_styles feature on IE would move the caret to an incorrect location at the end of list blocks.
6
- Fixed so attributes from legacy elements such as font gets retained when they get converted to spans.
7
- Fixed minor issue where the select boxes wouldn't be set the not set by default in the table dialog.
8
- Version 3.3.8 (2010-06-30)
9
- Fixed bug where WebKit would not move the caret to a correct position after a paste operation.
10
- Fixed bug where WebKit would produce a div wrapper element when pasting some contents.
11
- Fixed bug where the visual chars and nonbreaking plugin wouldn't show nbsp elements correctly.
12
- Fixed bug where the format states would be enabled even after the format was removed.
13
- Fixed bug where the delete key would move the caret to an incorrect position.
14
- Fixed bug where it wasn't possible to toggle of the current font size/family/style by clicking the title item.
15
- Fixed bug where the abbr element wouldn't get serialized correctly on IE6.
16
- Fixed so that the examples checks if they are executed from the local file system since that might not work properly.
17
- Version 3.3.7 (2010-06-10)
18
- Fixed bug where context menu would produce an error on IE if you right clicked twice and left clicked once.
19
- Fixed bug where resizing of the window on WebKit browsers in fullscreen mode wouldn't position the statusbar correctly.
20
- Fixed bug where IE would produce an error if the editor was empty and you where undoing to that initial level.
21
- Fixed bug where setting the table background on gecko would produce \" entities inside the url style property.
22
- Fixed bug where the button states wouldn't be updated correctly on IE if you placed the caret inside the new element.
23
- Fixed bug where undo levels wasn't properly added after applying styles or font sizes.
24
- Fixed bug where IE would throw an error if you used "select all" on empty elements and applied formatting to that.
25
- Fixed bug where IE could select one extra character when you did a bookmark call on a caret location.
26
- Fixed bug where IE could produce a script error on delete since it would sometimes produce an invalid DOM.
27
- Fixed bug where IE would return the wrong start element if the whole element was selected.
28
- Fixed bug where formatting states wasn't updated on IE if you pressed enter at the end of a block with formatting.
29
- Fixed bug where submenus for the context menu wasn't removed correctly when the editor was destroyed.
30
- Fixed bug where Gecko could select the wrong element after applying format to multiple elements.
31
- Fixed bug where Gecko would delete parts of the previous element if the selection range was a element selection.
32
- Fixed bug where Gecko would not merge paragraph elements correctly if they contained br elements.
33
- Fixed bug where the cleanup button could produce span artifacts if you pressed it twice in a row.
34
- Fixed bug where the fullpage plugin header/footer would be have it's header reseted to it's initial state on undo.
35
- Fixed bug where an empty paragraph would be collapsed if you performed a cleanup while having the caret inside it.
36
- Fixed a few memory leaks on IE especially with drop menus in listboxes and the spellchecker.
37
- Fixed so formats applied to the current caret gets merged to reduce the number of output elements.
38
- Added the latest version of Sizzle for the CSS selector logic to fix a compatibility issue with prototype.
39
- Version 3.3.6 (2010-05-20)
40
- Fixed bug where a editor.focus call could produce errors on IE in very specific scenarios.
41
- Fixed bug where Gecko would produce an error if you unformatted text inside an empty element.
42
- Fixed bug where IE would produce an error if the caret was placed before a table and you used the align buttons.
43
- Fixed bug where the font size drop down didn't display the a preview correctly.
44
- Fixed bug where the paste plugin wouldn't include all contents some times on WebKit browsers.
45
- Fixed bug where the plain text mode toggle wouldn't work properly on WebKit.
46
- Fixed bug where the editors statusbar would become invisible when you resized the window in fullscreen mode.
47
- Version 3.3.5.1 (2010-05-07)
48
- Fixed a critical bug with the fullscreen plugin. Produced error messages when the state was toggled on/off.
49
- Version 3.3.5 (2010-05-06)
50
- Added new merge_with_parents option to formats, enables the control of removal of elements with similar parents.
51
- Fixed so the default behavior for applying classes isn't a toggle state but the old behavior from before the 3.3 release.
52
- Fixed bug where selecting contents using double click on Gecko would produce errors when using removing format.
53
- Fixed bug where the IE DOM could get messed up when non valid contents was pasted into the editor.
54
- Fixed bug where merging selected table cells using the context menu didn't work as expected.
55
- Fixed bug where some nestled formatting would be applied incorrectly.
56
- Fixed bug with enter in list items when using the force_br_newlines mode on WebKit patch contributed by Ryan Koopmans.
57
- Fixed bug where undo/redo could produce js errors on some specific operations.
58
- Fixed bug where the theme_advanced_font_sizes didn't work as before 3.3 when complex settings where used.
59
- Fixed bug where the table plugin would copy cell/row id attributes when making new rows/cells.
60
- Version 3.3.4 (2010-04-27)
61
- Fixed bug where fullscreen plugin would add two editor instances to EditorManager collection.
62
- Fixed bug where it was difficult to enter text on non western languages such as Japanese on IE.
63
- Fixed bug where removing contents from nodes could result in an exception when using undo/redo.
64
- Fixed bug with selection of images inside layers or other resizable containers on IE.
65
- Fixed so editors isn't initialized on iPhone/iPad devices since they don't have caret support.
66
- Version 3.3.3 (2010-04-19)
67
- Added new script_loaded callback function setting for the jQuery plugin.
68
- Added various fixes and new rpc methods for the spellchecker plugin. Patch contributed by Michael Peters.
69
- Removed some unnecessary inline style information from some of the dialogs.
70
- Fixed some issues with the chaining for the TinyMCE jQuery plugin.
71
- Fixed so any extra arguments passed to patched jQuery functions gets passed through. Patch contributed by Lee Henson.
72
- Fixed so spellchecking/contextmenu can be toggled on/off if the browser has native spellchecker support.
73
- Fixed bug where some texts in the new paste plugin wasn't placed in language pack.
74
- Fixed bug where IE would produce an incorrect information message when cutting.
75
- Fixed bug where removing items using the xhtmlxtras plugin wouldn't work correctly.
76
- Fixed bug where setting table background images would add extra quotes on Gecko.
77
- Fixed bug where shortcut for bold/italic/underline wouldn't work properly on WebKit.
78
- Fixed bug where IE would produce an error message if only contents was an image tag and bold was used.
79
- Fixed bug where the caret would move if alignment was applied to empty block elements.
80
- Fixed bug where some shortcut key commands wouldn't apply formatting correctly.
81
- Version 3.3.2 (2010-03-25)
82
- Fixed bug where it was possible to scale the editor iframe smaller than the editor UI.
83
- Fixed bug where some of the resizing option didn't work with the new live resize.
84
- Fixed bug where the format listbox didn't show nestled formats correctly.
85
- Fixed bug where the native listboxes didn't work correctly.
86
- Fixed bug where font size selection in using the legacyoutput plugin would produce errors.
87
- Fixed so block and blockquote formats remove their matching element regardless of it's attributes.
88
- Version 3.3.1 (2010-03-18)
89
- Added new live resize feature, the editor contents is now visible while resizing.
90
- Fixed bug where some valid_element patterns would produce an unknown property error.
91
- Fixed bug where it wasn't possible to toggle off blockquotes.
92
- Fixed bug where an undo level wasn't produced when applying formatting using the styles dropdown.
93
- Fixed bug where IE 6/7 wouldn't perform caret formatting due to a focus/event bug in IE.
94
- Fixed bug where undo/redo wasn't restoring the previous selection correctly.
95
- Fixed bug where the caret would become invisible if you resized the editor in latest Gecko.
96
- Fixed bug where the class attribute wasn't completely removed in IE 6/7 when the removeClass function was used.
97
- Fixed so the matchNode method of the Formatter class returns the matched format rule.
98
- Fixed so it's possible to apply formatting to both blocks and as inline elements.
99
- Version 3.3 (2010-03-10)
100
- Fixed bug where backspace on a table on IE would produce an empty tbody and some JS exceptions.
101
- Fixed bug where some redundant children wasn't removed properly when applying inline styles to them.
102
- Fixed bug where Chrome would produce incorect dialog sizes if the inlinepopups plugin wasn't used.
103
- Fixed bug where spans with different classes would get merged if they where siblings to each other.
104
- Fixed bug where IE 8 would crash if you used the spellchecker.
105
- Fixed bug where Input Method for non western languages didn't work correctly.
106
- Fixed bug where the UI would render incorrectly in FF 3.6 on Mac due to a bug n their rendering engine.
107
- Fixed bug where WebKit wouldn't scroll down correctly if Shift+Enter was used. Patch contributed by Thomas Andersen.
108
- Version 3.3rc1 (2010-02-23)
109
- Fixed bug with new legacyoutput plugin not working correctly on it's own.
110
- Fixed bug some performance issues with removing text formats.
111
- Fixed bug where TinyMCE specific attributes wasn't removed properly by remove format.
112
- Fixed bug where it wasn't possible to align images within inline elements.
113
- Fixed bug where Ctrl+Delete/Backspace would produce an invalid argument exception on IE.
114
- Fixed bug where the search/replace logic could produce an infinite loop on IE for reverse searches.
115
- Fixed bug where cloning formats in cells didn't work properly on IE.
116
- Fixed bug where IE6 would produce a horizontal scroll bar.
117
- Fixed so remove jQuery method removes the TinyMCE instance as well as the specified textarea.
118
- Fixed so selected rows and cells gets updated using the row/cell properties dialogs.
119
- Version 3.3b2 (2010-02-04)
120
- Fixed bug where sometimes img elements would be removed by split method in DOMUtils.
121
- Fixed bug where merging of span elements could occur on bookmark nodes.
122
- Fixed bug where classes wasn't properly removed when removeformat was used on IE 6.
123
- Fixed bug where multiple calls to an tinyMCE.init with mode set to exact could produce the same unique ID.
124
- Fixed bug with the IE selection implementation when it was feeded an document range.
125
- Fixed bug where block elements formatting wasn't properly removed by removeformat on all browsers.
126
- Fixed bug where selection location was lost if you performed a manual cleanup.
127
- Fixed bug where removeformat wouldn't remove span elements within styled block elements.
128
- Fixed bug where an error would be thrown if you clicked on the separator lines in menus.
129
- Fixed bug with the jQuery plugin adding always adding a querystring value to other resources.
130
- Fixed bug where IE would produce an error message if you had an empty editor instance.
131
- Fixed bug where Shift+Enter didn't produce br elements on WebKit browsers.
132
- Fixed bug where a temporary marker element wasn't removed by the paste plugin.
133
- Fixed bug where inserting a table would produce two undo levels instead of one.
134
- Version 3.3b1 (2010-01-25)
135
- Added new text formatting engine. Fixes a lot of browser quirks and adds new possibilities.
136
- Added new advlist plugin that enables you to set the formats of list elements.
137
- Added new paste plugin logic that enables you to retain style information from Office.
138
- Added new autosave plugin logic that automatically saves contents in local storage.
139
- Added new valid_styles option. Adds the possibility to restrict styles and their order.
140
- Added new theme_advanced_runtime_fontsize option to display the runtime font size in font size select box.
141
- Added new jquery plugin version that handles the gzip compressor amongst other things. Contributed by Speednet.
142
- Added new $ function to tinymce namespace and editor instances for the jQuery build.
143
- Added the possibility to get editors by index as well as name in the tinyMCE.editors collection.
144
- Fixed so the contents inside the editor renders in standards mode by default.
145
- Fixed bug where it wasn't possible to move the caret on short documents running in standards mode on IE.
146
- Fixed bug where the decode method of the DOMUtils class could end up in an endless loop.
147
- Fixed bug where it was possible to bypass the paste cleanup on non IE browsers if you clicked while pasting.
148
- Fixed bug where some attributes wasn't serialized correctly on IE if wildcard attribute patters where used.
149
- Fixed bug where entity decoding was performed on strings that didn't have any valid entities in them.
150
- Fixed bugs with the insertNode method of the IE DOMRange implementation. Patch contributed by Scott McNaught.
151
- Rewrote the getBookmark/moveToBookmark selection logic to boost performance on larger documents.
152
- Rewrote the table plugin to include new cell selection logic and fixed various bugs and issues.
153
- Merged the tinyMCE, tinymce and tinymce.EditorManager into the same instance makes more sense.
154
- Removed browser setting since the browser support for TinyMCE is not far better than it was when that setting was introduced.
155
- Changed the mce_ attribute prefix to the more standard _mce_ prefix. This is similar to browser vendors prefixes.
156
- Optimized performance with named entities on Gecko. Regexp replace was executing very slowly probably due to a Gecko bug.
157
- Optimized performance of the IE specific selection/range implementation.
158
- Removed the safari plugin since we now replaced all text formatting logic to custom code.
159
- Version 3.2.7 (2009-09-22)
160
- Fixed bug where uppercase paragraphs could still produce an invalid DOM tree on IE.
161
- Fixed bug where split command didn't work on WebKit since the node serializer needs a real document to work with.
162
- Fixed bug where it was impossible in Gecko to place the caret before a table if it was the first one.
163
- Fixed bug where linking to urls like ../../ would produce an extra traling slash ../..//.
164
- Fixed bug where the template cdate functionality was using an old 2.x API call. Patch contributed by vectorjohn.
165
- Fixed bug where urls to the same site but different protocol would be converted when relative_urls where set to false. Patch contributed by Ted Rust.
166
- Fixed bug where the paste plugin would remove mceItem prefixed classes.
167
- Fixed bug where the paste plugin would sometimes add items in a reverse order on WebKit.
168
- Fixed bug where the paste buttons would present an error message on Gecko even if you changed user.js. Patch contributed by Todd (teeaykay).
169
- Fixed bug where Opera would crash if you had tables incorrectly placed inside paragraphs.
170
- Fixed bug where styles elements wasn't properly processed if you had bad input HTML.
171
- Fixed bug where style attributes wasn't properly forced into a specific format.
172
- Fixed bug and issues with boolean attributes like checked, nowrap etc.
173
- Fixed bug where input elements could override attributes on form elements.
174
- Fixed bug where script or style elements could get modified by the DOMUtils processHTML method.
175
- Fixed bug where the selected attribute could get lost when force root blocks logic got executed on IE. Patch contributed by Attila Mezei-Horvati.
176
- Fixed bug where getAttribs method didn't handle boolean attributes correctly on IE.
177
- Fixed so the paste from word dialog is presented if you paste content on an IE with to restrictive security settings.
178
- Fixed so the paste_strip_class_attributes option is set to none by default in the paste plugin.
179
- Removed default border=0 on tables for the default value of valid_elements.
180
- Version 3.2.6 (2009-08-19)
181
- Added new wordcount plugin, this will display the number of typed words as you write. Contributed by Andrew Ozz.
182
- Added new getNext and getPrev methods to DOM utils. These will return the first matching sibling.
183
- Fixed bug where it was impossible to place the caret after a table on Gecko. It will now add a paragraph after tables.
184
- Fixed bug where inline dialogs would fail if used in a window opened using a showModalDialog. Patch contributed by Derek Britt.
185
- Fixed bug where IE could sometimes render a unknown runtime error on invalid input HTML.
186
- Fixed bug where some incorrectly placed tables wouldn't be moved outside the paragraphs on IE.
187
- Fixed bug where uppercase script/style element wouldn't be handled correctly and converted to valid lowercase.
188
- Fixed bug where some WebKit versions on Mac OS X would produce issues with hidden select fields.
189
- Fixed bug where the media plugin would fail on WebKit since the node wasn't properly imported to the right document.
190
- Fixed bug where absolute URLs for the TinyMCE script using a base href element would cause loading problems in IE 6/7.
191
- Fixed bug where pasting using the paste plugin wasn't possible on IE with to restrictive security settings.
192
- Fixed bug where pasting of whitespace was impossible using the new custom paste method.
193
- Fixed bug where pasting on some WebKit browsers would not work if you pasted specific contents due to a WebKit bug.
194
- Fixed bug where doctypes with multiple lines would not be parsed correctly by the fullpage plugin. Patch contributed by Colin.
195
- Fixed bug where the autoresize plugin would break the fullscreen functionality.
196
- Fixed bug where tables would be chopped up running on IE using invalid contents and pasting paragraphs into a cell.
197
- Fixed bug where the each method of jQuery build didn't iterate styleSheets. We now use the TinyMCE API one instead.
198
- Fixed bug where auto switching to paragraphs after headers some times failed in Gecko.
199
- Fixed so all editor options gets passed to the Serializer class. Patch contributed by Jasper Mattsson.
200
- Fixed so script/style blocks isn't wrapped in paragraphs as other inline elements.
201
- Fixed so the XHR requests sends the X-Requested-With HTTP header.
202
- Fixed so the data url scheme is handled in the tinymce.util.URI class.
203
- Changed inline documentation to use moxiedoc style comments.
204
- Removed the compat2x plugin people should have upgraded to the 3.x API by now. 3.0 was released more then a year ago.
205
- Re-added Gecko specific message for users who doesn't understand the security concept regarding paste.
206
- Version 3.2.5 (2009-06-29)
207
- Added new jQuery plugin for the jQuery specific package. This enables you to more easily load and use TinyMCE.
208
- Added new autoresize plugin contributed by Peter Dekkers. This plugin will auto resize the editor to the size of the contents.
209
- Fixed so all packages have the same directory structure. Previous releases had a different structure for the production package.
210
- Fixed so the paste from word dialog forces the contents to be processed as word contents even if it's not.
211
- Fixed so the jQuery build adapter build works. It's currently only excluding Sizzle.
212
- Fixed so noscript element contents is retained during the editing process.
213
- Fixed bug where the getBookmark method would need a "simple" string input when the documented way is a boolean.
214
- Fixed bug where invalid contents could break the fix_table_elements logic.
215
- Fixed bug where Sizzle specific attributes would be serialized if the valid_elements was set to *[*].
216
- Fixed bug where IE would produce an error if you specified a relative content_css and opened the paste dialog.
217
- Fixed bug where pasting images on IE would produce broken images if they came from an external site.
218
- Fixed bug where memory was leaked if you add/remove controls dynamically. Some event handlers wasn't removed properly.
219
- Fixed bug where domain relaxing wasn't treated correctly if you added it after the TinyMCE script element.
220
- Fixed bug where the activeEditor wasn't set to null if the last editor instance was removed.
221
- Fixed bug where IE was leaking memory on the onbeforeunload event due to some recently introduced logic. Patch contributed by Options.
222
- Fixed bug where inserting tables in Safari 4 didn't work due to a new WebKit bug where some element names are reserved.
223
- Fixed bug where URLs having a :// value in the query string would make it absolute regardless of URL settings.
224
- Fixed the WebKit specific bug where DOM Ranges would fail if the node wasn't attached to something in a different way.
225
- Removed the auto_resize option and the resizeToContent method from the tinymce.Editor class. Use the new autoresize plugin instead.
226
- Version 3.2.4.1 (2009-05-25)
227
- Fixed bug where Gecko browsers would produce an extra space after for example strong when loaded from sub domains.
228
- Fixed bug where script elements would be removed if they where placed inside a paragraph element.
229
- Fixed bug where IE 8 would produce 1 item remaining when loading CSS files dynamically with an empty cache.
230
- Fixed bug where bound events would be removed from other editor instances if a specific one was removed.
231
- Fixed various bugs and issues with script and style elements inside the editor.
232
- Fixed so all script contents gets wrapped in CDATA sections so that they can be parsed using a XML parser.
233
- Fixed so it's impossible for elements marked as closed to have child nodes rendered in output.
234
- Version 3.2.4 (2009-05-21)
235
- Added new paste_remove_styles/paste_remove_styles_if_webkit option to paste plugin concept contributed by Hadrien Gardeur.
236
- Added new functionality to paste plugin contributed by Scott Eade aka monkeybrain.
237
- Added new paste_block_drop option to the paste plugin this is disabled by default and will block any drag/drop event.
238
- Added new bind/unbind methods to DOMUtils these works like Event.add/Event.remove but is easier to access.
239
- Added new paste_dialog_width/paste_dialog_height options to paste pluign. Enables you to change the dialog sizes.
240
- Fixed bug on IE 8 where it would sometimes produce a "1 item remaining" status message that would never finish.
241
- Fixed bug on Safari 4 beta that would produce DOM Range exceptions on the DOMUtils split method since the browser has a bug.
242
- Fixed bug where the paste plugin could accidentally think that some word sentences was supposed to be list elements.
243
- Fixed bug where paste plugin would produce one extra empty undo level on some browsers.
244
- Fixed bug where spans wasn't produced correctly on new line when the keep_styles option was enabled.
245
- Fixed bug where the caret would be placed at the beginning of contents in IE 8 if you selected colors from the color pickers.
246
- 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.
247
- Fixed so internal events for instances gets removed when the DOMUtils instance is removed.
248
- Fixed so preventDefault and stopPropagation methods can be used on the event object in all browsers.
249
- Version 3.2.3.1 (2009-05-05)
250
- Fixed bug where paragraphs containing form elements such as input or textarea would be removed.
251
- Fixed bug where some IE versions would produce a wrapper function for events attributes.
252
- Fixed bug where table cell contents could be removed if you pressed return/enter at the end of the cell contents.
253
- Fixed bug where the paste plugin would remove a extra character if the selection range was collapsed.
254
- Fixed bug where creating tables with % width wouldn't be handled correctly on WebKit browsers.
255
- Version 3.2.3 (2009-04-23)
256
- Added new paste plugin logic. This new version will autodetect Word contents and clean it up.
257
- Added a optional root element argument to getPos so you can tell it where to stop the calculation.
258
- Added new DOM ready logic to remove the usage of document.write. We now use basically the same method as jQuery.
259
- Fixed bug where WebKit browsers would fail when selecting all contents in the area using Ctrl+A.
260
- Fixed bug where IE would produce paragraphs with empty inline style elements.
261
- Fixed bug where WebKit browsers would fail when inserting tables with a non pixel width.
262
- Fixed bug where block elements could get a redundant br element at the end of the element.
263
- Fixed bug where the tabfocus plugin only worked with a single editor instance on page.
264
- Fixed bug where IE 8 was loosing caret position if the selection was collapsed and a menu was clicked.
265
- Fixed bug with application/xhtml+xml mode where menus wasn't working properly.
266
- Fixed bug where the onstop workaround fix for IE would produce errors in an ASP update panel.
267
- Fixed bug where the submit function override could produce errors if executed in the wrong scope.
268
- Fixed bug where the area element wasn't closed by a short ending.
269
- Fixed various number issues in the style plugins properties dialog. Contributed by datpaulchen.
270
- Fixed issues with size suffix values in the style plugin dialog.
271
- Fixed issue where hasDuplicate variable would leak out to the global space due to a bug in the Sizzle engine.
272
- Fixed issue where the paste event would fire a dialog warning on IE since we extracted the text contents.
273
- Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported.
274
- Version 3.2.2.3 (2009-03-26)
275
- Fixed regression bug with the getPos method, it would return invalid if the view port was to small.
276
- Version 3.2.2.2 (2009-03-25)
277
- Fixed so the DOMUtils getPos method can be used cross documents if needed.
278
- Fixed bug where undo/redo wasn't working correctly in Gecko browsers.
279
- Version 3.2.2.1 (2009-03-19)
280
- Added support for tel: URL prefixes. Even though this doesn't match any official RFC.
281
- Fixed so the select method of the Selection class selects the first best suitable contents.
282
- Fixed bug where the regexps for www. prefixes for link and advlink dialogs would match wwwX.
283
- Fixed bug where the preview dialog would fail to open if the content_css wasn't defined. Patch contributed by David Bildstr�m (ChronoZ).
284
- Fixed bug where editors wasn't converted in application/xhtml+xml mode due to an issue with Sizzle.
285
- Fixed bug where alignment would fail if multiple lines where selected.
286
- Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported.
287
- Version 3.2.2 (2009-03-05)
288
- Added new CSS selector engine. Sizzle the same one that jQuery and other libraries are using.
289
- Added new is and getParents methods to the DOMUtils class. These use the new Sizzle engine to select elements.
290
- Added new removeformat_selector option, enables you to specify a CSS selector pattern of elements to remove when using removeformat.
291
- Fixed so the getParent method can take CSS expressions when selecting it's parents.
292
- Added new ant based build process, includes a new javabased preprocessor and a yuicompressor ant task.
293
- Moved the tab_focus logic into a plugin called tabfocus, so the old tab_focus option has been removed from the core.
294
- Replaced the TinyMCE custom unit testing framework with Qunit and rewrote all tests to match the new logic.
295
- Moved the examples/testcases to a root directory called tests since it now includes slickspeed.
296
- Fixed bug where nbsp wasn't replaced correctly in ForceBlocks.js. Patch contributed by thorn.
297
- 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.
298
- Fixed bug where it was impossible to get out of a link at the end of a block element in Gecko.
299
- Fixed bug where the latest WebKit nightly would fail when changing font size and font family.
300
- Fixed bug where the latest WebKit nightly would fail when opening dialogs due to changes to the arguments object.
301
- Fixed bug where paragraphs wasn't added to elements positioned absolute using classes.
302
- Fixed bug where font size values with dot's like 1.4em would produce a class instead of the style value.
303
- Fixed bug where IE 8 would return an incorrect position for elements.
304
- Fixed bug where IE 8 would render colorpicker/filepicker icons incorrectly.
305
- Fixed bug where trailing slashes for directories in URLs would be removed.
306
- Fixed bug where autostart and other boolean values in the media dialog wouldn't be stored/parsed correctly.
307
- Fixed bug where the repaint call for the media plugin wouldn't be executed due to a typo in the source.
308
- Fixed bug where id attribute of object elements wasn't kept intact by the media plugin.
309
- Fixed bug where preview of embeded elements when the media_use_script option was used would fail.
310
- Fixed bug where inlinepopups could be rendered at an incorrect location on IE 6 while dragging.
311
- Fixed bug where the blocker shim could be placed at an incorrect location on IE 6.
312
- Fixed bug where the multiple and size attributes of select elements would produce incorrect values while running in IE.
313
- Fixed bug where IE would loose the caret position is you selected a color from the color drop down.
314
- Fixed bug where remove format wouldn't work on IE since it couldn't remove span elements that had style information.
315
- Fixed bug where Opera was removing links when removing formatting from selected contents.
316
- Fixed bug where paragraphs could be produced inside non positional elements styled with the CSS position value of static.
317
- Fixed bug where removeformat wouldn't work if you selected part of a span in IE.
318
- Fixed bug where media plugin didn't retain the style attribute on embed/object elements.
319
- Fixed bug where auto focus on empty editor instances could produce strange results if you inserted an image into it.
320
- Fixed bug where &nbsp; characters would be removed in FF when inserted with the mceInsertContent or selection.setContent methods.
321
- Fixed bug where warning message of missing paste support wasn't displayed on WebKit browsers.
322
- Fixed bug where anchor links could include other links. The selected range is now unlinked before adding news links to it.
323
- Fixed memory leak when TinyMCE was used with prototype. Patch contributed by James Ots.
324
- Fixed so the non documented fullpage_hide_in_source_view option for the fullpage plugin works again in the 3.x branch.
325
- 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.
326
- Fixed so the source view dialog sets a source_view state to the event object. Enables plugins to intercept the source view mode.
327
- Fixed various validation issues with the html dialogs and pages.
328
- Removed ask mode option since there is way better ways of doing this now. Use the add/remove control methods instead.
329
- Removed logic for compatibility with Safari 2.x, this browser is no longer supported since no one is using it.
330
- Removed the auto domain relaxing feature. If loading scripts cross sub domains it's better to specify the document.domain by hand.
331
- Version 3.2.1.1 (2008-11-27)
332
- Added new theme_advanced_default_background_color/theme_advanced_default_foreground_color options. Patch contributed by David Bildstr�m (ChronoZ).
333
- Fixed font style formatting compatibility issue with Adobe Air.
334
- Fixed so legacy font elements get converted into spans even if cleanup_on_startup isn't enabled.
335
- Fixed bug where pre elements could be incorrectly modified by an IE bug workaround. Patch contributed by hu vime.
336
- Fixed bug where input elements inside inlinepopups wasn't editable in Firefox 2.
337
- Fixed bug where the xhtmlxtras plugin wasn't replacing attribute values correctly.
338
- Fixed bug where menu buttons in skin variants would look strange due to IE 8 fixes.
339
- Fixed bug where WebKit browsers would on backspace take you back to the previous page if the editor was empty.
340
- Fixed bug where DOMUtils decode method wouldn't handle strings larger than 4096kb due to node chunking.
341
- Fixed bug where meta key wasn't handled as ctrl key on Mac OS X for custom keyboard short cuts.
342
- Fixed bug where init event would get fired twice on WebKit on Mac OS X.
343
- Version 3.2.1 (2008-11-04)
344
- Added support for custom icon image for drop menus. Use icon_src to set a custom image directly.
345
- Added new media_strict option to media plugin. Enables you to control if the flash embed is strict or not. Enabled by default.
346
- Fixed so the editors script files gets dynamically loaded without using XHR or eval.
347
- Fixed so the media plugin outputs valid XHTML object elements for Flash movies. Can be disabled with the media_strict option.
348
- Fixed so dynamic loading doesn't require eval calls on non IE browsers for better Air support.
349
- Fixed bug where the editor wasn't treated as empty if the remaining paragraph had attributes.
350
- Fixed bug where id's of elements was removed ones they got wrapped in paragraphs. Patch contributed by ChronoZ.
351
- Fixed bug where WebKit browsers where placing list elements inside paragraph elements.
352
- Fixed bug where inserting images or links would produce absolute urls on WebKit browsers.
353
- Fixed bug where values for checked, readonly, disabled and selected attributes was incorrect on IE.
354
- Fixed bug where positive values for checked, readonly, disabled and selected attributes wasn't forced to valid values.
355
- Fixed bug where selecting the first option in a native select box would produce an undefined error.
356
- Fixed bug where tabindex 32768 could be outputted on IE if element attributes where cloned.
357
- Fixed bug where the media dialogs preview window would display incorrect contents due to duplicate clsid prefixes.
358
- Fixed bug where non pixel or percent heights for textarea elements would produce errors on IE.
359
- Fixed bug where cdata sections in script elements wasn't handled correctly.
360
- Fixed bug where nowrap of table cells would produce a 65535 value output.
361
- Fixed bug where media plugin would produce an error if you selected the first item in the items list.
362
- Fixed bug where media plugin would modify links with the item _value in them.
363
- Fixed so table width/height is better forced if inline_styles is enabled. Patch contributed by daKmoR.
364
- Fixed css for IE 8 such as opacity and other rendering quirks.
365
- Version 3.2.0.2 (2008-10-02)
366
- Fixed bug where the SelectBox and NativeSelectBox wasn't updated correctly if undefined was passed to them.
367
- Fixed bug where the style dropdown wasn't correctly changed back to it's original state when element had no class.
368
- Fixed bug where multiple pending font styles wasn't handled correctly.
369
- Fixed so you can disable all auto css loading for dialogs by setting the popups_css option to false.
370
- Version 3.2.0.1 (2008-09-17)
371
- Fixed bug where font sizes and faces wouldn't be changed correctly when there was a parent with a different style.
372
- Fixed bug where adding fonts to the same selection would produce redundant spans.
373
- Version 3.2 (2008-09-11)
374
- Added new text style support, it will now use span elements internally instead of font elements.
375
- Added new improved support for the theme_advanced_font_sizes option, check the Wiki for details.
376
- Added new keep_style setting that maintains the text style on return/enter on non IE browsers, enabled by default.
377
- Added new onBeforeSetContent/onBeforeGetContent/onSetContent/onGetContent events to the Selection class.
378
- Added new selectByIndex method to ListBox class. This enables you to select list items by an index instead of a value.
379
- Added new possibility to the select method of the ListBox class. This can now have a selector function as it's value argument.
380
- Added new possibility to skip the loading of popups css by setting the feature popup_css to the value false.
381
- Added new possibility to skip translation of popups by setting the translate_i18n feature to false.
382
- 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.
383
- Added missing allowfullscreen and quality options for flash elements, this will now get correctly stored.
384
- Fixed bug where table cell dialog didn't close properly unless the accessibility_warnings option was set to false.
385
- Fixed bug where the modal dialog blocker element for inlinepopups wasn't placed at a correct location if the page had scroll.
386
- Fixed bug where non inline dialogs didn't close correctly if the inlinepopups plugin was used.
387
- Fixed bug where non inline dialogs could make the modal dialog blocker to work incorrectly.
388
- Fixed bug where style select wasn't populated correctly if you pressed the arrow. Patch by Hari Karam Singh.
389
- Fixed bug where toggling the fullscreen mode didn't restore scrollbars on IE when the editor was inside a frame. Patch by Jacob Barrett.
390
- Fixed bug where inserting flash contents using the template plugin didn't work correctly.
391
- Fixed bug where inserting flash contents using the selection.setContent or mceInsertContent command didn't work correctly.
392
- Fixed bug where IE would produce an exception if a comment started with -.
393
- Fixed bug where the blockquote button would wrap lists incorrectly on non IE browsers.
394
- Fixed bug where Opera would display BR elements in the element path.
395
- Fixed bug where xhtmlxtras didn't insert elements correctly on IE.
396
- Fixed bug where the buttons wasn't activated correctly in the xhtmlxtras plugin.
397
- Fixed bug where adding an object as the style attribute for the dom setAttribs method wouldn't work.
398
- Fixed bug where the background color would bleed out to parent container element in Gecko.
399
- 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).
400
- Fixed bug where event blocker element wasn't positioned correctly for the inlinepopups plugin.
401
- Fixed bug where pasting from Office 2007 would produce an odd comment in the contents.
402
- Fixed bug where the paste as plain text could remove an extra character. Patch contributed by Speednet.
403
- Fixed bug where some characters where missing for the paste_replace_list option. Patch contributed by Speednet.
404
- Fixed bug where removing non existing editor instances by the mceRemoveControl command would produce an error.
405
- Fixed bug where meta elements with the name description would produce errors in IE.
406
- Fixed bug where color and background colors wouldn't be updated properly.
407
- Fixed bug where the createMenuButton of tinymce.ControlManager didn't implement the last class argument.
408
- Fixed bug where the editor_css option was relative from the TinyMCE installation directory not the current page.
409
- Fixed bug where elements wouldn't be padded if the element contained bogus br elements. For example TD elements.
410
- Fixed bug where parsing of <body > in fullpage plugin would produce an error.
411
- Fixed bug where relative urls with just ./ would become an empty string.
412
- Fixed bug where outdent button would be disabled if inline_styles where set to false.
413
- Fixed bug where replace with an empty search string would produce an error on IE.
414
- Fixed bug where restoring the overflow state of the body in fullscreen plugin running on IE would produce vertical scrollbars.
415
- Fixed bug where pressing return/enter in list items would sometimes move the caret the to top of the content area in FF.
416
- Fixed bug where the style listbox wouldn't be updated correctly if you used the use_native_selects option.
417
- Fixed bug where WebKit browsers would produce a div element when ending list elements using return.
418
- Fixed so translation of popup contents only occurs if it's needed.
419
- Optimized the URI object in regards or converting absolute URIs to relative URIs.
420
- Version 3.1.1 (2008-08-18)
421
- Added new getSize method to DOMUtils it will return the dimensions only of an element.
422
- Added new alert/confirm methods to the tinyMCEPopup class to prevent focus problems and also to shorten method calls.
423
- Added new plugin_preview_inline option to preview plugin to enable/disable native/inline dialogs.
424
- Added new readonly option. If this is set the editor will only display the contents for the user.
425
- Added missing tabindex and accesskey to input elements in the default valid_elements setup.
426
- Updated firebug lite to 1.2, to enable it use the tiny_mce_dev.js?debug=1 on the development package.
427
- Fixed so the preview dialog in the preview plugin uses inline dialogs/popups.
428
- Fixed so CDATA sections remains intact through the serialization process of the DOM tree.
429
- Fixed various issues with the getAttrib command. It will now return more correct values.
430
- Fixed bug where the embed element wasn't properly parsed in the media plugin it now supports 3 formats.
431
- Fixed bug where the noshade attribute was serialized incorrectly on IE.
432
- Fixed bug where editing an existing link element didn't force it relative.
433
- Fixed bug where image link creation fails on Safari if the image is aligned.
434
- Fixed bug where it was possible to scroll the fullscreen mode in Opera 9.50.
435
- Fixed bug where removal of center image alignment would fail. Patch contributed by Andrew Ozz.
436
- Fixed bug where inlinedialogs didn't work properly if the doctype was incorrect in IE.
437
- Fixed bug where cross domain loading didn't work correctly in Opera 9.50.
438
- Fixed bug where breaking huge text blocks with return/enter key would scroll to end of block.
439
- Fixed bug where replace button kept inserting the replacement text even if there is no more matches.
440
- Fixed bug with fullpage plugin where value wasn't set correctly. Patch contributed by Pascal Chantelois.
441
- Fixed bug where the dom utils setAttrib method call could produce an exception if the input was null/false.
442
- Fixed bug where pressing backspace would sometimes remove one extra character in Gecko browsers.
443
- Fixed bug where the native confirm/alert boxes would move focus to parent document if fired in dialogs.
444
- Fixed bug where Opera 9.50 was telling you that the selection is collapsed even when it isn't.
445
- Fixed bug where mceInsertContent would break up existing elements in Opera and Gecko.
446
- Fixed bug where TinyMCE fails to detect some keyboard combos on Mac, contributed by MattyRob.
447
- Fixed bug where replace all didn't move the caret to beginning of text before searching.
448
- Fixed bug where the oninit callback wasn't executed correctly when the strict_loading_mode option was used, thanks goes to Nicholas Oxhoej.
449
- Fixed bug where a access denied exception was thrown if some other script specified document.domain before loading TinyMCE.
450
- Fixed so setting language to empty string will skip language loading if translations are made by some backend.
451
- Fixed so dialog_type is automatically modal if you use the inlinepopups plugin use dialog_type : "window" to re-enable the old behavior.
452
- Version 3.1.0.1 (2008-06-18)
453
- Fixed bug where the Opera line break fix didn't work correctly on Mac OS X and Unix.
454
- Fixed bug where IE was producing the default value the maxlength attribute of input elements.
455
- Version 3.1.0 (2008-06-17)
456
- Fixed bug where the paste as text didn't work correctly it encoded produced paragraphs and br elements.
457
- Fixed bug where embed element in XHTML style didn't work correctly in the media plugin.
458
- Fixed bug where style elements was forced empty in IE. The will now be wrapped in a comment just like script elements.
459
- Fixed bug where some script elements wrapped in CDATA could fail to be serialized correctly.
460
- Fixed bug where FF 3 produced -moz- internal styles in some style attributes.
461
- Fixed bug where query strings and external URLs didn't work correctly in style attributes.
462
- Fixed bug where shape attribute of area elements got serialized as rect regardless of it's initial value in IE 6.
463
- Fixed bug where selection of elements inside layers would fail in IE since focus was moved to the document body.
464
- Fixed bug where pressing enter/return in an editable select box would produce an __mce_add_custom__ class value.
465
- Fixed bug where changing font size of text placed inside a colored text chunk would remove the parent node.
466
- Fixed bug where Opera 9.5 final produced a strange line break behavior due to a workaround for previous Opera versions.
467
- Fixed bug where text/background color would produce a strange focus problem when you tried to click on the body in IE.
468
- Fixed issue where selecting the title of an listbox equals the old 2.x behavior of changing the value to an empty string.
469
- Fixed issue where it was common for the media plugin to break if the _value attribute wasn't added for the param element.
470
- Fixed issue where the wrong parent editor instance might be updated if you use fullscreen mode in an incorrect way.
471
- Fixed issue where Safari was producing a warning about the base element not being closed correctly.
472
- Removed redundant form element name matching from regexp in the DOMUtils class.
473
- Version 3.0.9 (2008-06-02)
474
- Added new contextmenu_offset_x/contextmenu_offset_y options for the contextmenu plugin.
475
- Added cite attribute to the default rule for the blockquote element.
476
- Added support for using arrow keys for selection of items in listboxes.
477
- Added support for using arrow keys for selection of items in dropmenus.
478
- Fixed bug where blockformat change on elements with BR inside them didn't change correctly on Firefox.
479
- Fixed bug where removing table rows inside thead or tfoot would remove the whole table if it was the last one.
480
- Fixed bug where XHR synchronous mode didn't execute the callback handlers synchronously.
481
- Fixed bug where setting border to 0 didn't add border: 0 to the style attribute when using the advimage dialog.
482
- 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.
483
- Fixed bug where the store/restore of a selection didn't work correctly in non IE browsers.
484
- Fixed bug where only the first element would be invalid for the invalid_elements option.
485
- Fixed bug where paste as plain text didn't encode the characters correctly when they where inserted.
486
- Fixed bug where HTML source window couldn't be maximized on Gecko when the maximizable feature was enabled.
487
- Fixed bug where color selection using the color picker could produce exception in IE.
488
- Fixed bug where font size changes could produce produce extra redundant elements.
489
- Fixed bug where IE could produce unknown runtime error if you replaced a image with another image from a separate frame.
490
- Fixed bug where the domLoaded state for the Event class wasn't set correctly if the editor was loaded dynamically using the gzip compressor.
491
- Fixed bug where handling of the base element for a page would produce incorrect urls. Based on a patch contributed by John LeSueur.
492
- Fixed bug where table constraint alert boxes was presented with an empty value and wasn't the skinned inline ones.
493
- 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.
494
- Fixed bug where encoding set to xml didn't work as expected. It now encodes the contents into XML entities.
495
- Fixed bug where numrows didn't work correctly for the merge cells dialog of the table plugin.
496
- Fixed bug where the onGetContent event was fired even when the no_events flag was set.
497
- Fixed bug where the preview panels for the advimage and the media plugin could overflow on Safari and FF 3.
498
- Fixed bug where the editing and removal of abbr elements using the xhtmlxtras plugin working correctly on IE.
499
- Fixed bug where save button in the save plugin didn't work correctly on IE.
500
- Fixed bug where dragging layers didn't work as expected since it would snap back to it's original location if you saved.
501
- Fixed bug where the description of the template plugin dialog wasn't updated correctly.
502
- Fixed bug where the values for frame and rules in the table dialogs where swapped.
503
- 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.
504
- Fixed bug where ask mode would lock the focused textarea if you pressed cancel in the confirm dialog on FF 3.
505
- Fixed bug where ask mode would produce contents for empty textareas if you reloaded the page.
506
- Fixed so the onGetContent event gets the full pass through object just like the other events.
507
- Fixed so attributes for block elements remains the same when you change format of a element.
508
- Version 3.0.8 (2008-04-30)
509
- Fixed bug where IE would produce an error if textareas without names where converted.
510
- Fixed bug where editor wasn't forced empty when there was only a single br or empty paragraph left.
511
- Fixed bug where IE would produce an warning message if object elements where produced in the media plugins preview running on https.
512
- Fixed bug where new addVer function didn't handle hash items correctly. Patch contributed by Mirek Burkon.
513
- Fixed bug where font_size_style_values option wasn't applied correctly to fonts inside the editor.
514
- Fixed bug where image selection could be lost if a image was edited using context menu on IE.
515
- Fixed bug where style values wasn't updated properly due to an invalid regexp.
516
- Fixed bug where IE 6 where displaying warning message about insecure items when inserting an image while using https. Patch contributed by Norifumi Sunaoka.
517
- Fixed bug where IE was producing an auto save message if you selected a color from the color split button.
518
- Fixed bug where backspace sometimes would move the caret to the end of the previous block in Gecko.
519
- Fixed bug where the rowlayout manager didn't work as described in the documentation.
520
- Fixed bug where the default options for the fullpage plugin wasn't applied correctly.
521
- Fixed bug where selection would jump one character if you applied a styles to a words in non IE browsers.
522
- Fixed bug where undo levels wasn't added correctly if you went back in undo history and added a new event.
523
- Fixed bug where font size dropdown didn't mark the selected size in IE.
524
- Fixed bug where the size of the editor was determined using clientWidth instead of offsetWidth.
525
- Fixed so the onchange event doesn't fire on the initial undo level, it will also fire when the editor is blurred.
526
- Fixed so the advhr plugin produces XHTML valid output instead of non standard attributes.
527
- Fixed so blockquote gets converted into [quote] in when the bbcode plugin is enabled.
528
- Fixed so theme_advanced_font_sizes can be named for example Font 1=1, Font 2=2 etc.
529
- Fixed so editor_selector/editor_deselector can be regexps. By default only strings are allowed not part regexps like before.
530
- Fixed so that the version suffix is optional. It still requires the build process so you need to export it manually.
531
- 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.
532
- Version 3.0.7 (2008-04-14)
533
- Added new version suffix to all internal GET requests to make sure that the users cache gets cleared correctly.
534
- Fixed issue with isDirty returning true event if it wasn't dirty on IE due to changes in tables during initialization.
535
- Fixed memory leak in IE where if a page was unloaded before all images on the page was loaded it would leak.
536
- Fixed bug in IE where underline and strikethrough could produce an exception error message.
537
- Fixed bug where inserting paragraphs in totally empty table cells would produce odd effects.
538
- Fixed bug where layer style data wasn't updated correctly due to some performance enhancements with the DOM serializer.
539
- Fixed bug where it would convert the wrong element if there was two elements with the same name and id on the page.
540
- Fixed bug where it was possible to add style information to the body element using the style plugin.
541
- Fixed bug where Gecko would add an extra undo level some times due to the blur event.
542
- Fixed bug where the underline icon would get active if the caret was inside a link element.
543
- Fixed bug where merging th cells not working correctly. Patch contributed by Andr� R.
544
- Fixed bug where forecolorpicker and backcolorpicker buttons where rendered incorrectly when the o2k7 skin was used.
545
- Fixed bug where comment couldn't contain -- since it's invalid markup. It will now at least not break on those invalid comments.
546
- 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.
547
- Fixed bug where entities wasn't encoded correctly inside pre elements since they where protected from whitespace removal.
548
- Fixed bug where color split buttons where rendered incorrectly on IE6 when using the non default theme.
549
- Fixed so caret is placed after links ones they are created, to improve usability of the editor.
550
- Fixed so you can select tables by clicking on it's borders in non IE browsers to normalize the behavior.
551
- 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.
552
- Fixed so buttons can be labeled, currently only works with the default skin, so it's kind of experimental. Patch contributed by Daniel Insley.
553
- Fixed so forecolorpicker and backcolorpicker remembers the last selected color. Patch contributed by Shane Tomlinson.
554
- Fixed so that you can only execute the mceAddEditor command once for the same instance name.
555
- Fixed so command functions added with addCommand can pass though the call to default handles if it returns true.
556
- Version 3.0.6.2 (2008-04-07)
557
- Fixed bug where empty tables couldn't be edited correctly on non IE browsers if they where loaded into the editor.
558
- Fixed bug where it was impossible to resize layers correctly in IE since it thought it was an image.
559
- Fixed bug where an editor instance was stealing focus in IE resulting in a scroll to the editor on page reloads.
560
- Fixed bug where Safari was crashing on Mac OS X if you closed dialogs using the Esc key.
561
- Version 3.0.6.1 (2008-04-04)
562
- Added support for the missing mceAddFrameControl command. The input for this command has changed so consult the Wiki.
563
- Fixed bug where sub menus for the drop menus would leave an empty element behind.
564
- Fixed memory leak in IE if the editor was placed in a frame or iframe.
565
- Version 3.0.6 (2008-04-03)
566
- Added elements to the default value of valid_elements option. It now contains all XHTML strict elements and a few transitional.
567
- Added more accessibility fixes, it's now possible to navigate and close list boxes and split button menus with the keyboard.
568
- Added missing getInfo method to the contextmenu and safari plugin, this caused problems for the Drupal module.
569
- Added new inlinepopups_zindex option to the inlinepopups plugin so that you can configure the default start z-index.
570
- Added new setControlType method to the tinymce.ControlManager class. This method enables you to override the default classes.
571
- 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.
572
- Fixed bug where attribute rules for the DOM Serializer couldn't contain - or _ characters in their names.
573
- Fixed bug where inlinepopups event blocker and modal dialog blocker elements produced vertical scrollbars.
574
- Fixed bug where there was a rendering issue with quirks mode in Safari moving the resize handle to an incorrect position.
575
- Fixed bug with forecolor/backcolor controls on IE. Sometimes elements positioned relative will generate display errors.
576
- Fixed bug where a p2 was leaking out in the global name space when you selected a color from the forecolor/backcolor controls.
577
- Fixed bug where empty paragraphs didn't work as expected in browsers other than IE.
578
- Fixed bug where the load method of the tinymce.dom.ScriptLoader didn't check if the file was already loaded.
579
- 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.
580
- Fixed bug where the theme_advanced_link_targets option didn't work correctly with the advanced themes link dialog. Patch contributed by Arnold B.
581
- Fixed bug where the style command would merge classes into empty span elements.
582
- Fixed bug where the style command would remove empty span elements outside the current selection.
583
- Fixed bug where the fix for the Safari backspace bug removed all editor contents if it was filled with empty paragraphs.
584
- Fixed bug where alert and confirm boxes opened by the inlinepopups plugin would produce an exception if domain relaxing was used.
585
- Fixed bug where Safari was adding style attributes to all elements when you paste them into the editor.
586
- Fixed bug where the spellchecker menus was visually incorrect since the space for the non existing icon was still there.
587
- Fixed bug where remove_linebreaks option didn't remove line breaks inside the text contents of a element.
588
- Fixed bug where Safari 3.1 was introducing _mc_tmp into paragraphs due to the new querySelectorAll and a TinyMCE specific workaround.
589
- 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.
590
- 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.
591
- Fixed bug where class attribute on some span elements was removed on cleanup.
592
- Fixed bug where resizing the editor in IE could produce an exception if the editor width/height got to be a negative value.
593
- Fixed bug where wmv files wouldn't play since the src param was used instead of the url param.
594
- Fixed bug where br elements would be added here and there in Gecko. Geckos internal _moz_dirty br elements where serialized as well.
595
- Fixed bug where editing named anchors would produce two anchors instead of one updated one.
596
- Fixed bug where arrow and function keys didn't work when an noneditable element was focused within the editor.
597
- Fixed bug where the dispatcher could produce an exception if the listener list was altered inside an event callback.
598
- 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.
599
- Fixed bug where TinyMCE would not convert textareas with the same name attribute value. It will now generate an unique id for those textareas.
600
- Fixed bug where backspace/delete key was deleting td elements inside tables while running on Gecko.
601
- Fixed bug where Firefox 3.0b4 and Opera 9.26 where scrolling to the top of document when pressing return/enter.
602
- Fixed bug where the template plugin wasn't just inserting the mceTmpl tagged element.
603
- Fixed bug where the alert method of the default WindowManager implementation didn't translate input language strings like the inlinepopups dialog does.
604
- Fixed bugs with the backspace behavior in Gecko. The caret was placed on incorrect locations in the DOM sometimes.
605
- Fixed so advimage dialog and table dialogs has support for editable select boxes for the class value.
606
- 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.
607
- Fixed so the paste_use_dialog option works again it's enabled by default but can be disabled on IE. Patch contributed by Speednet.
608
- Fixed so that the fullscreen editor is focused when switching fullscreen editing on.
609
- Fixed so it's possible to edit images and links inside tables using the context menu.
610
- Fixed so table dialogs and the advanced image dialog doesn't loose selection in IE if the dialogs where navigated/submitted with the keyboard.
611
- Fixed so the theme_advanced_blockformats options can have named items for example title 1=h1;title 2=h2.
612
- Fixed so it's possible to add a custom editor_css for the simple theme.
613
- Fixed quirks with directionality rtl, patch contributed by Andrew Ozz.
614
- Fixed so the inlinepopups default start zIndex is 300000.
615
- Fixed typo in media plugin Shockware is now replaced with Shockwave.
616
- Fixed psuedo memory leak in IE with the replaceChild method inside the DOMUtils.replace method.
617
- Fixed so memory is released when an editor instance is removed from page.
618
- Optimized the color split button menus so that they use less event handlers.
619
- Removed the util/mclayer.js file since it's no longer used by any of the TinyMCE dialogs and is considered deprecated.
620
- Version 3.0.5 (2008-03-12)
621
- Added new black skin variant to the o2k7 skin contributed by Stefan Moonen.
622
- Added new explode method to the tinymce core class. This does a split but removed whitespace it also defaults to a , delimiter.
623
- 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.
624
- Added new noscale option value for the scale select box for Flash in the media plugin.
625
- Fixed bug where the menu for the ColorSplitButton wasn't removed when the editor was removed.
626
- Fixed bug where font colors couldn't be edited correctly since the style of the element didn't get updated correctly.
627
- Fixed bug where class of elements would get lost when TinyMCE was fixing incorrect HTML markup.
628
- Fixed bug where table editing would produce double height values.
629
- Fixed bug where width style value wouldn't be removed if you switched width unit from cm/em to pixels or percent.
630
- Fixed bug where the search/replace input box wasn't auto focused like the other dialogs.
631
- Fixed bug where the old mceAddControl command would use the fullscreen settings next time it created an instance.
632
- Fixed bug where multiple lines where added to the target cell if you merged multiple empty cells.
633
- Fixed bug where drop down menus would be incorrectly positioned inside scrollable divs.
634
- Fixed bug where the separators of the silver skin variant didn't display correctly in IE 6.
635
- Fixed bug where createStyleSheet seems to load scripts at opposite order in some IE versions.
636
- Fixed bug where directionality could produce odd results for the UI and the dialogs.
637
- Fixed bug where the DOM serializer wouldn't serialize custom namespaced attributes in IE 6 using the *[*] valid elements rule.
638
- Fixed bug where table caption would be inserted after the thead element if you swapped a tr to be inside the thead.
639
- Fixed bug where the youtube detection logic for the media plugin was to generic.
640
- Fixed so the deprecated and undocumented theme_advanced_path_location set to none won't hide the whole statusbar.
641
- Fixed so most input lists can have whitespace in them they are now split using the new tinymce.explode method.
642
- Fixed so the popup_css and popup_css_add URLs are relative to where the current document is located.
643
- Fixed various bugs and quirks with the store/restore selection logic.
644
- Fixed so the editor starts in IE 8 standards mode but still that browser is very very buggy.
645
- Fixed so dialog_type set to modal will block the background and other inline windows and only give access to the front most window.
646
- Version 3.0.4.1 (2008-03-08)
647
- Fixed critical bug where it was impossible to edit images when inlinepopups where used due to lost selection in IE.
648
- Version 3.0.4 (2008-03-07)
649
- Added new option constrain_menus, this enables you to force view port constraints on all menus. Contributed by Shane Tomlinson.
650
- Fixed bug where table background wasn't visible inside the editor due to a default CSS rule overriding the style attribute.
651
- Fixed bug where links would get a null class added if no styles was used in IE.
652
- Fixed bug where spellchecker was auto focusing the editor in IE.
653
- Fixed bug where document.domain would produce invalid argument if the editor was loaded in IE6 over a network UNC path.
654
- Fixed bug where table height attribute was used, this is deprecated in XHTML so it now adds it as an style.
655
- Fixed bug where textareas with style values would produce error in IE.
656
- Fixed so the first element in each dialog is focused by default to enhance keyboard usage.
657
- Fixed so you can add a mceFocus class to elements to make it auto focused.
658
- Fixed so you can close dialogs using the esc key.
659
- Fixed so you can press return/enter to submit the action of each dialog.
660
- Fixed so tabbing inside an inline popups wont focus the resize anchor elements.
661
- Fixed so you can press ok in inline alert messages using the return/enter key.
662
- Fixed so textareas can be set to non px or % sizes for example em, cm, pt etc.
663
- Fixed so non pixel values can be used in width/height properties for tables.
664
- Fixed so the custom context menu can be disabled by holding down ctrl key while clicking.
665
- Fixed so the layout for the o2k7 skin looks better if you don't have separators before and after list boxes.
666
- Fixed so the sub classes get a copy of the super class constructor function to ease up type checking.
667
- 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).
668
- 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).
669
- Version 3.0.3 (2008-03-03)
670
- Fixed bug where an error about document.domain would be thrown if TinyMCE was loaded using a different port.
671
- Fixed bug where mode exact would convert textareas without id or name if the elements option was omitted.
672
- Fixed bug where the caret could be placed at an incorrect location when backspace was used in Gecko.
673
- Fixed bug where local file:// URLs where converted into absolute domain URLs.
674
- Fixed bug where an error was produced if a editor was removed inside an editor command.
675
- Fixed bug where force_p_newlines didn't effect the paste plugin correctly.
676
- Fixed bug where the paste plugin was producing an exception on IE if you pasted contents with middots.
677
- Fixed bug where delete key could produce exceptions in Gecko sometimes due to the fix for the table cell bug.
678
- 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.
679
- Fixed bug where TinyMCE wouldn't initialize properly if ActiveX controls was disabled in IE.
680
- Fixed bug where tables and other elements that had visual aids on them would produce an extra space after any custom class names.
681
- Fixed bug where search with an empty string would produce some odd "invalid pointer" error in IE.
682
- Fixed bug where elements like menus where placed at incorrect positions in Opera 9.26.
683
- 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.
684
- Fixed bug where focus of images could be lost in IE if you focused the accessibility confirm dialog in the advimage plugin.
685
- Fixed bug where nestled font elements would produce odd output like missing font elements.
686
- Fixed bug where text colors and styles got removed if invalid_elements included the font element.
687
- Fixed bug where text-decoration set to underline or line-through would remove other styles from span elements.
688
- Fixed bug where editor contents like \n\n would be incorrectly handled and processed as real line feeds.
689
- Fixed bug where incorrectly encoded urls with ampersands in them would be decoded incorrectly.
690
- Optimized the DOMUtils decode method to be a lot faster if the string doesn't have any entities to decode.
691
- Version 3.0.2.1 (2008-02-26)
692
- Fixed alert/confirm dialogs so they display correctly.
693
- Version 3.0.2 (2008-02-26)
694
- 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).
695
- 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).
696
- 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.
697
- Added new type parameter to the Editor.getParam function to reduce redundant logic for parsing hash tables.
698
- Added new isDone method to the ScriptLoaded class, this enables you to check if a script has been loaded or not.
699
- Added new resizeTo and resizeBy methods for the advanced theme. Can be called using tinyMCE.activeEditor.theme.resizeTo(w, h);
700
- Added new skin_variant option this can be used to extend existing skins with slight modifications like color.
701
- Added new variant of the o2k7 skin called "silver" based on a contribution made by Stefan Moonen.
702
- Fixed bug where the template plugin might produce errors if the template_mdate_classes wasn't configured.
703
- Fixed bug where the media plugin didn't convert the URLs for movies once they where inserted.
704
- Fixed bug where the style field for the advlink dialog didn't work correctly if you edited an existing link.
705
- 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.
706
- Fixed bug where initialization of multiple editors at the same time using the mceAddControl method would produce errors.
707
- Fixed bug where initialization of editors using mceAddControl command or new tinymce.Editor calls would fail during page load.
708
- Fixed bug where the check for domain relaxing could fail if the document.domain property was changed by another script.
709
- Fixed bug where textareas couldn't be named description or any other name that matches the meta elements in IE and Opera.
710
- Fixed bug where the element path would fail sometimes in IE due to "unknown runtime error" on innerHTML.
711
- Fixed bug where Safari would crash if you was hiding the editor before serializing the contents.
712
- Fixed bug where the editor wasn't scaled propertly in fullscreen mode using the old fullscreen_new_window option.
713
- Fixed bug where render method didn't load language packs in IE and Opera if you rendered an editor during page load.
714
- Fixed bug where resizing the browser window in fullscreen didn't resize the editor.
715
- Fixed bug where the blockquote command didn't move the caret inside the new empty blockquote if you used it on an empty document.
716
- 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.
717
- Fixed bug where restoration of selection at the beginning of an element could fail in Gecko.
718
- Fixed bug where caret restoration after a cleanup could place the it at an incorrect location.
719
- Fixed bug where delete key inside td elements would delete the cell in Gecko.
720
- Fixed so the blockquote button toggles individual lines. This behavior is a bit more like the old indentation behavior in the 2.x branch.
721
- Fixed so the dialog language packs only gets loaded the first time you open a dialog.
722
- Fixed so all classes in the whole UI is prefixed with "mce" to avoid collisions, use the skin converter to update your existing skins.
723
- Fixed so all classes in the inlinepopups logic is prefixed with "mce" to avoid collisions, use the skin converter to update your existing skins.
724
- Fixed so that the window in fullscreen mode can be resized when fullscreen_new_window option is enabled.
725
- Fixed so blockquote elements are formatted in the source output with an linefeed before and after it.
726
- Optimized the editor initialization by reducing the number of calls to getBookmark/moveToBookmark.
727
- Version 3.0.1 (2008-02-21)
728
- Added spellchecker plugin into the main package, but without any backend can be specified with the spellchecker_rpc_url option.
729
- Added src attribute for script elements to the default valid_elements option value.
730
- Added extra parameter to the class_filter callback it can now also filter out classes based on the whole CSS rule.
731
- Added support for domain relaxing, TinyMCE can now be loaded from an remote domain as long as they are on the same root domain.
732
- Added support for custom elements the new custom_elements option enables you to add non HTML elements to the editor.
733
- Added support for the W3C Selectors API that was added to latest nightly build of WebKit.
734
- Fixed bug where some object param element wasn't stored correctly using the media plugin.
735
- Fixed bug where Opera was scrolling to top of page is drop menus on list boxes where displayed.
736
- Fixed bug where IE6 was crashing if a format block was used on a container with anchor elements.
737
- Fixed bug where spans with font sizes wasn't handled correctly when editor was loading contents.
738
- Fixed bug where mode exact couldn't convert editors with name only. Id is no longer required but recommended.
739
- Fixed bug where the mceInsertRawHTML command produced an extra undo level.
740
- Fixed bug where the specific_textareas mode didn't work correctly this is the same thing as textareas now.
741
- Fixed bug where the values of input elements in the HTML page of dialogs pages where changed in IE.
742
- Fixed bug where fullscreen and fullpage plugins didn't work well together.
743
- Fixed bug where embed elements wasn't handled properly in the media plugin.
744
- Fixed bug where style information on span elements gets munged when fonts are converted to spans.
745
- Fixed bug where some entities in element attributes where encoded incorrectly in the latest WebKit build.
746
- Fixed bug where initialization would fail in IE if there where two input elements with the name submit in the form.
747
- Fixed bug where fullscreen mode didn't work correctly in IE when the fullscreen_new_window option was used.
748
- Fixed bug where invalid contents like an ul inside a p element would produce odd results in IE.
749
- Fixed bug where Opera 9.2x was placing the drop menus at incorrect locations if the editor was placed in a table.
750
- Fixed bug where Opera was producing odd results if enter/return was pressed while having forced_root_blocks disabled.
751
- Fixed bug where layer plugin was stealing focus in IE on initialization.
752
- Fixed bug where body attributes wasn't set properly in the fullpage plugin, fix contributed by Hiroaki Kawai.
753
- Fixed bug where insert image and insert link dialogs where producing an extra level in the undo history.
754
- Fixed bug where Gecko would produce an error if empty elements like <div></div> where inserted using mceInsertContent.
755
- Fixed bug where center alignment of images produced odd results inside table cells.
756
- Fixed bug where center alignment of images couldn't be toggled correctly.
757
- Fixed bug where alignment of images inside tables would produce double float style items in IE if the fix_table_elements option was enabled.
758
- Fixed bug where a variable called 'v' was polluting the global namespace. Objects tinymce and tinyMCE are the only ones allowed to be global.
759
- Fixed bug where insert table from context menu couldn't insert new tables inside existing tables.
760
- Fixed bug where Safari wouldn't produce br elements on enter when the force_br_newlines option was enabled.
761
- Fixed bug where switching cell type in table cell dialog would produce odd attributes in IE.
762
- Fixed bug where Gecko was outputting internal attributes if valid_elements where set to "*[*]".
763
- Fixed bug where the style plugin would produce non hex colors inside the dialog when running on Gecko.
764
- Fixed bug where an empty src value for insert image would remove the currently selected image if it wasn't and image element.
765
- Fixed bug where hidden input elements would break the logic for the tab_focus option.
766
- Fixed bug where save button wasn't working correctly in fullscreen mode.
767
- Fixed bug where the editor was forced to be placed in a form element if the save_onsavecallback option was used.
768
- Fixed bug where upper case param attributes wasn't parsed correctly in the media plugin.
769
- Fixed bug where render method of tinymce.Editor class would produce an exception if the strict_loading_mode option was omitted.
770
- Fixed bug where nodeChanged event could be fired while the editor was loading and there for produce an exception in FF.
771
- Fixed bug where no undo levels where added if the user created new table rows using the tab key on Gecko.
772
- Fixed bug where tables would be broken if you selected a different block format for contents withing an table cell.
773
- Fixed bug where the render method of the tinymce.Editor class didn't setup the tinymce.EditorManager.settings object correctly.
774
- Fixed bug where the advanced image dialog would go to the first tab if the alternative image was changed using the file browser link.
775
- Fixed bug where the forced_root_block option would produce BR elements inside empty blocks if the block wasn't a paragraph.
776
- Fixed bug where the forced_root_block doesn't work correctly on IE if the specified element was something else than paragraphs.
777
- Fixed bug where selection of images would get lost if user selected something from the context menu in IE.
778
- Fixed bug where the context menu plugin would pollute the global namespace with two variables p1 and p2.
779
- Fixed compatibility issue with Mootools, it is destroying document.getElementById on unload in IE. (Mantra: You don't own the internal objects).
780
- Fixed bugs where dialogs/tabs and other UI elements where rendered incorrectly in Firefox 3.
781
- Fixed so the auto CSS class importer is compatible with 2.x.
782
- Fixed so the editor UI and inlinedialogs works correctly with the YUI CSS reset package.
783
- Fixed so header and footer elements are forced to lower case when the fullpage plugin is used.
784
- Fixed so load prefixes "-" for plugins and themes isn't required if the plugin/theme was loaded by the ThemeManager/PluginManager.
785
- Fixed so the JSONRequest uses application/json content type to make Ruby on rails happy.
786
- 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".
787
- Fixed so the tiny_mce_dev.js uses XHR instead of document.write to load scripts to resolve an issue with Opera 9.50.
788
- 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.
789
- Version 3.0 (2008-01-30)
790
- Added map and area elements to the default valid_elements list and also some indentation rules.
791
- Fixed bug where empty paragraphs wasn't padded when loading contents.
792
- Fixed bug where the RowLayout manager didn't work at all.
793
- Fixed bug where style attribute data would get messed up in advimage dialog.
794
- Fixed bug where the table dialogs class select wasn't updated correctly.
795
- Fixed bug where elements would get extra whitespace around on insert when body was present in valid_elements.
796
- Fixed bug where coords attribute of the area element wasn't handled properly in IE.
797
- Fixed bug where Safari didn't produce BR elements on shift+return.
798
- Fixed bug where force blocks would cast odd invalid attribute exception in IE.
799
- Fixed bug where media plugin would produce extra whitespace before and after objects.
800
- Fixed bug where cleanup_callback could break the contents of the editor. But use the new event system instead of this option.
801
- Fixed bug where the tab_focus option didn't work between editor instanced. You can now tab between editors.
802
- Fixed bug where the load function of the ScriptLoader class didn't load single files without the load que as it was supposed to.
803
- Fixed bug where the execcommand_callback parameter order was incorrect. Recommendation use the new addCommand method.
804
- Fixed bug where range.select calls sometimes failed on some IE versions.
805
- Fixed bug where Safari was scrolling to top of document when enter/returned was pressed.
806
- Fixed bug where fullscreen_new_window option didn't work correctly.
807
- Fixed bug where the nonbreaking plugin inserted an space instead of an non breaking space the first time.
808
- Fixed bug where the visualization of non breaking spaces where visual in element path.
809
- Fixed so the focus is restored to the editor after inserting an custom character.
810
- Fixed so the isNotDirty state is set to false if a new undo level is added.
811
- Fixed so pointless style information for borders gets removed in IE.
812
- Fixed so the resize button has a se-resize cursor css value.
813
- Version 3.0rc2 (2008-01-18)
814
- Added new fix_nesting option to fix bug #1867292, this is disabled by default.
815
- Added new indentation option enables you to specify how much each indent/outdent call will add/remove.
816
- Added easier support for enabling/disabling icon columns on drop menues.
817
- Added new menu button control class. This control is very similar to the splitbutton but without any onclick action.
818
- Added support for previous tab focus (shift+tab). The tab_focus setting now takes two items next and previous element.
819
- Fixed bug where iframes inside the editor got removed in Firefox on initial load.
820
- Fixed bug where the CSS for abbr elements wasn't applied correctly in IE.
821
- Fixed bug where mceAddControl on element inside a hidden container produced errors.
822
- Fixed bug where closed anchors like <a /> produced strange results.
823
- Fixed bug where caret would jump to the top of the editor if enter was pressed a the end of a list.
824
- Fixed bug where remove editor failed if the editor wasn't properly initialized.
825
- Fixed bug where render call on for a non existing element produced exception.
826
- Fixed bug where parent window was hidden when the color picker was used in a non inlinepopups setup.
827
- Fixed bug where onchange event wasn't fired correctly on IE when color picker was used in dialogs.
828
- Fixed bug where save plugin could not save contents if the converted element wasn't an textarea.
829
- Fixed bug where events might be fired even after an editor instance was removed such as blur events.
830
- Fixed bug where an exception about undefined undo levels could be throwed sometimes.
831
- Fixed bug where the plugin_preview_pageurl option didn't work.
832
- Fixed bug where adding/removing an editor instance very fast could produce problems.
833
- Fixed bug where the link button was highlighted when an anchor element was selected.
834
- Fixed bug where the selected contents where removed if a new anchor element was added.
835
- Fixed bug where splitbuttons where rendered one pixel down in the default theme.
836
- Fixed bug where some buttons where placed at incorrect positions in the o2k7 theme.
837
- Fixed bug that made it impossible to visually disable a custom button that used an image instead of CSS sprites.
838
- 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.
839
- Fixed bug where an entities option with only 38,amp,60,lt,62,gt would fail in IE.
840
- Fixed bug where innerHTML sometimes generated unknown runtime error on IE.
841
- Fixed bug where content_css files wasn't loaded in the template preview iframe.
842
- Fixed bug where scroll position was incorrect when toggling fullscreen mode.
843
- Fixed bug where restoration of overflow didn't work correctly when disabling fullscreen mode in Opera.
844
- Fixed bug where drop menus where places at incorrect locations if the editor was placed in a scrollable container element.
845
- Fixed bug where hideMenu didn't hide sub menus correctly. It will now hide all menus recursively.
846
- Fixed so theme_advanced_path_location can be used in init options for compatibility reasons.
847
- Fixed so the drop menu colors matches the rest of o2k7 theme.
848
- Fixed so the preview example.html file is updated to the new 3.x API.
849
- Fixed so the margins are the same by default inside the editable area between IE and other browsers.
850
- Fixed so editor contents gets stored before it the onSubmit event is fired.
851
- Version 3.0rc1 (2008-01-08)
852
- Added new classes for toolbar rows in advanced theme mceToolbarRow1..n enabled you to change appearance of individual rows.
853
- Added auto detection for the strict_loading_mode option when running in application/xhtml+xml mode on Gecko.
854
- Optimized the HTML serializer by bundling some post process methods together.
855
- Fixed so that the toolbars have unique IDs, enables you to alter the toolbars using the ControlManager and the DOM.
856
- Fixed bug where delta values for dialog sizes in language packs didn't work correctly due to missing string to number casting.
857
- Fixed bug where paragraph generation logic didn't handle hr or table elements correctly if they where the only element.
858
- Fixed bug where some elements got extra linebreaks added after or before it in HTML output.
859
- Fixed bug where it was hard to modify existing style data on table rows and table cells.
860
- Fixed bug where the dom.getRect method didn't handle non pixel values correctly.
861
- Fixed bug where strikethrough and underline couldn't be toggled on existing span elements.
862
- Fixed bug where the postprocessor searched for nsbp instead of nbsp entities.
863
- Fixed bug where it was impossible to edit links that had child elements within them.
864
- Fixed bug where it was possible to click on the parent item of a submenu.
865
- Fixed bug where mouseover/mouseout images couldn't be removed in advimage dialog.
866
- Fixed bug where drop menus didn't work when running in application/xhtml+xml mode.
867
- Fixed bug where Opera added doctype to output in application/xhtml+xml mode.
868
- Fixed bug where some DOM methods didn't work correctly in the application/xhtml+xml mode.
869
- Fixed bug where the inlinepopups didn't work correctly in the application/xhtml+xml mode.
870
- Fixed bug where the ColorSplitButton didn't display correctly in the application/xhtml+xml mode.
871
- Fixed bug where the UI layout was incorrect on Gecko browsers when running in application/xhtml+xml mode.
872
- Fixed bug where the word paste plugin produced exception while running in application/xhtml+xml mode.
873
- Fixed bug where there wasn't any hidden input element generated for divs while running in application/xhtml+xml mode.
874
- Fixed bug where indentation of script/style/pre elements where incorrect.
875
- Fixed bug where script element contents was removed in IE.
876
- Fixed bug where script element contents got entity encoded.
877
- Fixed bug where you couldn't edit existing element styles using the styles plugin.
878
- Fixed bug where styles wasn't updated properly sometimes due to an performance enhancement.
879
- Fixed bug where font sizes couldn't be changed using the style plugin.
880
- Fixed bug where an error was produced in Gecko browsers when switching back from fullscreen mode.
881
- Fixed bug where Opera was producing br elements after elements like h3.
882
- Fixed bug where TinyMCE couldn't be loaded on a page using - characters in it's URL.
883
- Fixed bug where the editor container element was forced to have a specific name.
884
- Fixed bug with force_br_newlines option on Firefox, even though it should never be used (Read FAQ).
885
- Fixed bug where onclick event had an return true; prefix added when creating an popup.
886
- Fixed bug where the theme_advanced_statusbar_location option couldn't handle the value "none".
887
- Fixed issue with URLs with multiple at characters for example an Zope URI.
888
- Fixed so simple and advanced themes doesn't collide.
889
- Fixed so a elements gets removed when the href field is left empty, the href attribute is required in a link after all.
890
- Fixed so img elements gets removed when the src field is left empty, the src attribute is required for all images after all.
891
- Removed the indent and encode methods from the tinymce.dom.Serializer class due to performance enhancement and reduction of the API size.
892
- Version 3.0b3 (2007-12-14)
893
- Added new getElement method to Editor class, returns the element that was replaced with the editor instance.
894
- Added new unavailable prefix for disabled controls for accessibility reasons.
895
- Fixed bug where regexp patterns couldn't be used for the editor_selector/editor_deselector options.
896
- Fixed bug where the DOM wasn't properly initialized before the onInit event was executed in popups.
897
- Fixed bug where font sizes where reduced by font size actions on previous spans in Safari.
898
- Fixed bug where HR elements got places at the wrong location in IE.
899
- Fixed bug where align/justify didn't work correctly on multiple paragraphs.
900
- Fixed bug with missing translation for cell scope settings.
901
- Fixed bug where selection/caret position was lost on some table actions.
902
- Fixed bug where editor instances couldn't be added to hidden div elements.
903
- Fixed bug where list elements in Safari would get an odd ID attribute.
904
- Fixed bug where IE would return <html/> when the editor was completely empty.
905
- Fixed bug where accessibility title attribute for access keys wasn't setup properly.
906
- Fixed bug where forecolorpicker and backcolorpicker control names wasn't working.
907
- Fixed bug where inserting template content didn't work in Safari due to selection exception.
908
- Fixed bug where absolute URLs to remote hosts couldn't be used for background images.
909
- Fixed bug where mysterious span elements where produced in Safari when injecting HTML contents.
910
- Fixed bug where the media plugin didn't work correctly on the latest Opera 9.24.
911
- Fixed bug where indentation of HTML output wasn't applied to all block elements.
912
- Fixed bug where Safari was production DOM exception if you pressed enter in an empty editor.
913
- Fixed bug where media plugin didn't parse script tags correctly patch contributed by Mathieu Campagna.
914
- Fixed bug where the drop menus of list boxes like blockformat could produce scrolling of the page.
915
- Fixed bug where the drop menus where placed at an incorrect location if TinyMCE was placed in a scrollable div.
916
- Fixed bug where submit buttons couldn't be named submit, it's not recommended to name submit buttons submit anyway.
917
- Fixed bug where the stylelistbox produced an exception if there was only one class in the list box.
918
- Fixed bug where the stylelistbox wasn't updated correctly when the current class was removed.
919
- Fixed bug where the formatblock command sometimes removed the body element.
920
- Fixed bug where fullscreen switching in IE sometimes produced an exception when the spellchecker plugin was enabled.
921
- Fixed issue where FF produced an empty paragraph when the editor was completely empty.
922
- Fixed issue with size of image dialog in the advanced theme.
923
- Fixed issues with the bbcode plugin it now also handles spans and the [font] rule.
924
- Fixed so the style compression feature is a bit smarter to resolve issues with Opera.
925
- Reintroduced the remove_linebreaks option, this is enabled by default.
926
- Version 3.0b2 (2007-11-29)
927
- Added type and compact attributes to the default valid_elements list for the ul and ol elements.
928
- Added missing accessibility support to native list boxes in both the toolbar and dialogs.
929
- Added missing access key for the element path for accessibility reasons.
930
- Fixed support for loading themes from external URLs.
931
- Fixed bug where setOuterHTML didn't work correctly when multiple elements where passed to it.
932
- Fixed bug with visualchars plugin was moving elements around in the DOM.
933
- Fixed bug with DIV elements that got converted into editors on IE.
934
- Fixed bug with paste plugin using the old event API.
935
- Fixed bug where the spellchecker was removing the word when it was ignored.
936
- Fixed bug where fullscreen wasn't working properly.
937
- Fixed bug where the base href element and attribute was ignored.
938
- Fixed bug where redo function didn't work in IE.
939
- Fixed bug where content_css didn't work as previous 2.x branch.
940
- Fixed bug where preview dialog was throwing errors if the content_css wasn't defined.
941
- Fixed bug where the theme_advanced_path option didn't work like the 2.x branch.
942
- Fixed bug where the theme_advanced_statusbar_location was called theme_advanced_status_location.
943
- Fixed bug where the strict_loading_mode option didn't work if you created editors dynamically without using the EditorManager.
944
- Fixed bug where some language values wasn't translated such as insert and update in dialogs.
945
- Fixed bug where some image attributes wasn't stored correctly when inserting an image.
946
- Fixed bug where fullscreen mode didn't restore scrollbars when disabled.
947
- Fixed bug where there was no visual representation for tab focus in toolbars on IE.
948
- Fixed bug where HR elements wasn't treated as block elements so forced_root_block would fail on these.
949
- Fixed bug where autosave presented warning message even when the form was submitted normally.
950
- Fixed typo of openBrower it's now openBrowser in form_utils.js.
951
- Fixed various HTML problems like missing TD elements and duplicated doctypes.
952
- Fixed default values for theme_advanced_resize_horizontal, theme_advanced_resizing_use_cookie to be 2.x compatible.
953
- Moved spellchecker JS files into the development package.
954
- Removed support for theme_advanced_path_location since the theme_advanced_statusbar_location is the correct option name.
955
- Version 3.0b1 (2007-11-21)
956
- 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.
957
- Added new addQueryValueHandler method to the tinymce.Editor class.
958
- Added new class_filter option, this enables you to specify a function that can filter out CSS classes for the styles list box.
959
- Added support form [url=url]title[/url] to the bbcode plugin.
960
- Renamed the addCommandQueryState method in the tinymce.Editor class to addQueryStateHandler.
961
- Renamed loadQue to loadQueue, to correct spelling.
962
- Removed the createDOM method from the window manager and replace it with a createInstance method.
963
- Removed the add to beginning of class attribute parameter of the DOMUtils.addClass method.
964
- Fixed bug with the forced_root_block option, didn't work correctly with multiple inline elements.
965
- Fixed bug where image dialogs replaced the current image element with a new one even when it was updated.
966
- Fixed bug where the submit trigger wasn't executed when divs where converted into editor instances.
967
- Fixed bug where div elements that got converted into editors didn't get a hidden input element generated for them.
968
- Fixed bug where the the media_use_script option for the media plugin wasn't working correctly.
969
- Fixed bug where the font size and font family listboxes wasn't updated correctly on Safari.
970
- Fixed bug where the height of the fieldset in default image dialog for the advanced theme was to small.
971
- Fixed bug where the font sizes behaved incorrectly after a cleanup on Safari.
972
- Fixed bug where formatblock didn't work correctly in Safari on some elements.
973
- Fixed bug where template plugin didn't insert content correctly unless some options where specified.
974
- Fixed bug where charmap on Safari produced scrollbars.
975
- Fixed bug where there was white artifacts in some dialogs due to missing background color.
976
- Fixed bug where port was added to all external URLs if the editor was loaded from a custom port.
977
- Fixed bug where the context menus got duplicated on Safari 3.0.4 on Mac OS X.
978
- Fixed bug where dialogs like paste from word was huge on Firefox.
979
- Fixed bug with media plugin not working with windows media objects.
980
- Fixed bug where a forever loop was created if multiple instances where submitted using form.submit.
981
- Fixed bug with editing a table produce error in IE when inlinepopups where used.
982
- Fixed bug where the style plugin generated ugly looking style information in IE.
983
- Fixed bug where the inline dialogs that got opened while in fullscreen mode wasn't visible.
984
- Fixed bug where it was difficult to place the caret inside the word paste dialog.
985
- Fixed bug where Opera produced strange border in the word paste dialog.
986
- Fixed bug where viewport constraints could move a inlinepopup to a negative x, y position if the viewport was to small.
987
- Fixed bug where template plugin was producing an error due to a deprecated API call.
988
- Fixed bug where drag drop of images failed in Gecko if a document_base_url was specified.
989
- Fixed bug where Firefox 3 failed to apply block formats like H1-H6 it still breaks on DIVs this has been reported to bugzilla.
990
- Fixed bug where IE was producing a warning dialog about non secure items when running TinyMCE over HTTPS.
991
- Fixed bug where the onbeforeunload event was triggered when menus or dialogs where opened.
992
- Fixed bug where the fullscreen mode of the HTML view source box threw an error.
993
- Fixed bug where the mceFocus command didn't work correctly.
994
- Fixed bug where the selection could get lost in IE using inlinepopups.
995
- Fixed so the body of the editor area has the mceContentBody class just like the 2.x branch.
996
- Fixed so the media icon gets active when a media element is selected.
997
- Version 3.0a3 (2007-11-13)
998
- Added new experimental jQuery and Prototype framework adapters to the development package.
999
- Added new translation.html file for the development package. Helps with the internationalization of TinyMCE.
1000
- Added new setup callback option, use this callback to add events to TinyMCE. This method is recommended over the old callbacks.
1001
- Added new API documetation to all classes, functions, events, properties to the Wiki with examples etc.
1002
- Added new init method to all plugins and themes, since it's shorter to write and it mimics interface capable languages better.
1003
- Fixed various CSS issues in the default skin such as alignment of split buttons and separators.
1004
- Fixed issues with mod_security. It didn't like that a content type of text/javascript was forced in a XHR.
1005
- Fixed all events so that they now pass the sender object as it's first argument.
1006
- Fixed some DOM methods so they now can take an array as input.
1007
- Fixed so addButton and the methods of the ControlManager uses less arguments and it now uses a settings object instead.
1008
- Fixed various issues with the tinymce.util.URI class.
1009
- Fixed bug in IE and Safari and the on demand gzip loading feature.
1010
- Fixed bug with moving inline windows sometimes failed in IE6.
1011
- Fixed bug where save_callback function wasn't executed at all.
1012
- Fixed bug where inlinepopups produces scrollbars if windows where moved to the corners of the browser.
1013
- Fixed bug where view HTML source failed when inserting a embedded media object.
1014
- Fixed bug where the listbox menus didn't display correctly on IE6.
1015
- Fixed bug where undo level wasn't added when editor was blurred.
1016
- Fixed bug where spellchecker wasn't disabled when fullscreen mode was enabled.
1017
- Fixed bug where Firefox could crash some times when the user switched to fullscreen mode.
1018
- Fixed bug where tinymce.ui.DropMenu didn't remove all item data when an item was removed from the menu.
1019
- Fixed bug where anchor list in advlink dialog wasn't populated correctly in Safari.
1020
- Fixed bug where it wasn't possible to edit tables in IE when inlinepopups was enabled.
1021
- Fixed bug where it wasn't possible to change the table width of an existing table.
1022
- Fixed bug where xhtmlxtras like abbr didn't work correctly on IE.
1023
- Fixed bug where IE6 had some graphics rendering issues with the inlinepopups.
1024
- Fixed bug where inlinepopup windows where moved incorrectly when they were boundary checked for min width.
1025
- Fixed bug where textareas without id or name couldn't be converted into editor instances.
1026
- Fixed bug where TinyMCE was stealing element focus on IE.
1027
- Fixed bug where the getParam method didn't handle false values correctly.
1028
- Fixed bug where inlinepopups was clipped by other TinyMCE instances or relative elements in IE.
1029
- Fixed bug where the contextmenu was clipped by other TinyMCE instances or relative elements in IE.
1030
- Fixed bug where listbox menus was clipped by other TinyMCE instances or relative elements in IE.
1031
- Fixed bug where listboxes wasn't updated correctly when the a value wasn't found by select.
1032
- Fixed various CSS issues that produced odd rendering bugs in IE.
1033
- Fixed issues with tinymce.ui.DropMenu class, it required some optional settings to be specified.
1034
- Fixed so multiple blockquotes can be removed with a easier method than before.
1035
- Optimized some of the core API to boost performance.
1036
- Removed some functions from the core API that wasn't needed.
1037
- Version 3.0a2 (2007-11-02)
1038
- Fixed critical bug where IE generaded an error on a hasAttribute call in the serialization engine.
1039
- Fixed critical bug where some dialogs didn't open in the non dev package.
1040
- Fixed bug when using the theme_advanced_styles option. Error was thrown in some dialogs.
1041
- Fixed bug where the close buttons produced an error when native windows where used.
1042
- Fixed bug in default skin so that split buttons gets activated correctly.
1043
- Fixed so plugins can be loaded from external urls outsite the plugins directory.
1044
- Version 3.0a1 (2007-11-01)
1045
- Rewrote the core and most of the plugins and themes from scratch.
1046
- Added new and improved serialization engine, faster and more powerful.
1047
- Added new internal event system, things like editor.onClick.add(func).
1048
- Added new inlinepopups plugin, the dialogs are now skinnable and uses clearlooks2 as default.
1049
- Added new contextmenu plugin, context menus can now have submenus and plugins can add items on the fly.
1050
- Added new skin support for the simple and advanced themes you can alter the whole UI using CSS.
1051
- Added new o2k7 skin for the simple and advanced themes.
1052
- Added new custom list boxes for font size/format/style etc with preview support.
1053
- Added new UI management, enabled plugins to create controls like splitbuttons or menus easier.
1054
- Added new JSON parser/serializer and JSON-RPC class to the core API.
1055
- Added new cookie utility class to the core API.
1056
- Added new Unit testing class to the core API only available in dev mode.
1057
- Added new firebug lite integration when loading the dev version of TinyMCE.
1058
- Added new Safari plugin, fixes lots compatibility of issues with Safari 3.x.
1059
- Added new URI/URL parsing it now handles the hole RFC and even some exceptions.
1060
- Added new pagebreak plugin, enables you to insert pagebreak comments like <!-- pagebreak -->
1061
- Added new on demand loading of plugins and themes. Enables you to load and init TinyMCE at any time.
1062
- Added new throbber/progress visualization a plugin can show/hide this when it's needed.
1063
- Added new blockquote button. Enables you to wrap paragraphs in blockquotes.
1064
- Added new compat2x plugin. Will provide a TinyMCE 2.x API for older plugins.
1065
- Added new theme_advanced_resizing_min_width, theme_advanced_resizing_min_height options.
1066
- Added new theme_advanced_resizing_max_height, theme_advanced_resizing_max_height options.
1067
- Added new use_native_selects option. Enables you to toggle native listboxes on and off.
1068
- Added new docs_url option enables you to specify where the TinyMCE user documentation is located.
1069
- Added new frame and rules options for the table dialog.
1070
- Added new global rule for valid_elements/extended_valid_elements enables you to specify global attributes for all elements.
1071
- Added new deny attribute rule characher so it's possible to deny global attribute rules on specific elements.
1072
- Added new unit tests in the dev package of TinyMCE. Runs tests on the core API, commands and settings of the editor.
1073
- Readded the inline_styles option and enabled it by default so deprecated attributes are no longer used.
1074
- Removed all button images and replaced them with CSS sprite images. Reduces the number of requests needed.
1075
- Removed lots of language files and merged them into the base language files. Reduces the number of requests needed.
1076
- Removed lots of unnecessary files and merged many of them together to reduce requests and improve loading speed.
1077
- Reduced the over all script size by 33% and the number of files/requests by 75% so it loads a lot faster.
1078
- Fixed so convert_fonts_to_spans are enabled by default. So no more font tags.
1079
- Fixed so underline and strikethrough uses spans instread of deprecated U and STRIKE elements.
1080
- Fixed so indent/outdent adds/removed margin-left instead of blockquotes.
1081
- Fixed so alignment of paragraphs results in a text-align style value instead of the deprecated align attribute.
1082
- Fixed so alignment of images uses float or vertical-align style values instead of the deprecated align attribute.
1083
- Fixed so all classes from @import stylesheets gets imported into the editor.
1084
- Fixed so the directionality can toggle the dir attribute on and off.
1085
- Fixed so the fullscreen_settings can be used for all types of fullscreen modes.
1086
- Fixed so the advanced HR dialog gets displayed when inserting a HR not only on edit.
1087
- Fixed bug where word wrap didn't work in the source editor on Safari.
1088
- Fixed so non HTML elements can be used within the editor such as <myns:tag>
1089
- Fixed various memory leaks in IE and reduced the unload cleanups needed.
1090
- Fixed so the preformatted option adds an invisible container pre tag inside the editor.
1091
- Renamed the _template plugin to example and updated it to use the new 3.x API.
1
+ Version 3.4.5 (2011-09-06)
2
+ Fixed accessibility bug in WebKit where the right and left arrow keys would update native list boxes.
3
+ Added new whitespace_elements option to enable users to specify specific elements where the whitespace is preserved.
4
+ Added new merge_siblings option to formats. This option makes it possible to disable the auto merging of siblings when applying formats.
5
+ Fixed bug in IE where trailing comma in paste plugin would cause plugin to not run correctly.
6
+ Fixed bug in WebKit where console messages would be logged when deleting an empty document.
7
+ Fixed bug in IE8 where caret positioned is on list item instead of paragraph when outdent splits the list
8
+ Fixed bug with image dialogs not inserting an image if id was omitted from valid_elements.
9
+ Fixed bug where the selection normalization logic wouldn't properly handle image elements in specific config cases.
10
+ Fixed bug where the map elements coords attribute would be messed up by IE when serializing the DOM.
11
+ Fixed bug where IE wouldn't properly handle custom elements when the contents was serialized.
12
+ Fixed bug where you couldn't move the caret in Gecko if you focused the editor using the API or a UI control.
13
+ Fixed bug where adjacent links would get merged on IE due to bugs in their link command.
14
+ Fixed bug where the color split buttons would loose the selection on IE if the editor was placed in a frame/iframe.
15
+ Fixed bug where floated images in WebKit wouldn't get properly linked.
16
+ Fixed bug where the fullscreen mode in a separate window wasn't forced into IE9+ standards mode.
17
+ Fixed bug where pressing enter in an empty editor on WebKit could produce DIV elements instead of P.
18
+ Fixed bug where spans would get removed incorrectly when merging two blocks on backspace/delete on WebKit.
19
+ Fixed bug where the editor contents wouldn't be completely removed on backspace/delete on WebKit.
20
+ Fixed bug where the fullpage plugin wouldn't properly render style elements in the head on IE 6/7.
21
+ Fixed bug where the nonbreaking_force_tab option in the nonbreaking plugin wouldn't work on Gecko/WebKit.
22
+ Fixed bug where the isDirty state would become true on non IE browsers if there was an table at the end of the contents.
23
+ Fixed bug where entities wasn't properly encoded on WebKit when pasting text as plain text.
24
+ Fixed bug where empty editors would produce an exception of valid_elements didn't include body and forced_root_blocks where disabled.
25
+ Fixed bug where the fullscreen mode wouldn't retain the header/footer in the fullpage plugin.
26
+ Fixed issue where the plaintext_mode and plaintext_mode_sticky language keys where swapped.
27
+ Version 3.4.4 (2011-08-04)
28
+ Added new html5 audio support. Patch contributed by Ronald M. Clifford.
29
+ Added mute option for video elements and preload options for video/audio patch contributed by Dmitry Kalinkin.
30
+ Fixed selection to match visual selection before applying formatting changes.
31
+ Fixed browser specific bugs in lists for WebKit and IE.
32
+ Fixed bug where IE would scroll the window if you closed an inline dialog that was larger than the viewport. Patch by Laurence Keijmel.
33
+ Fixed bug where pasting contents near a span element could remove parts of that span. Patch contributed by Wesley Walser.
34
+ Fixed bug where formatting change would be lost after pressing enter.
35
+ Fixed bug in WebKit where deleting across blocks would add extra styles.
36
+ Fixed bug where moving cursor vertically in tables in WebKit wasn't working.
37
+ Fixed bug in IE where deleting would cause error in console.
38
+ Fixed bug where the formatter was not applying formats across list elements.
39
+ Fixed bug where the wordcount plugin would try and update the wordcount if tinymce had been destroyed.
40
+ Fixed bug where tabfocus plugin would attempt to focus elements not displayed when their parent element was hidden.
41
+ Fixed bug where the contentEditable state would sometimes be removed if you deleted contents in Gecko.
42
+ Fixed bug where inserting contents using mceInsertContent would fail if "span" was disabled in valid_elements.
43
+ Fixed bug where initialization might fail if some resource on gecko wouldn't load properly and fire the onload event.
44
+ Fixed bug where ctrl+7/8/9 keys wouldn't properly add the specific formats associated with them.
45
+ Fixed bug where the HTML tags wasn't properly closed in the style plugins properties dialog.
46
+ Fixed bug where the list plugin would produce an exception if the user tried to delete an element at the very first location.
47
+ Version 3.4.3.2 (2011-06-30)
48
+ Fixed bug where deleting all of a paragraph inside a table cell would behave badly in webkit.
49
+ Fixed bugs in tests in firefox5 and WebKit.
50
+ Fixed bug where selection of table cells would produce an exception on Gecko.
51
+ Fixed bug where the caret wasn't properly rendered on Gecko when the editor was hidden.
52
+ Fixed bug where pasting plain text into WebKit would produce a pre element it will now produce more semantic markup.
53
+ Fixed bug where selecting list type formats using the advlist plugin on IE8 would loose editor selection.
54
+ Fixed bug where forced root blocks logic wouldn't properly pad elements created if they contained data attributes.
55
+ Fixed bug where it would remove all contents of the editor if you inserted an image when not having a caret in the document.
56
+ Fixed bug where the YUI compressor wouldn't properly encode strings with only a quote in them.
57
+ Fixed bug where WebKit on iOS5 wouldn't call nodeChanged when the selection was changed.
58
+ Fixed bug where mceFocus command wouldn't work properly on Gecko since it didn't focus the body element.
59
+ Fixed performance issue with the noneditable plugin where it would enable/disable controls to often.
60
+ Version 3.4.3.1 (2011-06-16)
61
+ Fixed bug where listboxes were not being handled correctly by JAWS in firefox with the o2k7 skin.
62
+ Fixed bug where custom buttons were not being rendered correctly when in high contrast mode.
63
+ Added support for iOS 5 that now supporting contentEditable in it's latest beta.
64
+ Fixed bug where urls in style attributes with a _ character followed by a number would cause incorrect output.
65
+ Fixed bug where custom_elements option wasn't working properly on IE browsers.
66
+ Fixed bug where custom_elements marked as block elements wouldn't get correctly treated as block elements.
67
+ Fixed bug where attributes with </> wasn't properly encoded as XML entities.
68
+ Version 3.4.3 (2011-06-09)
69
+ Fixed bug where deleting backwards before an image into a list would put the cursor in the wrong location.
70
+ Fixed bug where styles plugin would not apply styles across multiple selected block elements correctly.
71
+ Fixed bug where cursor would jump to start of document when selection contained empty table cells in IE8.
72
+ Fixed bug where applied styles wouldn't be kept if you pressed enter twice to produce two paragraphs.
73
+ Fixed bug where a ghost like caret would appear on Gecko when pressing enter while having a text color applied.
74
+ Fixed bug where IE would produce absolute urls if you inserted a image/link and reloaded the page.
75
+ Fixed bug where applying a heading style to a list item would cascade style to children list items.
76
+ Fixed bug where Editor loses focus when backspacing and changing styles in WebKit.
77
+ Fixed bug where exception was thrown in tinymce.util.URI when parsing a relative URI and no base_uri setting was provided.
78
+ Fixed bug where alt-f10 was not always giving focus to the toolbar on Safari.
79
+ Added new 'allow_html_in_named_anchor' option to allow html to occur within a named anchor tag. Use at own risk.
80
+ Added plugin dependency support. Will autoload plugins specified as a dependency if they haven't been loaded.
81
+ Fixed bug where the autolink plugin didn't work with non-English keyboards when pressing ).
82
+ Added possibility to change properties of all table cells in a column.
83
+ Added external_image_list option to get images list from user-defined variable or function.
84
+ Fixed bug where the autoresize plugin wouldn't reduce the editors height on Chrome.
85
+ Fixed bug where table size inputs were to small for values with size units.
86
+ Fixed bug where table cell/row size input values were not validated.
87
+ Fixed bug where menu item line-height would be set to wrong value by external styles.
88
+ Fixed bug where hasUndo() would return wrong answer.
89
+ Fixed bug where page title would be set to undefined by fullpage plugin.
90
+ Fixed bug where HTML5 video properties were not updated in embedded media settings.
91
+ Fixed bug where HTML comment on the first line would cause an error.
92
+ Fixed bug where spellchecker menu was positioned incorrectly on IE.
93
+ Fixed bug where breaking out of list elements on WebKit would produce a DIV instead of P after the list.
94
+ Fixed bug where pasting from Word in IE9 would add extra BR elements when text was word wrapped.
95
+ Fixed bug where numeric entities with leading zeros would produce incorrect decoding.
96
+ Fixed bug where hexadecimal entities wasn't properly decoded.
97
+ Fixed bug where bookmarks wasn't properly stored/restored on undo/redo.
98
+ Fixed bug where the mceInsertCommand didn't retain the values of links if they contained non url contents.
99
+ Fixed bug where the valid_styles option wouldn't be properly used on styles for specific elements.
100
+ Fixed so contentEditable is used for the body of the editor if it's supported.
101
+ Fixed so trailing BR elements gets removed even when forced_root_blocks option was set to false/null.
102
+ Fixed performance issue with mceInsertCommand and inserting very simple contents.
103
+ Fixed performance issue with older IE version and huge documents by optimizing the forced root blocks logic.
104
+ Fixed performance issue with table plugin where it checked for selected cells to often.
105
+ Fixed bug where creating a link on centered/floated image would produce an error on WebKit browsers.
106
+ Fixed bug where Gecko would remove single paragraphs if there where contents before/after it.
107
+ Fixed bug where the scrollbar would move up/down when pasting contents using the paste plugin.
108
+ Version 3.4.2 (2011-04-07)
109
+ Added new 'paste_text_sticky_default' option to paste plugin, enables you to set the default state for paste as plain text.
110
+ Added new autoresize_bottom_margin option to autoresize plugin that enables you to add an extra margin at the bottom. Patch contributed by Andrew Ozz.
111
+ Rewritten the fullpage plugin to handle style contents better and have a more normalized behavior across browsers.
112
+ Fixed bug where contents inserted with mceInsertContent wasn't parsed using the default dom parser.
113
+ Fixed bug where blocks containing a single anchor element would be treated as empty.
114
+ Fixed bug where merging of table cells on IE 6, 7 wouldn't look correctly until the contents was refreshed.
115
+ Fixed bug where context menu wouldn't work properly on Safari since it was passing out the ctrl key as pressed.
116
+ Fixed bug where image border color/style values were overwritten by advimage plugin.
117
+ Fixed bug where setting border in advimage plugin would throw error in IE.
118
+ Fixed bug where empty anchors list in link settings wasn't hidden.
119
+ Fixed bug where xhtmlextras popups were missing localized popup-size parameters.
120
+ Fixed bug where the context menu wouldn't select images on WebKit browsers.
121
+ Fixed bug where paste plugin wouldn't properly extract the contents on WebKit due to recent changes in browser behavior.
122
+ Fixed bug where focus of the editor would get on control contents on IE lost due to a bug in the ColorSplitButton control.
123
+ Fixed bug where contextmenu wasn't disabled on noneditable elements.
124
+ Fixed bug where getStyle function would trigger error when called on element without style property.
125
+ Fixed bug where editor fail to load if Javascript Compressor was used.
126
+ Fixed bug where list-style-type=lower-greek would produce errors in IE<8.
127
+ Fixed bug where spellchecker plugin would produce errors on IE6-7.
128
+ Fixed bug where theme_advanced_containers configuration option causes error.
129
+ Fixed bug where the mceReplaceContent command would produce an error since it didn't correctly handle a return value.
130
+ Fixed bug where you couldn't enter float point values for em in dialog input fields since it wouldn't be considered a valid size.
131
+ Fixed bug in xhtmlxtras plugin where it wasn't possible to remove some attributes in the attributes dialog.
132
+ Version 3.4.1 (2011-03-24)
133
+ Added significantly improved list handling via the new 'lists' plugin.
134
+ Added 'autolink' plugin to enable automatically linking URLs. Similar to the behavior IE has by default.
135
+ Added 'theme_advanced_show_current_color' setting to enable the forecolor and backcolor buttons to continuously show the current text color.
136
+ Added 'contextmenu_never_use_native' setting to disable the ctrl-right-click showing the native browser context menu behaviour.
137
+ Added 'paste_enable_default_filters' setting to enable the default paste filters to be disabled.
138
+ Fixed bug where selection locations on undo/redo didn't work correctly on specific contents.
139
+ Fixed bug where an exception would be trown on IE when loading TinyMCE inside an iframe.
140
+ Fixed bug where some ascii numeric entities wasn't properly decoded.
141
+ Fixed bug where some non western language codes wasn't properly decoded/encoded.
142
+ Fixed bug where undo levels wasn't created when deleting contents on IE.
143
+ Fixed bug where the initial undo levels bookmark wasn't updated correctly.
144
+ Fixed bug where search/replace wouldn't be scoped to editor instances on IE8.
145
+ Fixed bug where IE9 would produce two br elements after block elements when pasting.
146
+ Fixed bug where IE would place the caret at an incorrect position after a paste operation.
147
+ Fixed bug where a paste operation using the keyboard would add an extra undo level.
148
+ Fixed bug where some attributes/elements wasn't correctly filtered when invalid contents was inserted.
149
+ Fixed bug where the table plugin couldn't correctly handle invalid table structures.
150
+ Fixed bug where charset and title of the page were handled incorrectly by the fullpage plugin.
151
+ Fixed bug where toggle states on some of the list boxes didn't update correctly.
152
+ Fixed bug where sub/sub wouldn't work correctly when done as a caret action in Chrome 10.
153
+ Fixed bug where the constrain proportions checkbox wouldn't work in the media plugin.
154
+ Fixed bug where block elements containing trailing br elements wouldn't treated properly if they where invalid.
155
+ Fixed bug where the color picker dialog wouldn't be rendered correctly when using the o2k7 theme.
156
+ Fixed bug where setting border=0 using advimage plugin invalid style attribute content was created in Chrome.
157
+ Fixed bug with references to non-existing images in css of fullpage plugin.
158
+ Fixed bug where item could be unselected in spellchecker's language selector.
159
+ Fixed bug where some mispelled words could be not highlighted using spellchecker plugin.
160
+ Fixed bug where spellchecking would merge some words on IE.
161
+ Fixed bug where spellchecker context menu was not always positioned correctly.
162
+ Fixed bug with empty anchors list in advlink popup when Invisible Elements feature was disabled.
163
+ Fixed bug where older IE versions wouldn't properly handle some elements if they where placed at the top of editor contents.
164
+ Fixed bug where selecting the whole table would enable table tools for cells and rows.
165
+ Fixed bug where it wasn't possible to replace selected contents on IE when pasting using the paste plugin.
166
+ Fixed bug where setting text color in fullpage plugin doesn't work.
167
+ Fixed bug where the state of checkboxes in media plugin wouldn't be set correctly.
168
+ Fixed bug where black spade suit character was not included in special character selector.
169
+ Fixed bug where setting invalid values for table cell size would throw an error in IE.
170
+ Fixed bug where spellchecking would remove whitespace characters from PRE block in IE.
171
+ Fixed bug where HR was inserted inside P elements instead of splitting them.
172
+ Fixed bug where extra, empty span tags were added when using a format with both selector and inline modes.
173
+ Fixed bug where bullet lists weren't always detected correctly.
174
+ Fixed bug where deleting some paragraphs on IE would cause an exception.
175
+ Fixed bug where the json encoder logic wouldn't properly encode \ characters.
176
+ Fixed bug where the onChange event would be fired when the editor was first initialized.
177
+ Fixed bug where mceSelected wouldn't be removed properly from output even if it's an internal class.
178
+ Fixed issue with table background colors not being transparent. This improves compliance with users browser color preferences.
179
+ Fixed issue where styles were not included when using the full page plugin.
180
+ Fixed issue where drag/drop operations wasn't properly added to the undo levels.
181
+ Fixed issue where colors wasn't correctly applied to elements with underline decoration.
182
+ Fixed issue where deleting some paragraphs on IE would cause an exception.
183
+ Version 3.4 (2011-03-10)
184
+ Added accessibility example with various accessibility options contributed by Ephox.
185
+ Fixed bug where attributes wasn't properly handled in the xhtmlxtras plugin.
186
+ Fixed bug where the image.htm had some strange td artifacts probably due to auto merging.
187
+ Fixed bug where the ToolbarGroup had an missing reference to this in it's destroy method.
188
+ Fixed bug with the resizeBy function in the advanced theme where it was scaled by the wrong parent.
189
+ Fixed bug where an exception would be thrown by the element if the page was served in xhtml mode.
190
+ Fixed bug where mceInsertContent would throw an exception when page was served in xhtml mode.
191
+ Fixed bug where you couldn't select a forground/background color when page was served in xhtml mode.
192
+ Fixed bug where the editor would scroll to the toolbar when clicked due to a call to focus in ListBox.
193
+ Fixed bug where pages with rtl dir wouldn't render split buttons correctly when using the o2k7 theme.
194
+ Fixed bug where anchor elements with names wasn't properly collapsed as they where in 3.3.x.
195
+ Fixed bug where WebKit wouldn't properly handle image selection if it was done left to right.
196
+ Fixed bug where the formatter would align images when the selection range was collapsed.
197
+ Fixed bug where the image button would be active when the selection range was collapsed.
198
+ Fixed bug where the element_format option wasn't used by the new (X)HTML serializer logic.
199
+ Fixed bug where the table cell/row dialogs would produce empty attributes.
200
+ Fixed bug where the tfoot wouldn't be added to the top of the table.
201
+ Fixed bug where the formatter would merge siblings with white space between them.
202
+ Fixed bug where pasting headers and paragraphs would produce an extra paragraph.
203
+ Fixed bug where the ColorSplitButton would throw an exception if you clicked out side a color.
204
+ Fixed bug where IE9 wouldn't properly produce new paragraphs on enter if the current paragraph had formatting.
205
+ Fixed bug where multiple BR elements at end of block elements where removed.
206
+ Fixed bug where fullscreen plugin wouldn't correctly display the edit area on IE6 for long pages.
207
+ Fixed bug where paste plugin wouldn't properly encode raw entities when pasting in plain text mode.
208
+ Fixed bug where the search/replace plugin wouldn't work correctly on IE 9.
209
+ Fixed so the drop menus doesn't get an outline border visible when focused, patch contributed by Ephox.
210
+ Fixed so the values entered in the color picker are forced to hex values.
211
+ Removed dialog workaround for IE 9 beta since the RC is now out and people should upgrade.
212
+ Removed obsolete calls in various plugins to the mceBeginUndoLevel command.
213
+ Version 3.4b3 (2011-02-10)
214
+ Added WAI-ARIA support for the main UI and dialogs this feature was contributed by Ephox.
215
+ Added iframe support to media plugin in order to handle the new YouTube HTML5 video formats.
216
+ Fixed bug where anchors would wrap the text contents after it due to a bug in the DomParser logic.
217
+ Fixed bug where the selected state wouldn't be removed on ListBox controls when a menu item was selected.
218
+ Fixed bug where IE could throw an unspecified error exception when the getBookmark logic was executed.
219
+ Fixed bug where IE would throw an invalid argument error when focus was applied to an empty editor instance.
220
+ Fixed bug where applying inline format wouldn't work if the start cell in the selection was empty.
221
+ Fixed bug where auto detection logic for YouTube and Google Video wouldn't work in the new media plugin.
222
+ Fixed bug where td elements would get a colspan/rowspan of 1 when created by the table plugin.
223
+ Fixed bug where removal/padding of empty elements wasn't handled correctly.
224
+ Fixed bug where internal elements would show up in element path.
225
+ Fixed bug where internal elements would get serialized as valid output.
226
+ Fixed bug where color wasn't correctly applied to anchor elements.
227
+ Fixed bug where float option in the style plugin dialog wouldn't be handled correctly on WebKit.
228
+ Fixed bug where the tinymce.dom.TreeWalker prev function wouldn't walk the DOM correctly.
229
+ Fixed bug where mceInsertContent command could produce empty block elements after the inserted content.
230
+ Fixed bug where mceInsertContent command wouldn't apply visual aids on tables and similar elements.
231
+ Fixed bug where empty block elements would get double br bogus elements in them.
232
+ Fixed bug where the color menu wouldn't apply the color correctly on IE when the viewport was to small.
233
+ Fixed bug where right clicking out side the body element of the editor iframe would prevent paste from working on IE.
234
+ Fixed bug where the onContextMenu event wouldn't fire correctly on IE if you clicked out side the body element.
235
+ Fixed bug where the onContextMenu event wouldn't fire correctly on modern Opera versions that now support it by default.
236
+ Fixed bug where legacy content wasn't converted correctly when inserted using mceInsertContent or through the source dialog.
237
+ Fixed bug where resizing images or tables wouldn't update the style attribute correctly or leave data-mce prefixed attributes.
238
+ Fixed bug where adding links wouldn't work correctly when using TinyMCE jQuery version with jQuery 1.5.
239
+ Fixed bug where single quotes inside param elements wasn't treated correctly by the media plugin.
240
+ Fixed bug where pasting plain text in WebKit wouldn't work correctly. It will now auto detect the WebKit bug and use plain text mode.
241
+ Fixed bug where the DomParser would fail to move out invalid elements within invalid elements on complex contents.
242
+ Fixed bug where paste as plain text would not decode html entities properly.
243
+ Fixed bug where large paragraphs would cause incorrect scrolling behavior if you would split them using enter.
244
+ Fixed bug where the SaxParser wouldn't properly parse some specific short ended elements.
245
+ Fixed so mceReplaceContent supports caret position and makes sure that the contents inserted gets validated.
246
+ Fixed so unnecessary traling br elements in blocks gets removed on Gecko/WebKit when using mceInsertContent command.
247
+ Moved some plugin css contents into the skin content css files to reduce the number of http requests.
248
+ Moved some plugin specific images into the theme img directory since they can then be shared.
249
+ Version 3.4b2 (2011-01-13)
250
+ Added new custom flash player, this player supports mp4 and flv and has skin support.
251
+ Fixed so mceInsertContent handles context correctly to enforce valid nesting of elements.
252
+ Fixed bug where scrolling would become jerky on IE on some contents.
253
+ Fixed bug where paste as plain text would throw exception of missing entities setting.
254
+ Fixed bug where anchor nodes where removed by the new serializer engine.
255
+ Fixed bug where IE would crash if when backspace where used on some specific contents.
256
+ Fixed bug where pasting of plain text in WebKit would result in merging of text lines.
257
+ Fixed bug where it wasn't possible to delete images or tables using backspace on IE9.
258
+ Fixed bug where urls in styles would generate a JS error due to incorrect scope.
259
+ Fixed bug where copy paste from Java applications would produce extra contents in FF on Mac.
260
+ Fixed bug where the verify_html option wouldn't allow all elements and attributes.
261
+ Version 3.4b1 (2010-12-20)
262
+ Added new serialization engine that increases performance and enforces valid output according to the specified schema settings.
263
+ Added new HTML parser logic used by the serialization engine and can handle malformed html contents.
264
+ Added new valid_children config option, enables more fine grain control of elements can be inside other elements.
265
+ Added new entities encoding logic boost performance and will only encode entities based on context i.e. attributes/text nodes.
266
+ Added new protect setting that enables users to protect template items from being removed by the serializer logic.
267
+ Added new {$caret} marker for the mceInsertContent command. Makes it possible to move the caret to a specific position when inserting contents.
268
+ Added new validation of anchor names. Only valid W3C names will be accepted.
269
+ Replaced the internal _mce_ prefixed attributes to the more standard HTML5 data-mce- prefix. This will also resolve future browser santiaztion issues.
270
+ Fixed bug where the paste plugin wouldn't convert Word lists with more than 9 items to real ol lists. Patch contributed by Mike (yogaboy).
271
+ Fixed bug where clicking on a format title would produce errors if the current selection didn't have any formats.
272
+ Fixed bug where paste of simple texts wouldn't work correctly in Gecko using the paste plugin since it keeps block formatting.
273
+ Fixed bug where confirm dialogs didn't display correctly due to resent IE9 fixes.
274
+ Fixed bug where spaces in URLs wouldn't be properly encoded to %20 if the user entered them in the link dialogs. Patch contributed by Ephox.
275
+ Fixed bug where the image alignment buttons wouldn't reposition the resize handles on FF due to a browser issue. Patch contributed by Ephox.
276
+ Fixed bug where the compareBoundaryPoints method of the IE Range class didn't work correctly. Patch contributed by Ephox.
277
+ Fixed bug where selection of elements using double click wouldn't select the clicked element but rather the parent node on FF. Patch contributed by Ephox.
278
+ Fixed bug where IE would scroll the user to the current selection causing parent document to scroll as well. Patch contributed by Ephox.
279
+ Fixed bug where style compression would incorrectly compress items with different values. It now only compresses if the values are the same. Patch contributed by Ephox.
280
+ Fixed bug where FF would add non breaking spaces outside TD elements if formatting was applied to table cells. Patch contributed by Ephox.
281
+ Fixed bug where the caret position would be lost on WebKit browsers if you pasted images multiple times. Patch contributed by Ephox.
282
+ Fixed bug where non word contents like * would be counted as words in the wordcount pluging. Patch contributed by David Balatero.
283
+ Fixed bug where the toggle absolute button in the layer plugin wouldn't remove the existing internal style attribute first.
284
+ Fixed bug where the autosave plugin would generate an exception on IE if the user had disabled userdata persistence.
285
+ Fixed bug where the paste plugin would remove dashed classes on IE since the regexps didn't include that character.
286
+ Fixed bug where applying text color would not add spans inside link elements. This is needed due to CSS style inheritance.
287
+ Fixed bug where applying block formats to empty elements wouldn't render correctly on IE.
288
+ Fixed bug where the searchreplace plugin would add a f or r character when shortcuts where used on IE while using default dialogs.
289
+ Fixed bug where Opera wouldn't load scripts correctly since the onreadystate would fire even though the script wasn't loaded.
290
+ Fixed issue where &nbsp; wouldn't be handled correctly in the bbcode plugin if entity_encoding was set to raw.
291
+ Fixed issue where contents would flicker since the content css files where asynchronously loaded.
292
+ Fixed bug where WebKit wouldn't create links on images with a float style.
293
+ Version 3.3.9.3 (2010-12-20)
294
+ Fixed issue where WebKit wouldn't correctly apply ins/del in xhtmlxtras plugin.
295
+ Fixed bug where paste as plaintext on WebKit wouldn't produce br and p elements correctly.
296
+ Fixed bug where the confirm dialog texts would be incorrectly placed due to recent IE 9 workarounds in the window.css.
297
+ Fixed bug where applying text color would not add spans inside link elements. This is needed due to CSS style inheritance.
298
+ Version 3.3.9.2 (2010-09-29)
299
+ Fixed bug where placing the caret in IE 9 beta 1 would not work correctly if you clicked out side the document body element.
300
+ Fixed bug where IE 9 beta 1 wouldn't resize the editor correctly since the events didn't fire as previous versions did.
301
+ Fixed bug where FF would produce an error message when being rendered inside a hidden div element.
302
+ Fixed bug where resize logic could produce a cookie with a width/height less than the size of the container.
303
+ Fixed bug where content_css wouldn't populate the styles dropdown correctly.
304
+ Version 3.3.9.1 (2010-09-23)
305
+ Fixed bug where WebKit browsers wouldn't activate the image button when images where selected.
306
+ Fixed bug where Opera Presto 10.60 deletes elements when restoring bookmarks.
307
+ Fixed bug where IE9 beta1 doesn't handle regexp replacement values correctly.
308
+ Fixed bug where IE9 beta1 didn't render the inline dialogs correctly due to a bug with CSS clip.
309
+ Fixed bug where IE9 beta1 would produce error messages on load since they removed the document.recalc method.
310
+ Fixed bug where IE9 beta1 would produce <html xmlns=""> since they haven't implemented document.implementation.createDocument correctly.
311
+ Fixed bug where IE9 beta1 would searchreplace doesn't work since their native DOM Range doesn't have a find method.
312
+ Fixed bug where IE9 beta1 would render the source view incorrectly due to incorrect viewport size measurements.
313
+ Fixed bug where IE9 beta1 would crash when running the basic functionality unit tests.
314
+ Fixed bug where IE9 beta1 would wrap elements in blocks correctly due to changes to the selection object.
315
+ Fixed bug where IE9 beta1 would fail to insert contents since they havn't implemented the createContextualFragment method in their DOM Range.
316
+ Fixed bug where IE9 beta1 would fail to handle image selection since they currently doesn't support control selections in their DOM Range.
317
+ Fixed bug where IE9 beta1 would fail to load scripts since they fire the onload event before the scripts are parsed and executed.
318
+ Version 3.3.9 (2010-09-08)
319
+ Fixed bug where inserting table rows into a table with subtable would produce an incorrect column count.
320
+ Fixed bug where the selection of cells in a table with subtables could produce invalid selections.
321
+ Fixed bug where the table plugin would produce a script error if you tried to move the caret before a first child table.
322
+ Fixed bug where the keep_styles feature on IE would move the caret to an incorrect location at the end of list blocks.
323
+ Fixed so attributes from legacy elements such as font gets retained when they get converted to spans.
324
+ Fixed minor issue where the select boxes wouldn't be set the not set by default in the table dialog.
325
+ Version 3.3.8 (2010-06-30)
326
+ On IE8+ and FireFox 3.5+, dragging an image now correctly adds an undo
327
+ event.
328
+ Fixed bug where WebKit would not move the caret to a correct position after a paste operation.
329
+ Fixed bug where WebKit would produce a div wrapper element when pasting some contents.
330
+ Fixed bug where the visual chars and nonbreaking plugin wouldn't show nbsp elements correctly.
331
+ Fixed bug where the format states would be enabled even after the format was removed.
332
+ Fixed bug where the delete key would move the caret to an incorrect position.
333
+ Fixed bug where it wasn't possible to toggle of the current font size/family/style by clicking the title item.
334
+ Fixed bug where the abbr element wouldn't get serialized correctly on IE6.
335
+ Fixed so that the examples checks if they are executed from the local file system since that might not work properly.
336
+ Version 3.3.7 (2010-06-10)
337
+ Fixed bug where context menu would produce an error on IE if you right clicked twice and left clicked once.
338
+ Fixed bug where resizing of the window on WebKit browsers in fullscreen mode wouldn't position the statusbar correctly.
339
+ Fixed bug where IE would produce an error if the editor was empty and you where undoing to that initial level.
340
+ Fixed bug where setting the table background on gecko would produce \" entities inside the url style property.
341
+ Fixed bug where the button states wouldn't be updated correctly on IE if you placed the caret inside the new element.
342
+ Fixed bug where undo levels wasn't properly added after applying styles or font sizes.
343
+ Fixed bug where IE would throw an error if you used "select all" on empty elements and applied formatting to that.
344
+ Fixed bug where IE could select one extra character when you did a bookmark call on a caret location.
345
+ Fixed bug where IE could produce a script error on delete since it would sometimes produce an invalid DOM.
346
+ Fixed bug where IE would return the wrong start element if the whole element was selected.
347
+ Fixed bug where formatting states wasn't updated on IE if you pressed enter at the end of a block with formatting.
348
+ Fixed bug where submenus for the context menu wasn't removed correctly when the editor was destroyed.
349
+ Fixed bug where Gecko could select the wrong element after applying format to multiple elements.
350
+ Fixed bug where Gecko would delete parts of the previous element if the selection range was a element selection.
351
+ Fixed bug where Gecko would not merge paragraph elements correctly if they contained br elements.
352
+ Fixed bug where the cleanup button could produce span artifacts if you pressed it twice in a row.
353
+ Fixed bug where the fullpage plugin header/footer would be have it's header reseted to it's initial state on undo.
354
+ Fixed bug where an empty paragraph would be collapsed if you performed a cleanup while having the caret inside it.
355
+ Fixed a few memory leaks on IE especially with drop menus in listboxes and the spellchecker.
356
+ Fixed so formats applied to the current caret gets merged to reduce the number of output elements.
357
+ Added the latest version of Sizzle for the CSS selector logic to fix a compatibility issue with prototype.
358
+ Version 3.3.6 (2010-05-20)
359
+ Fixed bug where a editor.focus call could produce errors on IE in very specific scenarios.
360
+ Fixed bug where Gecko would produce an error if you unformatted text inside an empty element.
361
+ Fixed bug where IE would produce an error if the caret was placed before a table and you used the align buttons.
362
+ Fixed bug where the font size drop down didn't display the a preview correctly.
363
+ Fixed bug where the paste plugin wouldn't include all contents some times on WebKit browsers.
364
+ Fixed bug where the plain text mode toggle wouldn't work properly on WebKit.
365
+ Fixed bug where the editors statusbar would become invisible when you resized the window in fullscreen mode.
366
+ Version 3.3.5.1 (2010-05-07)
367
+ Fixed a critical bug with the fullscreen plugin. Produced error messages when the state was toggled on/off.
368
+ Version 3.3.5 (2010-05-06)
369
+ Added new merge_with_parents option to formats, enables the control of removal of elements with similar parents.
370
+ Fixed so the default behavior for applying classes isn't a toggle state but the old behavior from before the 3.3 release.
371
+ Fixed bug where selecting contents using double click on Gecko would produce errors when using removing format.
372
+ Fixed bug where the IE DOM could get messed up when non valid contents was pasted into the editor.
373
+ Fixed bug where merging selected table cells using the context menu didn't work as expected.
374
+ Fixed bug where some nestled formatting would be applied incorrectly.
375
+ Fixed bug with enter in list items when using the force_br_newlines mode on WebKit patch contributed by Ryan Koopmans.
376
+ Fixed bug where undo/redo could produce js errors on some specific operations.
377
+ Fixed bug where the theme_advanced_font_sizes didn't work as before 3.3 when complex settings where used.
378
+ Fixed bug where the table plugin would copy cell/row id attributes when making new rows/cells.
379
+ Version 3.3.4 (2010-04-27)
380
+ Fixed bug where fullscreen plugin would add two editor instances to EditorManager collection.
381
+ Fixed bug where it was difficult to enter text on non western languages such as Japanese on IE.
382
+ Fixed bug where removing contents from nodes could result in an exception when using undo/redo.
383
+ Fixed bug with selection of images inside layers or other resizable containers on IE.
384
+ Fixed so editors isn't initialized on iPhone/iPad devices since they don't have caret support.
385
+ Version 3.3.3 (2010-04-19)
386
+ Added new script_loaded callback function setting for the jQuery plugin.
387
+ Added various fixes and new rpc methods for the spellchecker plugin. Patch contributed by Michael Peters.
388
+ Removed some unnecessary inline style information from some of the dialogs.
389
+ Fixed some issues with the chaining for the TinyMCE jQuery plugin.
390
+ Fixed so any extra arguments passed to patched jQuery functions gets passed through. Patch contributed by Lee Henson.
391
+ Fixed so spellchecking/contextmenu can be toggled on/off if the browser has native spellchecker support.
392
+ Fixed bug where some texts in the new paste plugin wasn't placed in language pack.
393
+ Fixed bug where IE would produce an incorrect information message when cutting.
394
+ Fixed bug where removing items using the xhtmlxtras plugin wouldn't work correctly.
395
+ Fixed bug where setting table background images would add extra quotes on Gecko.
396
+ Fixed bug where shortcut for bold/italic/underline wouldn't work properly on WebKit.
397
+ Fixed bug where IE would produce an error message if only contents was an image tag and bold was used.
398
+ Fixed bug where the caret would move if alignment was applied to empty block elements.
399
+ Fixed bug where some shortcut key commands wouldn't apply formatting correctly.
400
+ Version 3.3.2 (2010-03-25)
401
+ Fixed bug where it was possible to scale the editor iframe smaller than the editor UI.
402
+ Fixed bug where some of the resizing option didn't work with the new live resize.
403
+ Fixed bug where the format listbox didn't show nestled formats correctly.
404
+ Fixed bug where the native listboxes didn't work correctly.
405
+ Fixed bug where font size selection in using the legacyoutput plugin would produce errors.
406
+ Fixed so block and blockquote formats remove their matching element regardless of it's attributes.
407
+ Version 3.3.1 (2010-03-18)
408
+ Added new live resize feature, the editor contents is now visible while resizing.
409
+ Fixed bug where some valid_element patterns would produce an unknown property error.
410
+ Fixed bug where it wasn't possible to toggle off blockquotes.
411
+ Fixed bug where an undo level wasn't produced when applying formatting using the styles dropdown.
412
+ Fixed bug where IE 6/7 wouldn't perform caret formatting due to a focus/event bug in IE.
413
+ Fixed bug where undo/redo wasn't restoring the previous selection correctly.
414
+ Fixed bug where the caret would become invisible if you resized the editor in latest Gecko.
415
+ Fixed bug where the class attribute wasn't completely removed in IE 6/7 when the removeClass function was used.
416
+ Fixed so the matchNode method of the Formatter class returns the matched format rule.
417
+ Fixed so it's possible to apply formatting to both blocks and as inline elements.
418
+ Version 3.3 (2010-03-10)
419
+ Fixed bug where backspace on a table on IE would produce an empty tbody and some JS exceptions.
420
+ Fixed bug where some redundant children wasn't removed properly when applying inline styles to them.
421
+ Fixed bug where Chrome would produce incorect dialog sizes if the inlinepopups plugin wasn't used.
422
+ Fixed bug where spans with different classes would get merged if they where siblings to each other.
423
+ Fixed bug where IE 8 would crash if you used the spellchecker.
424
+ Fixed bug where Input Method for non western languages didn't work correctly.
425
+ Fixed bug where the UI would render incorrectly in FF 3.6 on Mac due to a bug n their rendering engine.
426
+ Fixed bug where WebKit wouldn't scroll down correctly if Shift+Enter was used. Patch contributed by Thomas Andersen.
427
+ Version 3.3rc1 (2010-02-23)
428
+ Fixed bug with new legacyoutput plugin not working correctly on it's own.
429
+ Fixed bug some performance issues with removing text formats.
430
+ Fixed bug where TinyMCE specific attributes wasn't removed properly by remove format.
431
+ Fixed bug where it wasn't possible to align images within inline elements.
432
+ Fixed bug where Ctrl+Delete/Backspace would produce an invalid argument exception on IE.
433
+ Fixed bug where the search/replace logic could produce an infinite loop on IE for reverse searches.
434
+ Fixed bug where cloning formats in cells didn't work properly on IE.
435
+ Fixed bug where IE6 would produce a horizontal scroll bar.
436
+ Fixed so remove jQuery method removes the TinyMCE instance as well as the specified textarea.
437
+ Fixed so selected rows and cells gets updated using the row/cell properties dialogs.
438
+ Version 3.3b2 (2010-02-04)
439
+ Fixed bug where sometimes img elements would be removed by split method in DOMUtils.
440
+ Fixed bug where merging of span elements could occur on bookmark nodes.
441
+ Fixed bug where classes wasn't properly removed when removeformat was used on IE 6.
442
+ Fixed bug where multiple calls to an tinyMCE.init with mode set to exact could produce the same unique ID.
443
+ Fixed bug with the IE selection implementation when it was feeded an document range.
444
+ Fixed bug where block elements formatting wasn't properly removed by removeformat on all browsers.
445
+ Fixed bug where selection location was lost if you performed a manual cleanup.
446
+ Fixed bug where removeformat wouldn't remove span elements within styled block elements.
447
+ Fixed bug where an error would be thrown if you clicked on the separator lines in menus.
448
+ Fixed bug with the jQuery plugin adding always adding a querystring value to other resources.
449
+ Fixed bug where IE would produce an error message if you had an empty editor instance.
450
+ Fixed bug where Shift+Enter didn't produce br elements on WebKit browsers.
451
+ Fixed bug where a temporary marker element wasn't removed by the paste plugin.
452
+ Fixed bug where inserting a table would produce two undo levels instead of one.
453
+ Version 3.3b1 (2010-01-25)
454
+ Added new text formatting engine. Fixes a lot of browser quirks and adds new possibilities.
455
+ Added new advlist plugin that enables you to set the formats of list elements.
456
+ Added new paste plugin logic that enables you to retain style information from Office.
457
+ Added new autosave plugin logic that automatically saves contents in local storage.
458
+ Added new valid_styles option. Adds the possibility to restrict styles and their order.
459
+ Added new theme_advanced_runtime_fontsize option to display the runtime font size in font size select box.
460
+ Added new jquery plugin version that handles the gzip compressor amongst other things. Contributed by Speednet.
461
+ Added new $ function to tinymce namespace and editor instances for the jQuery build.
462
+ Added the possibility to get editors by index as well as name in the tinyMCE.editors collection.
463
+ Fixed so the contents inside the editor renders in standards mode by default.
464
+ Fixed bug where it wasn't possible to move the caret on short documents running in standards mode on IE.
465
+ Fixed bug where the decode method of the DOMUtils class could end up in an endless loop.
466
+ Fixed bug where it was possible to bypass the paste cleanup on non IE browsers if you clicked while pasting.
467
+ Fixed bug where some attributes wasn't serialized correctly on IE if wildcard attribute patters where used.
468
+ Fixed bug where entity decoding was performed on strings that didn't have any valid entities in them.
469
+ Fixed bugs with the insertNode method of the IE DOMRange implementation. Patch contributed by Scott McNaught.
470
+ Rewrote the getBookmark/moveToBookmark selection logic to boost performance on larger documents.
471
+ Rewrote the table plugin to include new cell selection logic and fixed various bugs and issues.
472
+ Merged the tinyMCE, tinymce and tinymce.EditorManager into the same instance makes more sense.
473
+ Removed browser setting since the browser support for TinyMCE is not far better than it was when that setting was introduced.
474
+ Changed the mce_ attribute prefix to the more standard _mce_ prefix. This is similar to browser vendors prefixes.
475
+ Optimized performance with named entities on Gecko. Regexp replace was executing very slowly probably due to a Gecko bug.
476
+ Optimized performance of the IE specific selection/range implementation.
477
+ Removed the safari plugin since we now replaced all text formatting logic to custom code.
478
+ Version 3.2.7 (2009-09-22)
479
+ Fixed bug where uppercase paragraphs could still produce an invalid DOM tree on IE.
480
+ Fixed bug where split command didn't work on WebKit since the node serializer needs a real document to work with.
481
+ Fixed bug where it was impossible in Gecko to place the caret before a table if it was the first one.
482
+ Fixed bug where linking to urls like ../../ would produce an extra traling slash ../..//.
483
+ Fixed bug where the template cdate functionality was using an old 2.x API call. Patch contributed by vectorjohn.
484
+ Fixed bug where urls to the same site but different protocol would be converted when relative_urls where set to false. Patch contributed by Ted Rust.
485
+ Fixed bug where the paste plugin would remove mceItem prefixed classes.
486
+ Fixed bug where the paste plugin would sometimes add items in a reverse order on WebKit.
487
+ Fixed bug where the paste buttons would present an error message on Gecko even if you changed user.js. Patch contributed by Todd (teeaykay).
488
+ Fixed bug where Opera would crash if you had tables incorrectly placed inside paragraphs.
489
+ Fixed bug where styles elements wasn't properly processed if you had bad input HTML.
490
+ Fixed bug where style attributes wasn't properly forced into a specific format.
491
+ Fixed bug and issues with boolean attributes like checked, nowrap etc.
492
+ Fixed bug where input elements could override attributes on form elements.
493
+ Fixed bug where script or style elements could get modified by the DOMUtils processHTML method.
494
+ Fixed bug where the selected attribute could get lost when force root blocks logic got executed on IE. Patch contributed by Attila Mezei-Horvati.
495
+ Fixed bug where getAttribs method didn't handle boolean attributes correctly on IE.
496
+ Fixed so the paste from word dialog is presented if you paste content on an IE with to restrictive security settings.
497
+ Fixed so the paste_strip_class_attributes option is set to none by default in the paste plugin.
498
+ Removed default border=0 on tables for the default value of valid_elements.
499
+ Version 3.2.6 (2009-08-19)
500
+ Added new wordcount plugin, this will display the number of typed words as you write. Contributed by Andrew Ozz.
501
+ Added new getNext and getPrev methods to DOM utils. These will return the first matching sibling.
502
+ Fixed bug where it was impossible to place the caret after a table on Gecko. It will now add a paragraph after tables.
503
+ Fixed bug where inline dialogs would fail if used in a window opened using a showModalDialog. Patch contributed by Derek Britt.
504
+ Fixed bug where IE could sometimes render a unknown runtime error on invalid input HTML.
505
+ Fixed bug where some incorrectly placed tables wouldn't be moved outside the paragraphs on IE.
506
+ Fixed bug where uppercase script/style element wouldn't be handled correctly and converted to valid lowercase.
507
+ Fixed bug where some WebKit versions on Mac OS X would produce issues with hidden select fields.
508
+ Fixed bug where the media plugin would fail on WebKit since the node wasn't properly imported to the right document.
509
+ Fixed bug where absolute URLs for the TinyMCE script using a base href element would cause loading problems in IE 6/7.
510
+ Fixed bug where pasting using the paste plugin wasn't possible on IE with to restrictive security settings.
511
+ Fixed bug where pasting of whitespace was impossible using the new custom paste method.
512
+ Fixed bug where pasting on some WebKit browsers would not work if you pasted specific contents due to a WebKit bug.
513
+ Fixed bug where doctypes with multiple lines would not be parsed correctly by the fullpage plugin. Patch contributed by Colin.
514
+ Fixed bug where the autoresize plugin would break the fullscreen functionality.
515
+ Fixed bug where tables would be chopped up running on IE using invalid contents and pasting paragraphs into a cell.
516
+ Fixed bug where the each method of jQuery build didn't iterate styleSheets. We now use the TinyMCE API one instead.
517
+ Fixed bug where auto switching to paragraphs after headers some times failed in Gecko.
518
+ Fixed so all editor options gets passed to the Serializer class. Patch contributed by Jasper Mattsson.
519
+ Fixed so script/style blocks isn't wrapped in paragraphs as other inline elements.
520
+ Fixed so the XHR requests sends the X-Requested-With HTTP header.
521
+ Fixed so the data url scheme is handled in the tinymce.util.URI class.
522
+ Changed inline documentation to use moxiedoc style comments.
523
+ Removed the compat2x plugin people should have upgraded to the 3.x API by now. 3.0 was released more then a year ago.
524
+ Re-added Gecko specific message for users who doesn't understand the security concept regarding paste.
525
+ Version 3.2.5 (2009-06-29)
526
+ Added new jQuery plugin for the jQuery specific package. This enables you to more easily load and use TinyMCE.
527
+ Added new autoresize plugin contributed by Peter Dekkers. This plugin will auto resize the editor to the size of the contents.
528
+ Fixed so all packages have the same directory structure. Previous releases had a different structure for the production package.
529
+ Fixed so the paste from word dialog forces the contents to be processed as word contents even if it's not.
530
+ Fixed so the jQuery build adapter build works. It's currently only excluding Sizzle.
531
+ Fixed so noscript element contents is retained during the editing process.
532
+ Fixed bug where the getBookmark method would need a "simple" string input when the documented way is a boolean.
533
+ Fixed bug where invalid contents could break the fix_table_elements logic.
534
+ Fixed bug where Sizzle specific attributes would be serialized if the valid_elements was set to *[*].
535
+ Fixed bug where IE would produce an error if you specified a relative content_css and opened the paste dialog.
536
+ Fixed bug where pasting images on IE would produce broken images if they came from an external site.
537
+ Fixed bug where memory was leaked if you add/remove controls dynamically. Some event handlers wasn't removed properly.
538
+ Fixed bug where domain relaxing wasn't treated correctly if you added it after the TinyMCE script element.
539
+ Fixed bug where the activeEditor wasn't set to null if the last editor instance was removed.
540
+ Fixed bug where IE was leaking memory on the onbeforeunload event due to some recently introduced logic. Patch contributed by Options.
541
+ Fixed bug where inserting tables in Safari 4 didn't work due to a new WebKit bug where some element names are reserved.
542
+ Fixed bug where URLs having a :// value in the query string would make it absolute regardless of URL settings.
543
+ Fixed the WebKit specific bug where DOM Ranges would fail if the node wasn't attached to something in a different way.
544
+ Removed the auto_resize option and the resizeToContent method from the tinymce.Editor class. Use the new autoresize plugin instead.
545
+ Version 3.2.4.1 (2009-05-25)
546
+ Fixed bug where Gecko browsers would produce an extra space after for example strong when loaded from sub domains.
547
+ Fixed bug where script elements would be removed if they where placed inside a paragraph element.
548
+ Fixed bug where IE 8 would produce 1 item remaining when loading CSS files dynamically with an empty cache.
549
+ Fixed bug where bound events would be removed from other editor instances if a specific one was removed.
550
+ Fixed various bugs and issues with script and style elements inside the editor.
551
+ Fixed so all script contents gets wrapped in CDATA sections so that they can be parsed using a XML parser.
552
+ Fixed so it's impossible for elements marked as closed to have child nodes rendered in output.
553
+ Version 3.2.4 (2009-05-21)
554
+ Added new paste_remove_styles/paste_remove_styles_if_webkit option to paste plugin concept contributed by Hadrien Gardeur.
555
+ Added new functionality to paste plugin contributed by Scott Eade aka monkeybrain.
556
+ Added new paste_block_drop option to the paste plugin this is disabled by default and will block any drag/drop event.
557
+ Added new bind/unbind methods to DOMUtils these works like Event.add/Event.remove but is easier to access.
558
+ Added new paste_dialog_width/paste_dialog_height options to paste pluign. Enables you to change the dialog sizes.
559
+ Fixed bug on IE 8 where it would sometimes produce a "1 item remaining" status message that would never finish.
560
+ Fixed bug on Safari 4 beta that would produce DOM Range exceptions on the DOMUtils split method since the browser has a bug.
561
+ Fixed bug where the paste plugin could accidentally think that some word sentences was supposed to be list elements.
562
+ Fixed bug where paste plugin would produce one extra empty undo level on some browsers.
563
+ Fixed bug where spans wasn't produced correctly on new line when the keep_styles option was enabled.
564
+ Fixed bug where the caret would be placed at the beginning of contents in IE 8 if you selected colors from the color pickers.
565
+ 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.
566
+ Fixed so internal events for instances gets removed when the DOMUtils instance is removed.
567
+ Fixed so preventDefault and stopPropagation methods can be used on the event object in all browsers.
568
+ Version 3.2.3.1 (2009-05-05)
569
+ Fixed bug where paragraphs containing form elements such as input or textarea would be removed.
570
+ Fixed bug where some IE versions would produce a wrapper function for events attributes.
571
+ Fixed bug where table cell contents could be removed if you pressed return/enter at the end of the cell contents.
572
+ Fixed bug where the paste plugin would remove a extra character if the selection range was collapsed.
573
+ Fixed bug where creating tables with % width wouldn't be handled correctly on WebKit browsers.
574
+ Version 3.2.3 (2009-04-23)
575
+ Added new paste plugin logic. This new version will autodetect Word contents and clean it up.
576
+ Added a optional root element argument to getPos so you can tell it where to stop the calculation.
577
+ Added new DOM ready logic to remove the usage of document.write. We now use basically the same method as jQuery.
578
+ Fixed bug where WebKit browsers would fail when selecting all contents in the area using Ctrl+A.
579
+ Fixed bug where IE would produce paragraphs with empty inline style elements.
580
+ Fixed bug where WebKit browsers would fail when inserting tables with a non pixel width.
581
+ Fixed bug where block elements could get a redundant br element at the end of the element.
582
+ Fixed bug where the tabfocus plugin only worked with a single editor instance on page.
583
+ Fixed bug where IE 8 was loosing caret position if the selection was collapsed and a menu was clicked.
584
+ Fixed bug with application/xhtml+xml mode where menus wasn't working properly.
585
+ Fixed bug where the onstop workaround fix for IE would produce errors in an ASP update panel.
586
+ Fixed bug where the submit function override could produce errors if executed in the wrong scope.
587
+ Fixed bug where the area element wasn't closed by a short ending.
588
+ Fixed various number issues in the style plugins properties dialog. Contributed by datpaulchen.
589
+ Fixed issues with size suffix values in the style plugin dialog.
590
+ Fixed issue where hasDuplicate variable would leak out to the global space due to a bug in the Sizzle engine.
591
+ Fixed issue where the paste event would fire a dialog warning on IE since we extracted the text contents.
592
+ Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported.
593
+ Version 3.2.2.3 (2009-03-26)
594
+ Fixed regression bug with the getPos method, it would return invalid if the view port was to small.
595
+ Version 3.2.2.2 (2009-03-25)
596
+ Fixed so the DOMUtils getPos method can be used cross documents if needed.
597
+ Fixed bug where undo/redo wasn't working correctly in Gecko browsers.
598
+ Version 3.2.2.1 (2009-03-19)
599
+ Added support for tel: URL prefixes. Even though this doesn't match any official RFC.
600
+ Fixed so the select method of the Selection class selects the first best suitable contents.
601
+ Fixed bug where the regexps for www. prefixes for link and advlink dialogs would match wwwX.
602
+ Fixed bug where the preview dialog would fail to open if the content_css wasn't defined. Patch contributed by David Bildstr�m (ChronoZ).
603
+ Fixed bug where editors wasn't converted in application/xhtml+xml mode due to an issue with Sizzle.
604
+ Fixed bug where alignment would fail if multiple lines where selected.
605
+ Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported.
606
+ Version 3.2.2 (2009-03-05)
607
+ Added new CSS selector engine. Sizzle the same one that jQuery and other libraries are using.
608
+ Added new is and getParents methods to the DOMUtils class. These use the new Sizzle engine to select elements.
609
+ Added new removeformat_selector option, enables you to specify a CSS selector pattern of elements to remove when using removeformat.
610
+ Fixed so the getParent method can take CSS expressions when selecting it's parents.
611
+ Added new ant based build process, includes a new javabased preprocessor and a yuicompressor ant task.
612
+ Moved the tab_focus logic into a plugin called tabfocus, so the old tab_focus option has been removed from the core.
613
+ Replaced the TinyMCE custom unit testing framework with Qunit and rewrote all tests to match the new logic.
614
+ Moved the examples/testcases to a root directory called tests since it now includes slickspeed.
615
+ Fixed bug where nbsp wasn't replaced correctly in ForceBlocks.js. Patch contributed by thorn.
616
+ 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.
617
+ Fixed bug where it was impossible to get out of a link at the end of a block element in Gecko.
618
+ Fixed bug where the latest WebKit nightly would fail when changing font size and font family.
619
+ Fixed bug where the latest WebKit nightly would fail when opening dialogs due to changes to the arguments object.
620
+ Fixed bug where paragraphs wasn't added to elements positioned absolute using classes.
621
+ Fixed bug where font size values with dot's like 1.4em would produce a class instead of the style value.
622
+ Fixed bug where IE 8 would return an incorrect position for elements.
623
+ Fixed bug where IE 8 would render colorpicker/filepicker icons incorrectly.
624
+ Fixed bug where trailing slashes for directories in URLs would be removed.
625
+ Fixed bug where autostart and other boolean values in the media dialog wouldn't be stored/parsed correctly.
626
+ Fixed bug where the repaint call for the media plugin wouldn't be executed due to a typo in the source.
627
+ Fixed bug where id attribute of object elements wasn't kept intact by the media plugin.
628
+ Fixed bug where preview of embeded elements when the media_use_script option was used would fail.
629
+ Fixed bug where inlinepopups could be rendered at an incorrect location on IE 6 while dragging.
630
+ Fixed bug where the blocker shim could be placed at an incorrect location on IE 6.
631
+ Fixed bug where the multiple and size attributes of select elements would produce incorrect values while running in IE.
632
+ Fixed bug where IE would loose the caret position is you selected a color from the color drop down.
633
+ Fixed bug where remove format wouldn't work on IE since it couldn't remove span elements that had style information.
634
+ Fixed bug where Opera was removing links when removing formatting from selected contents.
635
+ Fixed bug where paragraphs could be produced inside non positional elements styled with the CSS position value of static.
636
+ Fixed bug where removeformat wouldn't work if you selected part of a span in IE.
637
+ Fixed bug where media plugin didn't retain the style attribute on embed/object elements.
638
+ Fixed bug where auto focus on empty editor instances could produce strange results if you inserted an image into it.
639
+ Fixed bug where &nbsp; characters would be removed in FF when inserted with the mceInsertContent or selection.setContent methods.
640
+ Fixed bug where warning message of missing paste support wasn't displayed on WebKit browsers.
641
+ Fixed bug where anchor links could include other links. The selected range is now unlinked before adding news links to it.
642
+ Fixed memory leak when TinyMCE was used with prototype. Patch contributed by James Ots.
643
+ Fixed so the non documented fullpage_hide_in_source_view option for the fullpage plugin works again in the 3.x branch.
644
+ 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.
645
+ Fixed so the source view dialog sets a source_view state to the event object. Enables plugins to intercept the source view mode.
646
+ Fixed various validation issues with the html dialogs and pages.
647
+ Removed ask mode option since there is way better ways of doing this now. Use the add/remove control methods instead.
648
+ Removed logic for compatibility with Safari 2.x, this browser is no longer supported since no one is using it.
649
+ Removed the auto domain relaxing feature. If loading scripts cross sub domains it's better to specify the document.domain by hand.
650
+ Version 3.2.1.1 (2008-11-27)
651
+ Added new theme_advanced_default_background_color/theme_advanced_default_foreground_color options. Patch contributed by David Bildstr�m (ChronoZ).
652
+ Fixed font style formatting compatibility issue with Adobe Air.
653
+ Fixed so legacy font elements get converted into spans even if cleanup_on_startup isn't enabled.
654
+ Fixed bug where pre elements could be incorrectly modified by an IE bug workaround. Patch contributed by hu vime.
655
+ Fixed bug where input elements inside inlinepopups wasn't editable in Firefox 2.
656
+ Fixed bug where the xhtmlxtras plugin wasn't replacing attribute values correctly.
657
+ Fixed bug where menu buttons in skin variants would look strange due to IE 8 fixes.
658
+ Fixed bug where WebKit browsers would on backspace take you back to the previous page if the editor was empty.
659
+ Fixed bug where DOMUtils decode method wouldn't handle strings larger than 4096kb due to node chunking.
660
+ Fixed bug where meta key wasn't handled as ctrl key on Mac OS X for custom keyboard short cuts.
661
+ Fixed bug where init event would get fired twice on WebKit on Mac OS X.
662
+ Version 3.2.1 (2008-11-04)
663
+ Added support for custom icon image for drop menus. Use icon_src to set a custom image directly.
664
+ Added new media_strict option to media plugin. Enables you to control if the flash embed is strict or not. Enabled by default.
665
+ Fixed so the editors script files gets dynamically loaded without using XHR or eval.
666
+ Fixed so the media plugin outputs valid XHTML object elements for Flash movies. Can be disabled with the media_strict option.
667
+ Fixed so dynamic loading doesn't require eval calls on non IE browsers for better Air support.
668
+ Fixed bug where the editor wasn't treated as empty if the remaining paragraph had attributes.
669
+ Fixed bug where id's of elements was removed ones they got wrapped in paragraphs. Patch contributed by ChronoZ.
670
+ Fixed bug where WebKit browsers where placing list elements inside paragraph elements.
671
+ Fixed bug where inserting images or links would produce absolute urls on WebKit browsers.
672
+ Fixed bug where values for checked, readonly, disabled and selected attributes was incorrect on IE.
673
+ Fixed bug where positive values for checked, readonly, disabled and selected attributes wasn't forced to valid values.
674
+ Fixed bug where selecting the first option in a native select box would produce an undefined error.
675
+ Fixed bug where tabindex 32768 could be outputted on IE if element attributes where cloned.
676
+ Fixed bug where the media dialogs preview window would display incorrect contents due to duplicate clsid prefixes.
677
+ Fixed bug where non pixel or percent heights for textarea elements would produce errors on IE.
678
+ Fixed bug where cdata sections in script elements wasn't handled correctly.
679
+ Fixed bug where nowrap of table cells would produce a 65535 value output.
680
+ Fixed bug where media plugin would produce an error if you selected the first item in the items list.
681
+ Fixed bug where media plugin would modify links with the item _value in them.
682
+ Fixed so table width/height is better forced if inline_styles is enabled. Patch contributed by daKmoR.
683
+ Fixed css for IE 8 such as opacity and other rendering quirks.
684
+ Version 3.2.0.2 (2008-10-02)
685
+ Fixed bug where the SelectBox and NativeSelectBox wasn't updated correctly if undefined was passed to them.
686
+ Fixed bug where the style dropdown wasn't correctly changed back to it's original state when element had no class.
687
+ Fixed bug where multiple pending font styles wasn't handled correctly.
688
+ Fixed so you can disable all auto css loading for dialogs by setting the popups_css option to false.
689
+ Version 3.2.0.1 (2008-09-17)
690
+ Fixed bug where font sizes and faces wouldn't be changed correctly when there was a parent with a different style.
691
+ Fixed bug where adding fonts to the same selection would produce redundant spans.
692
+ Version 3.2 (2008-09-11)
693
+ Added new text style support, it will now use span elements internally instead of font elements.
694
+ Added new improved support for the theme_advanced_font_sizes option, check the Wiki for details.
695
+ Added new keep_style setting that maintains the text style on return/enter on non IE browsers, enabled by default.
696
+ Added new onBeforeSetContent/onBeforeGetContent/onSetContent/onGetContent events to the Selection class.
697
+ Added new selectByIndex method to ListBox class. This enables you to select list items by an index instead of a value.
698
+ Added new possibility to the select method of the ListBox class. This can now have a selector function as it's value argument.
699
+ Added new possibility to skip the loading of popups css by setting the feature popup_css to the value false.
700
+ Added new possibility to skip translation of popups by setting the translate_i18n feature to false.
701
+ 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.
702
+ Added missing allowfullscreen and quality options for flash elements, this will now get correctly stored.
703
+ Fixed bug where table cell dialog didn't close properly unless the accessibility_warnings option was set to false.
704
+ Fixed bug where the modal dialog blocker element for inlinepopups wasn't placed at a correct location if the page had scroll.
705
+ Fixed bug where non inline dialogs didn't close correctly if the inlinepopups plugin was used.
706
+ Fixed bug where non inline dialogs could make the modal dialog blocker to work incorrectly.
707
+ Fixed bug where style select wasn't populated correctly if you pressed the arrow. Patch by Hari Karam Singh.
708
+ Fixed bug where toggling the fullscreen mode didn't restore scrollbars on IE when the editor was inside a frame. Patch by Jacob Barrett.
709
+ Fixed bug where inserting flash contents using the template plugin didn't work correctly.
710
+ Fixed bug where inserting flash contents using the selection.setContent or mceInsertContent command didn't work correctly.
711
+ Fixed bug where IE would produce an exception if a comment started with -.
712
+ Fixed bug where the blockquote button would wrap lists incorrectly on non IE browsers.
713
+ Fixed bug where Opera would display BR elements in the element path.
714
+ Fixed bug where xhtmlxtras didn't insert elements correctly on IE.
715
+ Fixed bug where the buttons wasn't activated correctly in the xhtmlxtras plugin.
716
+ Fixed bug where adding an object as the style attribute for the dom setAttribs method wouldn't work.
717
+ Fixed bug where the background color would bleed out to parent container element in Gecko.
718
+ 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).
719
+ Fixed bug where event blocker element wasn't positioned correctly for the inlinepopups plugin.
720
+ Fixed bug where pasting from Office 2007 would produce an odd comment in the contents.
721
+ Fixed bug where the paste as plain text could remove an extra character. Patch contributed by Speednet.
722
+ Fixed bug where some characters where missing for the paste_replace_list option. Patch contributed by Speednet.
723
+ Fixed bug where removing non existing editor instances by the mceRemoveControl command would produce an error.
724
+ Fixed bug where meta elements with the name description would produce errors in IE.
725
+ Fixed bug where color and background colors wouldn't be updated properly.
726
+ Fixed bug where the createMenuButton of tinymce.ControlManager didn't implement the last class argument.
727
+ Fixed bug where the editor_css option was relative from the TinyMCE installation directory not the current page.
728
+ Fixed bug where elements wouldn't be padded if the element contained bogus br elements. For example TD elements.
729
+ Fixed bug where parsing of <body > in fullpage plugin would produce an error.
730
+ Fixed bug where relative urls with just ./ would become an empty string.
731
+ Fixed bug where outdent button would be disabled if inline_styles where set to false.
732
+ Fixed bug where replace with an empty search string would produce an error on IE.
733
+ Fixed bug where restoring the overflow state of the body in fullscreen plugin running on IE would produce vertical scrollbars.
734
+ Fixed bug where pressing return/enter in list items would sometimes move the caret the to top of the content area in FF.
735
+ Fixed bug where the style listbox wouldn't be updated correctly if you used the use_native_selects option.
736
+ Fixed bug where WebKit browsers would produce a div element when ending list elements using return.
737
+ Fixed so translation of popup contents only occurs if it's needed.
738
+ Optimized the URI object in regards or converting absolute URIs to relative URIs.
739
+ Version 3.1.1 (2008-08-18)
740
+ Added new getSize method to DOMUtils it will return the dimensions only of an element.
741
+ Added new alert/confirm methods to the tinyMCEPopup class to prevent focus problems and also to shorten method calls.
742
+ Added new plugin_preview_inline option to preview plugin to enable/disable native/inline dialogs.
743
+ Added new readonly option. If this is set the editor will only display the contents for the user.
744
+ Added missing tabindex and accesskey to input elements in the default valid_elements setup.
745
+ Updated firebug lite to 1.2, to enable it use the tiny_mce_dev.js?debug=1 on the development package.
746
+ Fixed so the preview dialog in the preview plugin uses inline dialogs/popups.
747
+ Fixed so CDATA sections remains intact through the serialization process of the DOM tree.
748
+ Fixed various issues with the getAttrib command. It will now return more correct values.
749
+ Fixed bug where the embed element wasn't properly parsed in the media plugin it now supports 3 formats.
750
+ Fixed bug where the noshade attribute was serialized incorrectly on IE.
751
+ Fixed bug where editing an existing link element didn't force it relative.
752
+ Fixed bug where image link creation fails on Safari if the image is aligned.
753
+ Fixed bug where it was possible to scroll the fullscreen mode in Opera 9.50.
754
+ Fixed bug where removal of center image alignment would fail. Patch contributed by Andrew Ozz.
755
+ Fixed bug where inlinedialogs didn't work properly if the doctype was incorrect in IE.
756
+ Fixed bug where cross domain loading didn't work correctly in Opera 9.50.
757
+ Fixed bug where breaking huge text blocks with return/enter key would scroll to end of block.
758
+ Fixed bug where replace button kept inserting the replacement text even if there is no more matches.
759
+ Fixed bug with fullpage plugin where value wasn't set correctly. Patch contributed by Pascal Chantelois.
760
+ Fixed bug where the dom utils setAttrib method call could produce an exception if the input was null/false.
761
+ Fixed bug where pressing backspace would sometimes remove one extra character in Gecko browsers.
762
+ Fixed bug where the native confirm/alert boxes would move focus to parent document if fired in dialogs.
763
+ Fixed bug where Opera 9.50 was telling you that the selection is collapsed even when it isn't.
764
+ Fixed bug where mceInsertContent would break up existing elements in Opera and Gecko.
765
+ Fixed bug where TinyMCE fails to detect some keyboard combos on Mac, contributed by MattyRob.
766
+ Fixed bug where replace all didn't move the caret to beginning of text before searching.
767
+ Fixed bug where the oninit callback wasn't executed correctly when the strict_loading_mode option was used, thanks goes to Nicholas Oxhoej.
768
+ Fixed bug where a access denied exception was thrown if some other script specified document.domain before loading TinyMCE.
769
+ Fixed so setting language to empty string will skip language loading if translations are made by some backend.
770
+ Fixed so dialog_type is automatically modal if you use the inlinepopups plugin use dialog_type : "window" to re-enable the old behavior.
771
+ Version 3.1.0.1 (2008-06-18)
772
+ Fixed bug where the Opera line break fix didn't work correctly on Mac OS X and Unix.
773
+ Fixed bug where IE was producing the default value the maxlength attribute of input elements.
774
+ Version 3.1.0 (2008-06-17)
775
+ Fixed bug where the paste as text didn't work correctly it encoded produced paragraphs and br elements.
776
+ Fixed bug where embed element in XHTML style didn't work correctly in the media plugin.
777
+ Fixed bug where style elements was forced empty in IE. The will now be wrapped in a comment just like script elements.
778
+ Fixed bug where some script elements wrapped in CDATA could fail to be serialized correctly.
779
+ Fixed bug where FF 3 produced -moz- internal styles in some style attributes.
780
+ Fixed bug where query strings and external URLs didn't work correctly in style attributes.
781
+ Fixed bug where shape attribute of area elements got serialized as rect regardless of it's initial value in IE 6.
782
+ Fixed bug where selection of elements inside layers would fail in IE since focus was moved to the document body.
783
+ Fixed bug where pressing enter/return in an editable select box would produce an __mce_add_custom__ class value.
784
+ Fixed bug where changing font size of text placed inside a colored text chunk would remove the parent node.
785
+ Fixed bug where Opera 9.5 final produced a strange line break behavior due to a workaround for previous Opera versions.
786
+ Fixed bug where text/background color would produce a strange focus problem when you tried to click on the body in IE.
787
+ Fixed issue where selecting the title of an listbox equals the old 2.x behavior of changing the value to an empty string.
788
+ Fixed issue where it was common for the media plugin to break if the _value attribute wasn't added for the param element.
789
+ Fixed issue where the wrong parent editor instance might be updated if you use fullscreen mode in an incorrect way.
790
+ Fixed issue where Safari was producing a warning about the base element not being closed correctly.
791
+ Removed redundant form element name matching from regexp in the DOMUtils class.
792
+ Version 3.0.9 (2008-06-02)
793
+ Added new contextmenu_offset_x/contextmenu_offset_y options for the contextmenu plugin.
794
+ Added cite attribute to the default rule for the blockquote element.
795
+ Added support for using arrow keys for selection of items in listboxes.
796
+ Added support for using arrow keys for selection of items in dropmenus.
797
+ Fixed bug where blockformat change on elements with BR inside them didn't change correctly on Firefox.
798
+ Fixed bug where removing table rows inside thead or tfoot would remove the whole table if it was the last one.
799
+ Fixed bug where XHR synchronous mode didn't execute the callback handlers synchronously.
800
+ Fixed bug where setting border to 0 didn't add border: 0 to the style attribute when using the advimage dialog.
801
+ 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.
802
+ Fixed bug where the store/restore of a selection didn't work correctly in non IE browsers.
803
+ Fixed bug where only the first element would be invalid for the invalid_elements option.
804
+ Fixed bug where paste as plain text didn't encode the characters correctly when they where inserted.
805
+ Fixed bug where HTML source window couldn't be maximized on Gecko when the maximizable feature was enabled.
806
+ Fixed bug where color selection using the color picker could produce exception in IE.
807
+ Fixed bug where font size changes could produce produce extra redundant elements.
808
+ Fixed bug where IE could produce unknown runtime error if you replaced a image with another image from a separate frame.
809
+ Fixed bug where the domLoaded state for the Event class wasn't set correctly if the editor was loaded dynamically using the gzip compressor.
810
+ Fixed bug where handling of the base element for a page would produce incorrect urls. Based on a patch contributed by John LeSueur.
811
+ Fixed bug where table constraint alert boxes was presented with an empty value and wasn't the skinned inline ones.
812
+ 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.
813
+ Fixed bug where encoding set to xml didn't work as expected. It now encodes the contents into XML entities.
814
+ Fixed bug where numrows didn't work correctly for the merge cells dialog of the table plugin.
815
+ Fixed bug where the onGetContent event was fired even when the no_events flag was set.
816
+ Fixed bug where the preview panels for the advimage and the media plugin could overflow on Safari and FF 3.
817
+ Fixed bug where the editing and removal of abbr elements using the xhtmlxtras plugin working correctly on IE.
818
+ Fixed bug where save button in the save plugin didn't work correctly on IE.
819
+ Fixed bug where dragging layers didn't work as expected since it would snap back to it's original location if you saved.
820
+ Fixed bug where the description of the template plugin dialog wasn't updated correctly.
821
+ Fixed bug where the values for frame and rules in the table dialogs where swapped.
822
+ 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.
823
+ Fixed bug where ask mode would lock the focused textarea if you pressed cancel in the confirm dialog on FF 3.
824
+ Fixed bug where ask mode would produce contents for empty textareas if you reloaded the page.
825
+ Fixed so the onGetContent event gets the full pass through object just like the other events.
826
+ Fixed so attributes for block elements remains the same when you change format of a element.
827
+ Version 3.0.8 (2008-04-30)
828
+ Fixed bug where IE would produce an error if textareas without names where converted.
829
+ Fixed bug where editor wasn't forced empty when there was only a single br or empty paragraph left.
830
+ Fixed bug where IE would produce an warning message if object elements where produced in the media plugins preview running on https.
831
+ Fixed bug where new addVer function didn't handle hash items correctly. Patch contributed by Mirek Burkon.
832
+ Fixed bug where font_size_style_values option wasn't applied correctly to fonts inside the editor.
833
+ Fixed bug where image selection could be lost if a image was edited using context menu on IE.
834
+ Fixed bug where style values wasn't updated properly due to an invalid regexp.
835
+ Fixed bug where IE 6 where displaying warning message about insecure items when inserting an image while using https. Patch contributed by Norifumi Sunaoka.
836
+ Fixed bug where IE was producing an auto save message if you selected a color from the color split button.
837
+ Fixed bug where backspace sometimes would move the caret to the end of the previous block in Gecko.
838
+ Fixed bug where the rowlayout manager didn't work as described in the documentation.
839
+ Fixed bug where the default options for the fullpage plugin wasn't applied correctly.
840
+ Fixed bug where selection would jump one character if you applied a styles to a words in non IE browsers.
841
+ Fixed bug where undo levels wasn't added correctly if you went back in undo history and added a new event.
842
+ Fixed bug where font size dropdown didn't mark the selected size in IE.
843
+ Fixed bug where the size of the editor was determined using clientWidth instead of offsetWidth.
844
+ Fixed so the onchange event doesn't fire on the initial undo level, it will also fire when the editor is blurred.
845
+ Fixed so the advhr plugin produces XHTML valid output instead of non standard attributes.
846
+ Fixed so blockquote gets converted into [quote] in when the bbcode plugin is enabled.
847
+ Fixed so theme_advanced_font_sizes can be named for example Font 1=1, Font 2=2 etc.
848
+ Fixed so editor_selector/editor_deselector can be regexps. By default only strings are allowed not part regexps like before.
849
+ Fixed so that the version suffix is optional. It still requires the build process so you need to export it manually.
850
+ 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.
851
+ Version 3.0.7 (2008-04-14)
852
+ Added new version suffix to all internal GET requests to make sure that the users cache gets cleared correctly.
853
+ Fixed issue with isDirty returning true event if it wasn't dirty on IE due to changes in tables during initialization.
854
+ Fixed memory leak in IE where if a page was unloaded before all images on the page was loaded it would leak.
855
+ Fixed bug in IE where underline and strikethrough could produce an exception error message.
856
+ Fixed bug where inserting paragraphs in totally empty table cells would produce odd effects.
857
+ Fixed bug where layer style data wasn't updated correctly due to some performance enhancements with the DOM serializer.
858
+ Fixed bug where it would convert the wrong element if there was two elements with the same name and id on the page.
859
+ Fixed bug where it was possible to add style information to the body element using the style plugin.
860
+ Fixed bug where Gecko would add an extra undo level some times due to the blur event.
861
+ Fixed bug where the underline icon would get active if the caret was inside a link element.
862
+ Fixed bug where merging th cells not working correctly. Patch contributed by Andr� R.
863
+ Fixed bug where forecolorpicker and backcolorpicker buttons where rendered incorrectly when the o2k7 skin was used.
864
+ Fixed bug where comment couldn't contain -- since it's invalid markup. It will now at least not break on those invalid comments.
865
+ 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.
866
+ Fixed bug where entities wasn't encoded correctly inside pre elements since they where protected from whitespace removal.
867
+ Fixed bug where color split buttons where rendered incorrectly on IE6 when using the non default theme.
868
+ Fixed so caret is placed after links ones they are created, to improve usability of the editor.
869
+ Fixed so you can select tables by clicking on it's borders in non IE browsers to normalize the behavior.
870
+ 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.
871
+ Fixed so buttons can be labeled, currently only works with the default skin, so it's kind of experimental. Patch contributed by Daniel Insley.
872
+ Fixed so forecolorpicker and backcolorpicker remembers the last selected color. Patch contributed by Shane Tomlinson.
873
+ Fixed so that you can only execute the mceAddEditor command once for the same instance name.
874
+ Fixed so command functions added with addCommand can pass though the call to default handles if it returns true.
875
+ Version 3.0.6.2 (2008-04-07)
876
+ Fixed bug where empty tables couldn't be edited correctly on non IE browsers if they where loaded into the editor.
877
+ Fixed bug where it was impossible to resize layers correctly in IE since it thought it was an image.
878
+ Fixed bug where an editor instance was stealing focus in IE resulting in a scroll to the editor on page reloads.
879
+ Fixed bug where Safari was crashing on Mac OS X if you closed dialogs using the Esc key.
880
+ Version 3.0.6.1 (2008-04-04)
881
+ Added support for the missing mceAddFrameControl command. The input for this command has changed so consult the Wiki.
882
+ Fixed bug where sub menus for the drop menus would leave an empty element behind.
883
+ Fixed memory leak in IE if the editor was placed in a frame or iframe.
884
+ Version 3.0.6 (2008-04-03)
885
+ Added elements to the default value of valid_elements option. It now contains all XHTML strict elements and a few transitional.
886
+ Added more accessibility fixes, it's now possible to navigate and close list boxes and split button menus with the keyboard.
887
+ Added missing getInfo method to the contextmenu and safari plugin, this caused problems for the Drupal module.
888
+ Added new inlinepopups_zindex option to the inlinepopups plugin so that you can configure the default start z-index.
889
+ Added new setControlType method to the tinymce.ControlManager class. This method enables you to override the default classes.
890
+ 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.
891
+ Fixed bug where attribute rules for the DOM Serializer couldn't contain - or _ characters in their names.
892
+ Fixed bug where inlinepopups event blocker and modal dialog blocker elements produced vertical scrollbars.
893
+ Fixed bug where there was a rendering issue with quirks mode in Safari moving the resize handle to an incorrect position.
894
+ Fixed bug with forecolor/backcolor controls on IE. Sometimes elements positioned relative will generate display errors.
895
+ Fixed bug where a p2 was leaking out in the global name space when you selected a color from the forecolor/backcolor controls.
896
+ Fixed bug where empty paragraphs didn't work as expected in browsers other than IE.
897
+ Fixed bug where the load method of the tinymce.dom.ScriptLoader didn't check if the file was already loaded.
898
+ 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.
899
+ Fixed bug where the theme_advanced_link_targets option didn't work correctly with the advanced themes link dialog. Patch contributed by Arnold B.
900
+ Fixed bug where the style command would merge classes into empty span elements.
901
+ Fixed bug where the style command would remove empty span elements outside the current selection.
902
+ Fixed bug where the fix for the Safari backspace bug removed all editor contents if it was filled with empty paragraphs.
903
+ Fixed bug where alert and confirm boxes opened by the inlinepopups plugin would produce an exception if domain relaxing was used.
904
+ Fixed bug where Safari was adding style attributes to all elements when you paste them into the editor.
905
+ Fixed bug where the spellchecker menus was visually incorrect since the space for the non existing icon was still there.
906
+ Fixed bug where remove_linebreaks option didn't remove line breaks inside the text contents of a element.
907
+ Fixed bug where Safari 3.1 was introducing _mc_tmp into paragraphs due to the new querySelectorAll and a TinyMCE specific workaround.
908
+ 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.
909
+ 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.
910
+ Fixed bug where class attribute on some span elements was removed on cleanup.
911
+ Fixed bug where resizing the editor in IE could produce an exception if the editor width/height got to be a negative value.
912
+ Fixed bug where wmv files wouldn't play since the src param was used instead of the url param.
913
+ Fixed bug where br elements would be added here and there in Gecko. Geckos internal _moz_dirty br elements where serialized as well.
914
+ Fixed bug where editing named anchors would produce two anchors instead of one updated one.
915
+ Fixed bug where arrow and function keys didn't work when an noneditable element was focused within the editor.
916
+ Fixed bug where the dispatcher could produce an exception if the listener list was altered inside an event callback.
917
+ 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.
918
+ Fixed bug where TinyMCE would not convert textareas with the same name attribute value. It will now generate an unique id for those textareas.
919
+ Fixed bug where backspace/delete key was deleting td elements inside tables while running on Gecko.
920
+ Fixed bug where Firefox 3.0b4 and Opera 9.26 where scrolling to the top of document when pressing return/enter.
921
+ Fixed bug where the template plugin wasn't just inserting the mceTmpl tagged element.
922
+ Fixed bug where the alert method of the default WindowManager implementation didn't translate input language strings like the inlinepopups dialog does.
923
+ Fixed bugs with the backspace behavior in Gecko. The caret was placed on incorrect locations in the DOM sometimes.
924
+ Fixed so advimage dialog and table dialogs has support for editable select boxes for the class value.
925
+ 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.
926
+ Fixed so the paste_use_dialog option works again it's enabled by default but can be disabled on IE. Patch contributed by Speednet.
927
+ Fixed so that the fullscreen editor is focused when switching fullscreen editing on.
928
+ Fixed so it's possible to edit images and links inside tables using the context menu.
929
+ Fixed so table dialogs and the advanced image dialog doesn't loose selection in IE if the dialogs where navigated/submitted with the keyboard.
930
+ Fixed so the theme_advanced_blockformats options can have named items for example title 1=h1;title 2=h2.
931
+ Fixed so it's possible to add a custom editor_css for the simple theme.
932
+ Fixed quirks with directionality rtl, patch contributed by Andrew Ozz.
933
+ Fixed so the inlinepopups default start zIndex is 300000.
934
+ Fixed typo in media plugin Shockware is now replaced with Shockwave.
935
+ Fixed psuedo memory leak in IE with the replaceChild method inside the DOMUtils.replace method.
936
+ Fixed so memory is released when an editor instance is removed from page.
937
+ Optimized the color split button menus so that they use less event handlers.
938
+ Removed the util/mclayer.js file since it's no longer used by any of the TinyMCE dialogs and is considered deprecated.
939
+ Version 3.0.5 (2008-03-12)
940
+ Added new black skin variant to the o2k7 skin contributed by Stefan Moonen.
941
+ Added new explode method to the tinymce core class. This does a split but removed whitespace it also defaults to a , delimiter.
942
+ 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.
943
+ Added new noscale option value for the scale select box for Flash in the media plugin.
944
+ Fixed bug where the menu for the ColorSplitButton wasn't removed when the editor was removed.
945
+ Fixed bug where font colors couldn't be edited correctly since the style of the element didn't get updated correctly.
946
+ Fixed bug where class of elements would get lost when TinyMCE was fixing incorrect HTML markup.
947
+ Fixed bug where table editing would produce double height values.
948
+ Fixed bug where width style value wouldn't be removed if you switched width unit from cm/em to pixels or percent.
949
+ Fixed bug where the search/replace input box wasn't auto focused like the other dialogs.
950
+ Fixed bug where the old mceAddControl command would use the fullscreen settings next time it created an instance.
951
+ Fixed bug where multiple lines where added to the target cell if you merged multiple empty cells.
952
+ Fixed bug where drop down menus would be incorrectly positioned inside scrollable divs.
953
+ Fixed bug where the separators of the silver skin variant didn't display correctly in IE 6.
954
+ Fixed bug where createStyleSheet seems to load scripts at opposite order in some IE versions.
955
+ Fixed bug where directionality could produce odd results for the UI and the dialogs.
956
+ Fixed bug where the DOM serializer wouldn't serialize custom namespaced attributes in IE 6 using the *[*] valid elements rule.
957
+ Fixed bug where table caption would be inserted after the thead element if you swapped a tr to be inside the thead.
958
+ Fixed bug where the youtube detection logic for the media plugin was to generic.
959
+ Fixed so the deprecated and undocumented theme_advanced_path_location set to none won't hide the whole statusbar.
960
+ Fixed so most input lists can have whitespace in them they are now split using the new tinymce.explode method.
961
+ Fixed so the popup_css and popup_css_add URLs are relative to where the current document is located.
962
+ Fixed various bugs and quirks with the store/restore selection logic.
963
+ Fixed so the editor starts in IE 8 standards mode but still that browser is very very buggy.
964
+ Fixed so dialog_type set to modal will block the background and other inline windows and only give access to the front most window.
965
+ Version 3.0.4.1 (2008-03-08)
966
+ Fixed critical bug where it was impossible to edit images when inlinepopups where used due to lost selection in IE.
967
+ Version 3.0.4 (2008-03-07)
968
+ Added new option constrain_menus, this enables you to force view port constraints on all menus. Contributed by Shane Tomlinson.
969
+ Fixed bug where table background wasn't visible inside the editor due to a default CSS rule overriding the style attribute.
970
+ Fixed bug where links would get a null class added if no styles was used in IE.
971
+ Fixed bug where spellchecker was auto focusing the editor in IE.
972
+ Fixed bug where document.domain would produce invalid argument if the editor was loaded in IE6 over a network UNC path.
973
+ Fixed bug where table height attribute was used, this is deprecated in XHTML so it now adds it as an style.
974
+ Fixed bug where textareas with style values would produce error in IE.
975
+ Fixed so the first element in each dialog is focused by default to enhance keyboard usage.
976
+ Fixed so you can add a mceFocus class to elements to make it auto focused.
977
+ Fixed so you can close dialogs using the esc key.
978
+ Fixed so you can press return/enter to submit the action of each dialog.
979
+ Fixed so tabbing inside an inline popups wont focus the resize anchor elements.
980
+ Fixed so you can press ok in inline alert messages using the return/enter key.
981
+ Fixed so textareas can be set to non px or % sizes for example em, cm, pt etc.
982
+ Fixed so non pixel values can be used in width/height properties for tables.
983
+ Fixed so the custom context menu can be disabled by holding down ctrl key while clicking.
984
+ Fixed so the layout for the o2k7 skin looks better if you don't have separators before and after list boxes.
985
+ Fixed so the sub classes get a copy of the super class constructor function to ease up type checking.
986
+ 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).
987
+ 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).
988
+ Version 3.0.3 (2008-03-03)
989
+ Fixed bug where an error about document.domain would be thrown if TinyMCE was loaded using a different port.
990
+ Fixed bug where mode exact would convert textareas without id or name if the elements option was omitted.
991
+ Fixed bug where the caret could be placed at an incorrect location when backspace was used in Gecko.
992
+ Fixed bug where local file:// URLs where converted into absolute domain URLs.
993
+ Fixed bug where an error was produced if a editor was removed inside an editor command.
994
+ Fixed bug where force_p_newlines didn't effect the paste plugin correctly.
995
+ Fixed bug where the paste plugin was producing an exception on IE if you pasted contents with middots.
996
+ Fixed bug where delete key could produce exceptions in Gecko sometimes due to the fix for the table cell bug.
997
+ 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.
998
+ Fixed bug where TinyMCE wouldn't initialize properly if ActiveX controls was disabled in IE.
999
+ Fixed bug where tables and other elements that had visual aids on them would produce an extra space after any custom class names.
1000
+ Fixed bug where search with an empty string would produce some odd "invalid pointer" error in IE.
1001
+ Fixed bug where elements like menus where placed at incorrect positions in Opera 9.26.
1002
+ 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.
1003
+ Fixed bug where focus of images could be lost in IE if you focused the accessibility confirm dialog in the advimage plugin.
1004
+ Fixed bug where nestled font elements would produce odd output like missing font elements.
1005
+ Fixed bug where text colors and styles got removed if invalid_elements included the font element.
1006
+ Fixed bug where text-decoration set to underline or line-through would remove other styles from span elements.
1007
+ Fixed bug where editor contents like \n\n would be incorrectly handled and processed as real line feeds.
1008
+ Fixed bug where incorrectly encoded urls with ampersands in them would be decoded incorrectly.
1009
+ Optimized the DOMUtils decode method to be a lot faster if the string doesn't have any entities to decode.
1010
+ Version 3.0.2.1 (2008-02-26)
1011
+ Fixed alert/confirm dialogs so they display correctly.
1012
+ Version 3.0.2 (2008-02-26)
1013
+ 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).
1014
+ 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).
1015
+ 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.
1016
+ Added new type parameter to the Editor.getParam function to reduce redundant logic for parsing hash tables.
1017
+ Added new isDone method to the ScriptLoaded class, this enables you to check if a script has been loaded or not.
1018
+ Added new resizeTo and resizeBy methods for the advanced theme. Can be called using tinyMCE.activeEditor.theme.resizeTo(w, h);
1019
+ Added new skin_variant option this can be used to extend existing skins with slight modifications like color.
1020
+ Added new variant of the o2k7 skin called "silver" based on a contribution made by Stefan Moonen.
1021
+ Fixed bug where the template plugin might produce errors if the template_mdate_classes wasn't configured.
1022
+ Fixed bug where the media plugin didn't convert the URLs for movies once they where inserted.
1023
+ Fixed bug where the style field for the advlink dialog didn't work correctly if you edited an existing link.
1024
+ 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.
1025
+ Fixed bug where initialization of multiple editors at the same time using the mceAddControl method would produce errors.
1026
+ Fixed bug where initialization of editors using mceAddControl command or new tinymce.Editor calls would fail during page load.
1027
+ Fixed bug where the check for domain relaxing could fail if the document.domain property was changed by another script.
1028
+ Fixed bug where textareas couldn't be named description or any other name that matches the meta elements in IE and Opera.
1029
+ Fixed bug where the element path would fail sometimes in IE due to "unknown runtime error" on innerHTML.
1030
+ Fixed bug where Safari would crash if you was hiding the editor before serializing the contents.
1031
+ Fixed bug where the editor wasn't scaled propertly in fullscreen mode using the old fullscreen_new_window option.
1032
+ Fixed bug where render method didn't load language packs in IE and Opera if you rendered an editor during page load.
1033
+ Fixed bug where resizing the browser window in fullscreen didn't resize the editor.
1034
+ Fixed bug where the blockquote command didn't move the caret inside the new empty blockquote if you used it on an empty document.
1035
+ 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.
1036
+ Fixed bug where restoration of selection at the beginning of an element could fail in Gecko.
1037
+ Fixed bug where caret restoration after a cleanup could place the it at an incorrect location.
1038
+ Fixed bug where delete key inside td elements would delete the cell in Gecko.
1039
+ Fixed so the blockquote button toggles individual lines. This behavior is a bit more like the old indentation behavior in the 2.x branch.
1040
+ Fixed so the dialog language packs only gets loaded the first time you open a dialog.
1041
+ Fixed so all classes in the whole UI is prefixed with "mce" to avoid collisions, use the skin converter to update your existing skins.
1042
+ Fixed so all classes in the inlinepopups logic is prefixed with "mce" to avoid collisions, use the skin converter to update your existing skins.
1043
+ Fixed so that the window in fullscreen mode can be resized when fullscreen_new_window option is enabled.
1044
+ Fixed so blockquote elements are formatted in the source output with an linefeed before and after it.
1045
+ Optimized the editor initialization by reducing the number of calls to getBookmark/moveToBookmark.
1046
+ Version 3.0.1 (2008-02-21)
1047
+ Added spellchecker plugin into the main package, but without any backend can be specified with the spellchecker_rpc_url option.
1048
+ Added src attribute for script elements to the default valid_elements option value.
1049
+ Added extra parameter to the class_filter callback it can now also filter out classes based on the whole CSS rule.
1050
+ Added support for domain relaxing, TinyMCE can now be loaded from an remote domain as long as they are on the same root domain.
1051
+ Added support for custom elements the new custom_elements option enables you to add non HTML elements to the editor.
1052
+ Added support for the W3C Selectors API that was added to latest nightly build of WebKit.
1053
+ Fixed bug where some object param element wasn't stored correctly using the media plugin.
1054
+ Fixed bug where Opera was scrolling to top of page is drop menus on list boxes where displayed.
1055
+ Fixed bug where IE6 was crashing if a format block was used on a container with anchor elements.
1056
+ Fixed bug where spans with font sizes wasn't handled correctly when editor was loading contents.
1057
+ Fixed bug where mode exact couldn't convert editors with name only. Id is no longer required but recommended.
1058
+ Fixed bug where the mceInsertRawHTML command produced an extra undo level.
1059
+ Fixed bug where the specific_textareas mode didn't work correctly this is the same thing as textareas now.
1060
+ Fixed bug where the values of input elements in the HTML page of dialogs pages where changed in IE.
1061
+ Fixed bug where fullscreen and fullpage plugins didn't work well together.
1062
+ Fixed bug where embed elements wasn't handled properly in the media plugin.
1063
+ Fixed bug where style information on span elements gets munged when fonts are converted to spans.
1064
+ Fixed bug where some entities in element attributes where encoded incorrectly in the latest WebKit build.
1065
+ Fixed bug where initialization would fail in IE if there where two input elements with the name submit in the form.
1066
+ Fixed bug where fullscreen mode didn't work correctly in IE when the fullscreen_new_window option was used.
1067
+ Fixed bug where invalid contents like an ul inside a p element would produce odd results in IE.
1068
+ Fixed bug where Opera 9.2x was placing the drop menus at incorrect locations if the editor was placed in a table.
1069
+ Fixed bug where Opera was producing odd results if enter/return was pressed while having forced_root_blocks disabled.
1070
+ Fixed bug where layer plugin was stealing focus in IE on initialization.
1071
+ Fixed bug where body attributes wasn't set properly in the fullpage plugin, fix contributed by Hiroaki Kawai.
1072
+ Fixed bug where insert image and insert link dialogs where producing an extra level in the undo history.
1073
+ Fixed bug where Gecko would produce an error if empty elements like <div></div> where inserted using mceInsertContent.
1074
+ Fixed bug where center alignment of images produced odd results inside table cells.
1075
+ Fixed bug where center alignment of images couldn't be toggled correctly.
1076
+ Fixed bug where alignment of images inside tables would produce double float style items in IE if the fix_table_elements option was enabled.
1077
+ Fixed bug where a variable called 'v' was polluting the global namespace. Objects tinymce and tinyMCE are the only ones allowed to be global.
1078
+ Fixed bug where insert table from context menu couldn't insert new tables inside existing tables.
1079
+ Fixed bug where Safari wouldn't produce br elements on enter when the force_br_newlines option was enabled.
1080
+ Fixed bug where switching cell type in table cell dialog would produce odd attributes in IE.
1081
+ Fixed bug where Gecko was outputting internal attributes if valid_elements where set to "*[*]".
1082
+ Fixed bug where the style plugin would produce non hex colors inside the dialog when running on Gecko.
1083
+ Fixed bug where an empty src value for insert image would remove the currently selected image if it wasn't and image element.
1084
+ Fixed bug where hidden input elements would break the logic for the tab_focus option.
1085
+ Fixed bug where save button wasn't working correctly in fullscreen mode.
1086
+ Fixed bug where the editor was forced to be placed in a form element if the save_onsavecallback option was used.
1087
+ Fixed bug where upper case param attributes wasn't parsed correctly in the media plugin.
1088
+ Fixed bug where render method of tinymce.Editor class would produce an exception if the strict_loading_mode option was omitted.
1089
+ Fixed bug where nodeChanged event could be fired while the editor was loading and there for produce an exception in FF.
1090
+ Fixed bug where no undo levels where added if the user created new table rows using the tab key on Gecko.
1091
+ Fixed bug where tables would be broken if you selected a different block format for contents withing an table cell.
1092
+ Fixed bug where the render method of the tinymce.Editor class didn't setup the tinymce.EditorManager.settings object correctly.
1093
+ Fixed bug where the advanced image dialog would go to the first tab if the alternative image was changed using the file browser link.
1094
+ Fixed bug where the forced_root_block option would produce BR elements inside empty blocks if the block wasn't a paragraph.
1095
+ Fixed bug where the forced_root_block doesn't work correctly on IE if the specified element was something else than paragraphs.
1096
+ Fixed bug where selection of images would get lost if user selected something from the context menu in IE.
1097
+ Fixed bug where the context menu plugin would pollute the global namespace with two variables p1 and p2.
1098
+ Fixed compatibility issue with Mootools, it is destroying document.getElementById on unload in IE. (Mantra: You don't own the internal objects).
1099
+ Fixed bugs where dialogs/tabs and other UI elements where rendered incorrectly in Firefox 3.
1100
+ Fixed so the auto CSS class importer is compatible with 2.x.
1101
+ Fixed so the editor UI and inlinedialogs works correctly with the YUI CSS reset package.
1102
+ Fixed so header and footer elements are forced to lower case when the fullpage plugin is used.
1103
+ Fixed so load prefixes "-" for plugins and themes isn't required if the plugin/theme was loaded by the ThemeManager/PluginManager.
1104
+ Fixed so the JSONRequest uses application/json content type to make Ruby on rails happy.
1105
+ 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".
1106
+ Fixed so the tiny_mce_dev.js uses XHR instead of document.write to load scripts to resolve an issue with Opera 9.50.
1107
+ 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.
1108
+ Version 3.0 (2008-01-30)
1109
+ Added map and area elements to the default valid_elements list and also some indentation rules.
1110
+ Fixed bug where empty paragraphs wasn't padded when loading contents.
1111
+ Fixed bug where the RowLayout manager didn't work at all.
1112
+ Fixed bug where style attribute data would get messed up in advimage dialog.
1113
+ Fixed bug where the table dialogs class select wasn't updated correctly.
1114
+ Fixed bug where elements would get extra whitespace around on insert when body was present in valid_elements.
1115
+ Fixed bug where coords attribute of the area element wasn't handled properly in IE.
1116
+ Fixed bug where Safari didn't produce BR elements on shift+return.
1117
+ Fixed bug where force blocks would cast odd invalid attribute exception in IE.
1118
+ Fixed bug where media plugin would produce extra whitespace before and after objects.
1119
+ Fixed bug where cleanup_callback could break the contents of the editor. But use the new event system instead of this option.
1120
+ Fixed bug where the tab_focus option didn't work between editor instanced. You can now tab between editors.
1121
+ Fixed bug where the load function of the ScriptLoader class didn't load single files without the load que as it was supposed to.
1122
+ Fixed bug where the execcommand_callback parameter order was incorrect. Recommendation use the new addCommand method.
1123
+ Fixed bug where range.select calls sometimes failed on some IE versions.
1124
+ Fixed bug where Safari was scrolling to top of document when enter/returned was pressed.
1125
+ Fixed bug where fullscreen_new_window option didn't work correctly.
1126
+ Fixed bug where the nonbreaking plugin inserted an space instead of an non breaking space the first time.
1127
+ Fixed bug where the visualization of non breaking spaces where visual in element path.
1128
+ Fixed so the focus is restored to the editor after inserting an custom character.
1129
+ Fixed so the isNotDirty state is set to false if a new undo level is added.
1130
+ Fixed so pointless style information for borders gets removed in IE.
1131
+ Fixed so the resize button has a se-resize cursor css value.
1132
+ Version 3.0rc2 (2008-01-18)
1133
+ Added new fix_nesting option to fix bug #1867292, this is disabled by default.
1134
+ Added new indentation option enables you to specify how much each indent/outdent call will add/remove.
1135
+ Added easier support for enabling/disabling icon columns on drop menues.
1136
+ Added new menu button control class. This control is very similar to the splitbutton but without any onclick action.
1137
+ Added support for previous tab focus (shift+tab). The tab_focus setting now takes two items next and previous element.
1138
+ Fixed bug where iframes inside the editor got removed in Firefox on initial load.
1139
+ Fixed bug where the CSS for abbr elements wasn't applied correctly in IE.
1140
+ Fixed bug where mceAddControl on element inside a hidden container produced errors.
1141
+ Fixed bug where closed anchors like <a /> produced strange results.
1142
+ Fixed bug where caret would jump to the top of the editor if enter was pressed a the end of a list.
1143
+ Fixed bug where remove editor failed if the editor wasn't properly initialized.
1144
+ Fixed bug where render call on for a non existing element produced exception.
1145
+ Fixed bug where parent window was hidden when the color picker was used in a non inlinepopups setup.
1146
+ Fixed bug where onchange event wasn't fired correctly on IE when color picker was used in dialogs.
1147
+ Fixed bug where save plugin could not save contents if the converted element wasn't an textarea.
1148
+ Fixed bug where events might be fired even after an editor instance was removed such as blur events.
1149
+ Fixed bug where an exception about undefined undo levels could be throwed sometimes.
1150
+ Fixed bug where the plugin_preview_pageurl option didn't work.
1151
+ Fixed bug where adding/removing an editor instance very fast could produce problems.
1152
+ Fixed bug where the link button was highlighted when an anchor element was selected.
1153
+ Fixed bug where the selected contents where removed if a new anchor element was added.
1154
+ Fixed bug where splitbuttons where rendered one pixel down in the default theme.
1155
+ Fixed bug where some buttons where placed at incorrect positions in the o2k7 theme.
1156
+ Fixed bug that made it impossible to visually disable a custom button that used an image instead of CSS sprites.
1157
+ 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.
1158
+ Fixed bug where an entities option with only 38,amp,60,lt,62,gt would fail in IE.
1159
+ Fixed bug where innerHTML sometimes generated unknown runtime error on IE.
1160
+ Fixed bug where content_css files wasn't loaded in the template preview iframe.
1161
+ Fixed bug where scroll position was incorrect when toggling fullscreen mode.
1162
+ Fixed bug where restoration of overflow didn't work correctly when disabling fullscreen mode in Opera.
1163
+ Fixed bug where drop menus where places at incorrect locations if the editor was placed in a scrollable container element.
1164
+ Fixed bug where hideMenu didn't hide sub menus correctly. It will now hide all menus recursively.
1165
+ Fixed so theme_advanced_path_location can be used in init options for compatibility reasons.
1166
+ Fixed so the drop menu colors matches the rest of o2k7 theme.
1167
+ Fixed so the preview example.html file is updated to the new 3.x API.
1168
+ Fixed so the margins are the same by default inside the editable area between IE and other browsers.
1169
+ Fixed so editor contents gets stored before it the onSubmit event is fired.
1170
+ Version 3.0rc1 (2008-01-08)
1171
+ Added new classes for toolbar rows in advanced theme mceToolbarRow1..n enabled you to change appearance of individual rows.
1172
+ Added auto detection for the strict_loading_mode option when running in application/xhtml+xml mode on Gecko.
1173
+ Optimized the HTML serializer by bundling some post process methods together.
1174
+ Fixed so that the toolbars have unique IDs, enables you to alter the toolbars using the ControlManager and the DOM.
1175
+ Fixed bug where delta values for dialog sizes in language packs didn't work correctly due to missing string to number casting.
1176
+ Fixed bug where paragraph generation logic didn't handle hr or table elements correctly if they where the only element.
1177
+ Fixed bug where some elements got extra linebreaks added after or before it in HTML output.
1178
+ Fixed bug where it was hard to modify existing style data on table rows and table cells.
1179
+ Fixed bug where the dom.getRect method didn't handle non pixel values correctly.
1180
+ Fixed bug where strikethrough and underline couldn't be toggled on existing span elements.
1181
+ Fixed bug where the postprocessor searched for nsbp instead of nbsp entities.
1182
+ Fixed bug where it was impossible to edit links that had child elements within them.
1183
+ Fixed bug where it was possible to click on the parent item of a submenu.
1184
+ Fixed bug where mouseover/mouseout images couldn't be removed in advimage dialog.
1185
+ Fixed bug where drop menus didn't work when running in application/xhtml+xml mode.
1186
+ Fixed bug where Opera added doctype to output in application/xhtml+xml mode.
1187
+ Fixed bug where some DOM methods didn't work correctly in the application/xhtml+xml mode.
1188
+ Fixed bug where the inlinepopups didn't work correctly in the application/xhtml+xml mode.
1189
+ Fixed bug where the ColorSplitButton didn't display correctly in the application/xhtml+xml mode.
1190
+ Fixed bug where the UI layout was incorrect on Gecko browsers when running in application/xhtml+xml mode.
1191
+ Fixed bug where the word paste plugin produced exception while running in application/xhtml+xml mode.
1192
+ Fixed bug where there wasn't any hidden input element generated for divs while running in application/xhtml+xml mode.
1193
+ Fixed bug where indentation of script/style/pre elements where incorrect.
1194
+ Fixed bug where script element contents was removed in IE.
1195
+ Fixed bug where script element contents got entity encoded.
1196
+ Fixed bug where you couldn't edit existing element styles using the styles plugin.
1197
+ Fixed bug where styles wasn't updated properly sometimes due to an performance enhancement.
1198
+ Fixed bug where font sizes couldn't be changed using the style plugin.
1199
+ Fixed bug where an error was produced in Gecko browsers when switching back from fullscreen mode.
1200
+ Fixed bug where Opera was producing br elements after elements like h3.
1201
+ Fixed bug where TinyMCE couldn't be loaded on a page using - characters in it's URL.
1202
+ Fixed bug where the editor container element was forced to have a specific name.
1203
+ Fixed bug with force_br_newlines option on Firefox, even though it should never be used (Read FAQ).
1204
+ Fixed bug where onclick event had an return true; prefix added when creating an popup.
1205
+ Fixed bug where the theme_advanced_statusbar_location option couldn't handle the value "none".
1206
+ Fixed issue with URLs with multiple at characters for example an Zope URI.
1207
+ Fixed so simple and advanced themes doesn't collide.
1208
+ Fixed so a elements gets removed when the href field is left empty, the href attribute is required in a link after all.
1209
+ Fixed so img elements gets removed when the src field is left empty, the src attribute is required for all images after all.
1210
+ Removed the indent and encode methods from the tinymce.dom.Serializer class due to performance enhancement and reduction of the API size.
1211
+ Version 3.0b3 (2007-12-14)
1212
+ Added new getElement method to Editor class, returns the element that was replaced with the editor instance.
1213
+ Added new unavailable prefix for disabled controls for accessibility reasons.
1214
+ Fixed bug where regexp patterns couldn't be used for the editor_selector/editor_deselector options.
1215
+ Fixed bug where the DOM wasn't properly initialized before the onInit event was executed in popups.
1216
+ Fixed bug where font sizes where reduced by font size actions on previous spans in Safari.
1217
+ Fixed bug where HR elements got places at the wrong location in IE.
1218
+ Fixed bug where align/justify didn't work correctly on multiple paragraphs.
1219
+ Fixed bug with missing translation for cell scope settings.
1220
+ Fixed bug where selection/caret position was lost on some table actions.
1221
+ Fixed bug where editor instances couldn't be added to hidden div elements.
1222
+ Fixed bug where list elements in Safari would get an odd ID attribute.
1223
+ Fixed bug where IE would return <html/> when the editor was completely empty.
1224
+ Fixed bug where accessibility title attribute for access keys wasn't setup properly.
1225
+ Fixed bug where forecolorpicker and backcolorpicker control names wasn't working.
1226
+ Fixed bug where inserting template content didn't work in Safari due to selection exception.
1227
+ Fixed bug where absolute URLs to remote hosts couldn't be used for background images.
1228
+ Fixed bug where mysterious span elements where produced in Safari when injecting HTML contents.
1229
+ Fixed bug where the media plugin didn't work correctly on the latest Opera 9.24.
1230
+ Fixed bug where indentation of HTML output wasn't applied to all block elements.
1231
+ Fixed bug where Safari was production DOM exception if you pressed enter in an empty editor.
1232
+ Fixed bug where media plugin didn't parse script tags correctly patch contributed by Mathieu Campagna.
1233
+ Fixed bug where the drop menus of list boxes like blockformat could produce scrolling of the page.
1234
+ Fixed bug where the drop menus where placed at an incorrect location if TinyMCE was placed in a scrollable div.
1235
+ Fixed bug where submit buttons couldn't be named submit, it's not recommended to name submit buttons submit anyway.
1236
+ Fixed bug where the stylelistbox produced an exception if there was only one class in the list box.
1237
+ Fixed bug where the stylelistbox wasn't updated correctly when the current class was removed.
1238
+ Fixed bug where the formatblock command sometimes removed the body element.
1239
+ Fixed bug where fullscreen switching in IE sometimes produced an exception when the spellchecker plugin was enabled.
1240
+ Fixed issue where FF produced an empty paragraph when the editor was completely empty.
1241
+ Fixed issue with size of image dialog in the advanced theme.
1242
+ Fixed issues with the bbcode plugin it now also handles spans and the [font] rule.
1243
+ Fixed so the style compression feature is a bit smarter to resolve issues with Opera.
1244
+ Reintroduced the remove_linebreaks option, this is enabled by default.
1245
+ Version 3.0b2 (2007-11-29)
1246
+ Added type and compact attributes to the default valid_elements list for the ul and ol elements.
1247
+ Added missing accessibility support to native list boxes in both the toolbar and dialogs.
1248
+ Added missing access key for the element path for accessibility reasons.
1249
+ Fixed support for loading themes from external URLs.
1250
+ Fixed bug where setOuterHTML didn't work correctly when multiple elements where passed to it.
1251
+ Fixed bug with visualchars plugin was moving elements around in the DOM.
1252
+ Fixed bug with DIV elements that got converted into editors on IE.
1253
+ Fixed bug with paste plugin using the old event API.
1254
+ Fixed bug where the spellchecker was removing the word when it was ignored.
1255
+ Fixed bug where fullscreen wasn't working properly.
1256
+ Fixed bug where the base href element and attribute was ignored.
1257
+ Fixed bug where redo function didn't work in IE.
1258
+ Fixed bug where content_css didn't work as previous 2.x branch.
1259
+ Fixed bug where preview dialog was throwing errors if the content_css wasn't defined.
1260
+ Fixed bug where the theme_advanced_path option didn't work like the 2.x branch.
1261
+ Fixed bug where the theme_advanced_statusbar_location was called theme_advanced_status_location.
1262
+ Fixed bug where the strict_loading_mode option didn't work if you created editors dynamically without using the EditorManager.
1263
+ Fixed bug where some language values wasn't translated such as insert and update in dialogs.
1264
+ Fixed bug where some image attributes wasn't stored correctly when inserting an image.
1265
+ Fixed bug where fullscreen mode didn't restore scrollbars when disabled.
1266
+ Fixed bug where there was no visual representation for tab focus in toolbars on IE.
1267
+ Fixed bug where HR elements wasn't treated as block elements so forced_root_block would fail on these.
1268
+ Fixed bug where autosave presented warning message even when the form was submitted normally.
1269
+ Fixed typo of openBrower it's now openBrowser in form_utils.js.
1270
+ Fixed various HTML problems like missing TD elements and duplicated doctypes.
1271
+ Fixed default values for theme_advanced_resize_horizontal, theme_advanced_resizing_use_cookie to be 2.x compatible.
1272
+ Moved spellchecker JS files into the development package.
1273
+ Removed support for theme_advanced_path_location since the theme_advanced_statusbar_location is the correct option name.
1274
+ Version 3.0b1 (2007-11-21)
1275
+ 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.
1276
+ Added new addQueryValueHandler method to the tinymce.Editor class.
1277
+ Added new class_filter option, this enables you to specify a function that can filter out CSS classes for the styles list box.
1278
+ Added support form [url=url]title[/url] to the bbcode plugin.
1279
+ Renamed the addCommandQueryState method in the tinymce.Editor class to addQueryStateHandler.
1280
+ Renamed loadQue to loadQueue, to correct spelling.
1281
+ Removed the createDOM method from the window manager and replace it with a createInstance method.
1282
+ Removed the add to beginning of class attribute parameter of the DOMUtils.addClass method.
1283
+ Fixed bug with the forced_root_block option, didn't work correctly with multiple inline elements.
1284
+ Fixed bug where image dialogs replaced the current image element with a new one even when it was updated.
1285
+ Fixed bug where the submit trigger wasn't executed when divs where converted into editor instances.
1286
+ Fixed bug where div elements that got converted into editors didn't get a hidden input element generated for them.
1287
+ Fixed bug where the the media_use_script option for the media plugin wasn't working correctly.
1288
+ Fixed bug where the font size and font family listboxes wasn't updated correctly on Safari.
1289
+ Fixed bug where the height of the fieldset in default image dialog for the advanced theme was to small.
1290
+ Fixed bug where the font sizes behaved incorrectly after a cleanup on Safari.
1291
+ Fixed bug where formatblock didn't work correctly in Safari on some elements.
1292
+ Fixed bug where template plugin didn't insert content correctly unless some options where specified.
1293
+ Fixed bug where charmap on Safari produced scrollbars.
1294
+ Fixed bug where there was white artifacts in some dialogs due to missing background color.
1295
+ Fixed bug where port was added to all external URLs if the editor was loaded from a custom port.
1296
+ Fixed bug where the context menus got duplicated on Safari 3.0.4 on Mac OS X.
1297
+ Fixed bug where dialogs like paste from word was huge on Firefox.
1298
+ Fixed bug with media plugin not working with windows media objects.
1299
+ Fixed bug where a forever loop was created if multiple instances where submitted using form.submit.
1300
+ Fixed bug with editing a table produce error in IE when inlinepopups where used.
1301
+ Fixed bug where the style plugin generated ugly looking style information in IE.
1302
+ Fixed bug where the inline dialogs that got opened while in fullscreen mode wasn't visible.
1303
+ Fixed bug where it was difficult to place the caret inside the word paste dialog.
1304
+ Fixed bug where Opera produced strange border in the word paste dialog.
1305
+ Fixed bug where viewport constraints could move a inlinepopup to a negative x, y position if the viewport was to small.
1306
+ Fixed bug where template plugin was producing an error due to a deprecated API call.
1307
+ Fixed bug where drag drop of images failed in Gecko if a document_base_url was specified.
1308
+ Fixed bug where Firefox 3 failed to apply block formats like H1-H6 it still breaks on DIVs this has been reported to bugzilla.
1309
+ Fixed bug where IE was producing a warning dialog about non secure items when running TinyMCE over HTTPS.
1310
+ Fixed bug where the onbeforeunload event was triggered when menus or dialogs where opened.
1311
+ Fixed bug where the fullscreen mode of the HTML view source box threw an error.
1312
+ Fixed bug where the mceFocus command didn't work correctly.
1313
+ Fixed bug where the selection could get lost in IE using inlinepopups.
1314
+ Fixed so the body of the editor area has the mceContentBody class just like the 2.x branch.
1315
+ Fixed so the media icon gets active when a media element is selected.
1316
+ Version 3.0a3 (2007-11-13)
1317
+ Added new experimental jQuery and Prototype framework adapters to the development package.
1318
+ Added new translation.html file for the development package. Helps with the internationalization of TinyMCE.
1319
+ Added new setup callback option, use this callback to add events to TinyMCE. This method is recommended over the old callbacks.
1320
+ Added new API documetation to all classes, functions, events, properties to the Wiki with examples etc.
1321
+ Added new init method to all plugins and themes, since it's shorter to write and it mimics interface capable languages better.
1322
+ Fixed various CSS issues in the default skin such as alignment of split buttons and separators.
1323
+ Fixed issues with mod_security. It didn't like that a content type of text/javascript was forced in a XHR.
1324
+ Fixed all events so that they now pass the sender object as it's first argument.
1325
+ Fixed some DOM methods so they now can take an array as input.
1326
+ Fixed so addButton and the methods of the ControlManager uses less arguments and it now uses a settings object instead.
1327
+ Fixed various issues with the tinymce.util.URI class.
1328
+ Fixed bug in IE and Safari and the on demand gzip loading feature.
1329
+ Fixed bug with moving inline windows sometimes failed in IE6.
1330
+ Fixed bug where save_callback function wasn't executed at all.
1331
+ Fixed bug where inlinepopups produces scrollbars if windows where moved to the corners of the browser.
1332
+ Fixed bug where view HTML source failed when inserting a embedded media object.
1333
+ Fixed bug where the listbox menus didn't display correctly on IE6.
1334
+ Fixed bug where undo level wasn't added when editor was blurred.
1335
+ Fixed bug where spellchecker wasn't disabled when fullscreen mode was enabled.
1336
+ Fixed bug where Firefox could crash some times when the user switched to fullscreen mode.
1337
+ Fixed bug where tinymce.ui.DropMenu didn't remove all item data when an item was removed from the menu.
1338
+ Fixed bug where anchor list in advlink dialog wasn't populated correctly in Safari.
1339
+ Fixed bug where it wasn't possible to edit tables in IE when inlinepopups was enabled.
1340
+ Fixed bug where it wasn't possible to change the table width of an existing table.
1341
+ Fixed bug where xhtmlxtras like abbr didn't work correctly on IE.
1342
+ Fixed bug where IE6 had some graphics rendering issues with the inlinepopups.
1343
+ Fixed bug where inlinepopup windows where moved incorrectly when they were boundary checked for min width.
1344
+ Fixed bug where textareas without id or name couldn't be converted into editor instances.
1345
+ Fixed bug where TinyMCE was stealing element focus on IE.
1346
+ Fixed bug where the getParam method didn't handle false values correctly.
1347
+ Fixed bug where inlinepopups was clipped by other TinyMCE instances or relative elements in IE.
1348
+ Fixed bug where the contextmenu was clipped by other TinyMCE instances or relative elements in IE.
1349
+ Fixed bug where listbox menus was clipped by other TinyMCE instances or relative elements in IE.
1350
+ Fixed bug where listboxes wasn't updated correctly when the a value wasn't found by select.
1351
+ Fixed various CSS issues that produced odd rendering bugs in IE.
1352
+ Fixed issues with tinymce.ui.DropMenu class, it required some optional settings to be specified.
1353
+ Fixed so multiple blockquotes can be removed with a easier method than before.
1354
+ Optimized some of the core API to boost performance.
1355
+ Removed some functions from the core API that wasn't needed.
1356
+ Version 3.0a2 (2007-11-02)
1357
+ Fixed critical bug where IE generaded an error on a hasAttribute call in the serialization engine.
1358
+ Fixed critical bug where some dialogs didn't open in the non dev package.
1359
+ Fixed bug when using the theme_advanced_styles option. Error was thrown in some dialogs.
1360
+ Fixed bug where the close buttons produced an error when native windows where used.
1361
+ Fixed bug in default skin so that split buttons gets activated correctly.
1362
+ Fixed so plugins can be loaded from external urls outsite the plugins directory.
1363
+ Version 3.0a1 (2007-11-01)
1364
+ Rewrote the core and most of the plugins and themes from scratch.
1365
+ Added new and improved serialization engine, faster and more powerful.
1366
+ Added new internal event system, things like editor.onClick.add(func).
1367
+ Added new inlinepopups plugin, the dialogs are now skinnable and uses clearlooks2 as default.
1368
+ Added new contextmenu plugin, context menus can now have submenus and plugins can add items on the fly.
1369
+ Added new skin support for the simple and advanced themes you can alter the whole UI using CSS.
1370
+ Added new o2k7 skin for the simple and advanced themes.
1371
+ Added new custom list boxes for font size/format/style etc with preview support.
1372
+ Added new UI management, enabled plugins to create controls like splitbuttons or menus easier.
1373
+ Added new JSON parser/serializer and JSON-RPC class to the core API.
1374
+ Added new cookie utility class to the core API.
1375
+ Added new Unit testing class to the core API only available in dev mode.
1376
+ Added new firebug lite integration when loading the dev version of TinyMCE.
1377
+ Added new Safari plugin, fixes lots compatibility of issues with Safari 3.x.
1378
+ Added new URI/URL parsing it now handles the hole RFC and even some exceptions.
1379
+ Added new pagebreak plugin, enables you to insert pagebreak comments like <!-- pagebreak -->
1380
+ Added new on demand loading of plugins and themes. Enables you to load and init TinyMCE at any time.
1381
+ Added new throbber/progress visualization a plugin can show/hide this when it's needed.
1382
+ Added new blockquote button. Enables you to wrap paragraphs in blockquotes.
1383
+ Added new compat2x plugin. Will provide a TinyMCE 2.x API for older plugins.
1384
+ Added new theme_advanced_resizing_min_width, theme_advanced_resizing_min_height options.
1385
+ Added new theme_advanced_resizing_max_height, theme_advanced_resizing_max_height options.
1386
+ Added new use_native_selects option. Enables you to toggle native listboxes on and off.
1387
+ Added new docs_url option enables you to specify where the TinyMCE user documentation is located.
1388
+ Added new frame and rules options for the table dialog.
1389
+ Added new global rule for valid_elements/extended_valid_elements enables you to specify global attributes for all elements.
1390
+ Added new deny attribute rule characher so it's possible to deny global attribute rules on specific elements.
1391
+ Added new unit tests in the dev package of TinyMCE. Runs tests on the core API, commands and settings of the editor.
1392
+ Readded the inline_styles option and enabled it by default so deprecated attributes are no longer used.
1393
+ Removed all button images and replaced them with CSS sprite images. Reduces the number of requests needed.
1394
+ Removed lots of language files and merged them into the base language files. Reduces the number of requests needed.
1395
+ Removed lots of unnecessary files and merged many of them together to reduce requests and improve loading speed.
1396
+ Reduced the over all script size by 33% and the number of files/requests by 75% so it loads a lot faster.
1397
+ Fixed so convert_fonts_to_spans are enabled by default. So no more font tags.
1398
+ Fixed so underline and strikethrough uses spans instread of deprecated U and STRIKE elements.
1399
+ Fixed so indent/outdent adds/removed margin-left instead of blockquotes.
1400
+ Fixed so alignment of paragraphs results in a text-align style value instead of the deprecated align attribute.
1401
+ Fixed so alignment of images uses float or vertical-align style values instead of the deprecated align attribute.
1402
+ Fixed so all classes from @import stylesheets gets imported into the editor.
1403
+ Fixed so the directionality can toggle the dir attribute on and off.
1404
+ Fixed so the fullscreen_settings can be used for all types of fullscreen modes.
1405
+ Fixed so the advanced HR dialog gets displayed when inserting a HR not only on edit.
1406
+ Fixed bug where word wrap didn't work in the source editor on Safari.
1407
+ Fixed so non HTML elements can be used within the editor such as <myns:tag>
1408
+ Fixed various memory leaks in IE and reduced the unload cleanups needed.
1409
+ Fixed so the preformatted option adds an invisible container pre tag inside the editor.
1410
+ Renamed the _template plugin to example and updated it to use the new 3.x API.