typo 4.1 → 4.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (251) hide show
  1. data/Rakefile +1 -1
  2. data/TODO-4.2 +14 -0
  3. data/TODO.MULTIUSERS +45 -0
  4. data/app/controllers/admin/base_controller.rb +18 -0
  5. data/app/controllers/admin/general_controller.rb +14 -0
  6. data/app/controllers/application.rb +2 -1
  7. data/app/controllers/articles_controller.rb +18 -21
  8. data/app/helpers/admin/base_helper.rb +4 -4
  9. data/app/helpers/admin/feedback_helper.rb +3 -3
  10. data/app/helpers/application_helper.rb +2 -6
  11. data/app/helpers/sidebar_helper.rb +2 -2
  12. data/app/models/blog.rb +9 -1
  13. data/app/models/category.rb +9 -9
  14. data/app/models/comment.rb +1 -1
  15. data/app/models/content_state/presumed_ham.rb +2 -2
  16. data/app/models/resource.rb +2 -0
  17. data/app/views/admin/categories/_categories.rhtml +10 -6
  18. data/app/views/admin/categories/edit.rhtml +3 -1
  19. data/app/views/admin/comments/_form.rhtml +3 -3
  20. data/app/views/admin/comments/list.rhtml +7 -5
  21. data/app/views/admin/comments/new.rhtml +3 -1
  22. data/app/views/admin/comments/show.rhtml +3 -1
  23. data/app/views/admin/content/_articles.rhtml +1 -1
  24. data/app/views/admin/content/_form.rhtml +4 -2
  25. data/app/views/admin/content/new.rhtml +1 -0
  26. data/app/views/admin/content/preview.rhtml +8 -8
  27. data/app/views/admin/feedback/_item.rhtml +3 -1
  28. data/app/views/admin/feedback/list.rhtml +4 -4
  29. data/app/views/admin/general/index.rhtml +14 -1
  30. data/app/views/admin/pages/_form.rhtml +1 -1
  31. data/app/views/admin/pages/destroy.rhtml +1 -1
  32. data/app/views/admin/pages/new.rhtml +1 -0
  33. data/app/views/admin/shared/_edit.rhtml +2 -2
  34. data/app/views/layouts/administration.rhtml +5 -2
  35. data/app/views/layouts/minimal.rhtml +134 -2
  36. data/config/boot.rb +1 -1
  37. data/config/environment.rb +11 -3
  38. data/config/environments/test.rb +0 -7
  39. data/config/routes.rb +3 -0
  40. data/db/migrate/004_add_sidebars.rb +21 -3
  41. data/db/migrate/056_create_notifications.rb +1 -1
  42. data/db/migrate/062_add_sitealizer_plugin.rb +18 -0
  43. data/db/schema.mysql-v3.sql +217 -0
  44. data/db/schema.mysql.sql +31 -5
  45. data/db/schema.postgresql.sql +31 -6
  46. data/db/schema.rb +17 -7
  47. data/db/schema.sqlite.sql +31 -6
  48. data/db/schema.sqlserver.sql +32 -6
  49. data/db/schema_version +1 -1
  50. data/lang/de_DE.rb +493 -0
  51. data/lang/fr_FR.rb +28 -4
  52. data/lang/ro_RO.rb +554 -0
  53. data/lib/tasks/release.rake +7 -7
  54. data/lib/typo_version.rb +1 -1
  55. data/public/images/sitealizer/bar.gif +0 -0
  56. data/public/images/sitealizer/uv.png +0 -0
  57. data/public/images/sitealizer/vh.png +0 -0
  58. data/public/javascripts/tiny_mce/blank.htm +9 -0
  59. data/public/javascripts/tiny_mce/langs/en.js +41 -0
  60. data/public/javascripts/tiny_mce/license.txt +504 -0
  61. data/public/javascripts/tiny_mce/themes/advanced/about.htm +52 -0
  62. data/public/javascripts/tiny_mce/themes/advanced/anchor.htm +33 -0
  63. data/public/javascripts/tiny_mce/themes/advanced/charmap.htm +53 -0
  64. data/public/javascripts/tiny_mce/themes/advanced/color_picker.htm +13 -0
  65. data/public/javascripts/tiny_mce/themes/advanced/css/editor_content.css +58 -0
  66. data/public/javascripts/tiny_mce/themes/advanced/css/editor_popup.css +331 -0
  67. data/public/javascripts/tiny_mce/themes/advanced/css/editor_ui.css +97 -0
  68. data/public/javascripts/tiny_mce/themes/advanced/docs/en/about.htm +31 -0
  69. data/public/javascripts/tiny_mce/themes/advanced/docs/en/common_buttons.htm +162 -0
  70. data/public/javascripts/tiny_mce/themes/advanced/docs/en/create_accessible_content.htm +45 -0
  71. data/public/javascripts/tiny_mce/themes/advanced/docs/en/images/insert_anchor_window.gif +0 -0
  72. data/public/javascripts/tiny_mce/themes/advanced/docs/en/images/insert_image_window.gif +0 -0
  73. data/public/javascripts/tiny_mce/themes/advanced/docs/en/images/insert_link_window.gif +0 -0
  74. data/public/javascripts/tiny_mce/themes/advanced/docs/en/images/insert_table_window.gif +0 -0
  75. data/public/javascripts/tiny_mce/themes/advanced/docs/en/index.htm +27 -0
  76. data/public/javascripts/tiny_mce/themes/advanced/docs/en/insert_anchor_button.htm +32 -0
  77. data/public/javascripts/tiny_mce/themes/advanced/docs/en/insert_image_button.htm +65 -0
  78. data/public/javascripts/tiny_mce/themes/advanced/docs/en/insert_link_button.htm +33 -0
  79. data/public/javascripts/tiny_mce/themes/advanced/docs/en/insert_table_button.htm +71 -0
  80. data/public/javascripts/tiny_mce/themes/advanced/docs/en/style.css +28 -0
  81. data/public/javascripts/tiny_mce/themes/advanced/editor_template.js +1 -0
  82. data/public/javascripts/tiny_mce/themes/advanced/editor_template_src.js +1534 -0
  83. data/public/javascripts/tiny_mce/themes/advanced/image.htm +100 -0
  84. data/public/javascripts/tiny_mce/themes/advanced/images/anchor.gif +0 -0
  85. data/public/javascripts/tiny_mce/themes/advanced/images/anchor_symbol.gif +0 -0
  86. data/public/javascripts/tiny_mce/themes/advanced/images/backcolor.gif +0 -0
  87. data/public/javascripts/tiny_mce/themes/advanced/images/bold.gif +0 -0
  88. data/public/javascripts/tiny_mce/themes/advanced/images/bold_de_se.gif +0 -0
  89. data/public/javascripts/tiny_mce/themes/advanced/images/bold_es.gif +0 -0
  90. data/public/javascripts/tiny_mce/themes/advanced/images/bold_fr.gif +0 -0
  91. data/public/javascripts/tiny_mce/themes/advanced/images/bold_ru.gif +0 -0
  92. data/public/javascripts/tiny_mce/themes/advanced/images/bold_tw.gif +0 -0
  93. data/public/javascripts/tiny_mce/themes/advanced/images/browse.gif +0 -0
  94. data/public/javascripts/tiny_mce/themes/advanced/images/bullist.gif +0 -0
  95. data/public/javascripts/tiny_mce/themes/advanced/images/button_menu.gif +0 -0
  96. data/public/javascripts/tiny_mce/themes/advanced/images/buttons.gif +0 -0
  97. data/public/javascripts/tiny_mce/themes/advanced/images/cancel_button_bg.gif +0 -0
  98. data/public/javascripts/tiny_mce/themes/advanced/images/charmap.gif +0 -0
  99. data/public/javascripts/tiny_mce/themes/advanced/images/cleanup.gif +0 -0
  100. data/public/javascripts/tiny_mce/themes/advanced/images/close.gif +0 -0
  101. data/public/javascripts/tiny_mce/themes/advanced/images/code.gif +0 -0
  102. data/public/javascripts/tiny_mce/themes/advanced/images/color.gif +0 -0
  103. data/public/javascripts/tiny_mce/themes/advanced/images/copy.gif +0 -0
  104. data/public/javascripts/tiny_mce/themes/advanced/images/custom_1.gif +0 -0
  105. data/public/javascripts/tiny_mce/themes/advanced/images/cut.gif +0 -0
  106. data/public/javascripts/tiny_mce/themes/advanced/images/forecolor.gif +0 -0
  107. data/public/javascripts/tiny_mce/themes/advanced/images/help.gif +0 -0
  108. data/public/javascripts/tiny_mce/themes/advanced/images/hr.gif +0 -0
  109. data/public/javascripts/tiny_mce/themes/advanced/images/image.gif +0 -0
  110. data/public/javascripts/tiny_mce/themes/advanced/images/indent.gif +0 -0
  111. data/public/javascripts/tiny_mce/themes/advanced/images/insert_button_bg.gif +0 -0
  112. data/public/javascripts/tiny_mce/themes/advanced/images/italic.gif +0 -0
  113. data/public/javascripts/tiny_mce/themes/advanced/images/italic_de_se.gif +0 -0
  114. data/public/javascripts/tiny_mce/themes/advanced/images/italic_es.gif +0 -0
  115. data/public/javascripts/tiny_mce/themes/advanced/images/italic_ru.gif +0 -0
  116. data/public/javascripts/tiny_mce/themes/advanced/images/italic_tw.gif +0 -0
  117. data/public/javascripts/tiny_mce/themes/advanced/images/justifycenter.gif +0 -0
  118. data/public/javascripts/tiny_mce/themes/advanced/images/justifyfull.gif +0 -0
  119. data/public/javascripts/tiny_mce/themes/advanced/images/justifyleft.gif +0 -0
  120. data/public/javascripts/tiny_mce/themes/advanced/images/justifyright.gif +0 -0
  121. data/public/javascripts/tiny_mce/themes/advanced/images/link.gif +0 -0
  122. data/public/javascripts/tiny_mce/themes/advanced/images/menu_check.gif +0 -0
  123. data/public/javascripts/tiny_mce/themes/advanced/images/newdocument.gif +0 -0
  124. data/public/javascripts/tiny_mce/themes/advanced/images/numlist.gif +0 -0
  125. data/public/javascripts/tiny_mce/themes/advanced/images/opacity.png +0 -0
  126. data/public/javascripts/tiny_mce/themes/advanced/images/outdent.gif +0 -0
  127. data/public/javascripts/tiny_mce/themes/advanced/images/paste.gif +0 -0
  128. data/public/javascripts/tiny_mce/themes/advanced/images/redo.gif +0 -0
  129. data/public/javascripts/tiny_mce/themes/advanced/images/removeformat.gif +0 -0
  130. data/public/javascripts/tiny_mce/themes/advanced/images/separator.gif +0 -0
  131. data/public/javascripts/tiny_mce/themes/advanced/images/spacer.gif +0 -0
  132. data/public/javascripts/tiny_mce/themes/advanced/images/statusbar_resize.gif +0 -0
  133. data/public/javascripts/tiny_mce/themes/advanced/images/strikethrough.gif +0 -0
  134. data/public/javascripts/tiny_mce/themes/advanced/images/sub.gif +0 -0
  135. data/public/javascripts/tiny_mce/themes/advanced/images/sup.gif +0 -0
  136. data/public/javascripts/tiny_mce/themes/advanced/images/underline.gif +0 -0
  137. data/public/javascripts/tiny_mce/themes/advanced/images/underline_es.gif +0 -0
  138. data/public/javascripts/tiny_mce/themes/advanced/images/underline_fr.gif +0 -0
  139. data/public/javascripts/tiny_mce/themes/advanced/images/underline_ru.gif +0 -0
  140. data/public/javascripts/tiny_mce/themes/advanced/images/underline_tw.gif +0 -0
  141. data/public/javascripts/tiny_mce/themes/advanced/images/undo.gif +0 -0
  142. data/public/javascripts/tiny_mce/themes/advanced/images/unlink.gif +0 -0
  143. data/public/javascripts/tiny_mce/themes/advanced/images/visualaid.gif +0 -0
  144. data/public/javascripts/tiny_mce/themes/advanced/images/xp/tab_bg.gif +0 -0
  145. data/public/javascripts/tiny_mce/themes/advanced/images/xp/tab_end.gif +0 -0
  146. data/public/javascripts/tiny_mce/themes/advanced/images/xp/tab_sel_bg.gif +0 -0
  147. data/public/javascripts/tiny_mce/themes/advanced/images/xp/tab_sel_end.gif +0 -0
  148. data/public/javascripts/tiny_mce/themes/advanced/images/xp/tabs_bg.gif +0 -0
  149. data/public/javascripts/tiny_mce/themes/advanced/jscripts/about.js +75 -0
  150. data/public/javascripts/tiny_mce/themes/advanced/jscripts/anchor.js +74 -0
  151. data/public/javascripts/tiny_mce/themes/advanced/jscripts/charmap.js +326 -0
  152. data/public/javascripts/tiny_mce/themes/advanced/jscripts/color_picker.js +108 -0
  153. data/public/javascripts/tiny_mce/themes/advanced/jscripts/image.js +81 -0
  154. data/public/javascripts/tiny_mce/themes/advanced/jscripts/link.js +70 -0
  155. data/public/javascripts/tiny_mce/themes/advanced/jscripts/source_editor.js +60 -0
  156. data/public/javascripts/tiny_mce/themes/advanced/langs/en.js +82 -0
  157. data/public/javascripts/tiny_mce/themes/advanced/link.htm +100 -0
  158. data/public/javascripts/tiny_mce/themes/advanced/source_editor.htm +32 -0
  159. data/public/javascripts/tiny_mce/tiny_mce.js +1 -0
  160. data/public/javascripts/tiny_mce/tiny_mce_popup.js +288 -0
  161. data/public/javascripts/tiny_mce/tiny_mce_src.js +7284 -0
  162. data/public/javascripts/tiny_mce/utils/editable_selects.js +61 -0
  163. data/public/javascripts/tiny_mce/utils/form_utils.js +210 -0
  164. data/public/javascripts/tiny_mce/utils/mclayer.js +210 -0
  165. data/public/javascripts/tiny_mce/utils/mctabs.js +74 -0
  166. data/public/javascripts/tiny_mce/utils/validate.js +219 -0
  167. data/public/stylesheets/administration.css +5 -1
  168. data/public/stylesheets/minimal.css +1 -0
  169. data/test/functional/admin/categories_controller_test.rb +2 -2
  170. data/test/functional/xml_controller_test.rb +72 -40
  171. data/test/test_helper.rb +1 -17
  172. data/test/unit/article_test.rb +1 -1
  173. data/test/unit/trigger_test.rb +1 -1
  174. data/themes/scribbish/views/articles/_comment.rhtml +13 -17
  175. data/themes/scribbish/views/articles/_comment_form.rhtml +7 -5
  176. data/themes/scribbish/views/articles/_comment_list.rhtml +7 -0
  177. data/themes/scribbish/views/articles/read.rhtml +1 -1
  178. data/vendor/plugins/aimpresence_sidebar/views/content.rhtml +1 -1
  179. data/vendor/plugins/archives_sidebar/views/content.rhtml +1 -1
  180. data/vendor/plugins/audioscrobbler_sidebar/MAINTAINERS +26 -0
  181. data/vendor/plugins/audioscrobbler_sidebar/MIT-LICENSE +21 -0
  182. data/vendor/plugins/audioscrobbler_sidebar/README +27 -0
  183. data/vendor/plugins/backpack_sidebar/MAINTAINERS +26 -0
  184. data/vendor/plugins/backpack_sidebar/MIT-LICENSE +21 -0
  185. data/vendor/plugins/backpack_sidebar/README +27 -0
  186. data/vendor/plugins/category_sidebar/views/content.rhtml +1 -1
  187. data/vendor/plugins/sitealizer/CHANGELOG +6 -0
  188. data/vendor/plugins/sitealizer/LICENSE +22 -0
  189. data/vendor/plugins/sitealizer/README +82 -0
  190. data/vendor/plugins/sitealizer/Rakefile +22 -0
  191. data/vendor/plugins/sitealizer/init.rb +24 -0
  192. data/vendor/plugins/sitealizer/install.rb +22 -0
  193. data/vendor/plugins/sitealizer/lib/app/assets/images/bar.gif +0 -0
  194. data/vendor/plugins/sitealizer/lib/app/assets/images/uv.png +0 -0
  195. data/vendor/plugins/sitealizer/lib/app/assets/images/vh.png +0 -0
  196. data/vendor/plugins/sitealizer/lib/app/controllers/sitealizer_controller.rb +118 -0
  197. data/vendor/plugins/sitealizer/lib/app/models/site_tracker.rb +145 -0
  198. data/vendor/plugins/sitealizer/lib/app/views/layouts/sitealizer.rhtml +66 -0
  199. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_browsers.rhtml +23 -0
  200. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_daily_stats.rhtml +67 -0
  201. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_hits_summary.rhtml +0 -0
  202. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_hosts.rhtml +21 -0
  203. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_keywords.rhtml +19 -0
  204. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_languages.rhtml +21 -0
  205. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_main_frame.rhtml +84 -0
  206. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_monthly_hits.rhtml +67 -0
  207. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_page_urls.rhtml +20 -0
  208. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_platforms.rhtml +21 -0
  209. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_referers.rhtml +22 -0
  210. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_robots.rhtml +19 -0
  211. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/_search_engines.rhtml +19 -0
  212. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/hourly_stats.rhtml +39 -0
  213. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/index.rhtml +8 -0
  214. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/login.rhtml +20 -0
  215. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/menu.rhtml +74 -0
  216. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/referrer_stats.rhtml +20 -0
  217. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/search_stats.rhtml +25 -0
  218. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/summary.rhtml +22 -0
  219. data/vendor/plugins/sitealizer/lib/app/views/sitealizer/visitor_info.rhtml +30 -0
  220. data/vendor/plugins/sitealizer/lib/config.yml +18 -0
  221. data/vendor/plugins/sitealizer/lib/sitealizer/parser.rb +347 -0
  222. data/vendor/plugins/sitealizer/lib/sitealizer.rb +78 -0
  223. data/vendor/plugins/sitealizer/lib/tasks/sitealizer.rake +36 -0
  224. data/vendor/plugins/sitealizer/test/fixtures/sitealizer.yml +89 -0
  225. data/vendor/plugins/sitealizer/test/sitealizer_controller_test.rb +208 -0
  226. data/vendor/plugins/sitealizer/test/sitealizer_parser_test.rb +169 -0
  227. data/vendor/plugins/sitealizer/test/test_helper.rb +7 -0
  228. data/vendor/plugins/tada_sidebar/MAINTAINERS +26 -0
  229. data/vendor/plugins/tada_sidebar/MIT-LICENSE +21 -0
  230. data/vendor/plugins/tada_sidebar/README +27 -0
  231. data/vendor/plugins/tag_sidebar/views/content.rhtml +1 -1
  232. data/vendor/plugins/tiny_mce/README +10 -0
  233. data/vendor/plugins/tiny_mce/Rakefile +22 -0
  234. data/vendor/plugins/tiny_mce/TODO +2 -0
  235. data/vendor/plugins/tiny_mce/changelog +1017 -0
  236. data/vendor/plugins/tiny_mce/init.rb +3 -0
  237. data/vendor/plugins/tiny_mce/install.rb +1 -0
  238. data/vendor/plugins/tiny_mce/lib/tiny_mce.rb +36 -0
  239. data/vendor/plugins/tiny_mce/lib/tiny_mce_helper.rb +48 -0
  240. data/vendor/plugins/tiny_mce/tasks/tiny_mce.rake +40 -0
  241. data/vendor/plugins/tiny_mce/test/helper_testcase.rb +38 -0
  242. data/vendor/plugins/tiny_mce/test/tiny_mce_helper_test.rb +67 -0
  243. data/vendor/plugins/tiny_mce/test/tiny_mce_test.rb +85 -0
  244. data/vendor/plugins/tiny_mce/tiny_mce_options.yml +121 -0
  245. data/vendor/plugins/xbox_sidebar/MAINTAINERS +26 -0
  246. data/vendor/plugins/xbox_sidebar/MIT-LICENSE +21 -0
  247. data/vendor/plugins/xbox_sidebar/README +27 -0
  248. data/vendor/plugins/xml_sidebar/lib/xml_sidebar.rb +1 -1
  249. data/vendor/plugins/xml_sidebar/views/content.rhtml +4 -4
  250. metadata +220 -4
  251. data/TODO-4.1 +0 -16
@@ -0,0 +1,1017 @@
1
+ Version 2.0.5.1 (2005-03-22)
2
+ Fixed bug where emtpy paragraphs sometimes got removed in MSIE.
3
+ Fixed bug where autosave plugin was running even in fullscreen mode.
4
+ Fixed bug where browse and color image button urls in form_utils.js where hardcoded.
5
+ Version 2.0.5 (2005-03-21)
6
+ Added API docs for the TinyMCE_Popup class that is used by all dialogs in TinyMCE.
7
+ Added new TinyMCE_Layer class to the core of TinyMCE plugins will be using this later on.
8
+ Added new loadPlugin function, use this to load external plugins.
9
+ Added instructions on how to contribute language packs.
10
+ Added new support for multiple content_css files, based on contribution by Man-Chicken.
11
+ Added new table_cell_limit, table_row_limit, table_col_limit options, based on contribution by Man-Chicken.
12
+ Added new fix_list_elements option, if this is set to true UL/OL lists will be forced XHTML valid on cleanup.
13
+ Added new fix_table_elements, if this is set to true tables will be moved outside paragraphs.
14
+ Fixed so input and button as closed elements in the cleanup logic.
15
+ Fixed so the mceButtonSelected is more visible with darker background in the editor_ui.css.
16
+ Fixed issue where charmap.js was calling switchClass that's reserved for buttons.
17
+ Fixed issue where the directionality option wasn't used in the preview plugin.
18
+ Fixed issues with nestled bullet lists pasted from Word 2003.
19
+ Fixed bug where button wasn't selected correctly in MSIE due to a CSS issue.
20
+ Fixed bug where ask mode wasn't working on DIV elements in Firefox and Opera.
21
+ Fixed bug where the mceAddFrameControl command wasn't working correctly.
22
+ Fixed bug where language packs wasn't imported correctly in plugins loaded externaly.
23
+ Fixed bug where focusing external input elements was visible in element path under MSIE.
24
+ Fixed bug where fullscreen plugin wasn't opening the window fullscreen in Firefox.
25
+ Fixed bug where style select dropdown wasn't working in Firefox when used in fullscreen mode.
26
+ Fixed bug where the fix_content_duplication wasn't working anymore.
27
+ Fixed bug where MSIE sometimes generated empty paragraphs.
28
+ Fixed bug where MSIE sometimes generated tags like <//tag>.
29
+ Fixed bug where the directionality option produced a error for the color picker dialog.
30
+ Fixed bug where configured callback options wasn't executed correctly in fullscreen mode.
31
+ Fixed bug where tags got generated as <*> some times in Gecko.
32
+ Fixed bug where the cursor was placed within a the anchor when inserting a new one in Gecko.
33
+ Fixed bug where convert_fonts_to_span option wasn't working correctly with new cleanup engine.
34
+ Fixed various language pack issues such as invalid characters.
35
+ Fixed naming conflict with zoom plugin and the format select box.
36
+ Fixed so that the initialization of the editor is slightly faster.
37
+ Removed all language packs except the english one from the core package. [BREAKS COMPATIBLITY]
38
+ Version 2.0.4 (2006-02-24)
39
+ Fixed bug where fullscreen plugin was using the tinymce_dev.js script.
40
+ Fixed bug where events where having a return true; statement infront of them.
41
+ Fixed bug where theme_advanced_toolbar_location option wasn't working.
42
+ Fixed bug where select lists wasn't working if you touched them with the tab key.
43
+ Fixed bug where auto reset design mode wasn't working correctly.
44
+ Fixed bug where null was inserted in paste button action in MSIE.
45
+ Fixed bug where _template plugin had a , instead of . character on e.type.
46
+ Fixed bug where src, href where replaced to xsrc and xhref in comments.
47
+ Fixed bug where paste_cleanup_on_paste option wasn't working correctly with the paste plugin.
48
+ Fixed bug where MSIE was reporting an error when TinyMCE was placed in a frame and not focused.
49
+ Fixed bug where clipboard_msg wasn't entity decoded corectly before displaying it in confirm box.
50
+ Fixed bug where mceRemoveControl wasn't working correctly on DIV elements.
51
+ Fixed bug where mceInsertContent/mceReplaceContent produced error when a empty string was inserted.
52
+ Fixed so the default valid_elements option is more XHTML valid.
53
+ Fixed issue where style formatting wasn't handled when pasting content from Word.
54
+ Fixed issue where ' characters wasn't entity encoded, they are now encoded into &#39; and not &apos;.
55
+ Fixed issue with empty paragraphs, these are now filled with &nsbp; if they are empty.
56
+ Added documentation on how the # prefix can be used in the valid_elements option.
57
+ Added new options paste_remove_styles and paste_remove_spans to paste plugin.
58
+ Added possibility to have empty default attributes values.
59
+ Version 2.0.3 (2006-02-13)
60
+ Added missing buttons to button reference page in documentation.
61
+ Added dt,dl,dd elements to default_valid elements config value.
62
+ Added new support for self registrering plugins.
63
+ Added new callback for themes and plugins handleEvent and the handle_event_callback option.
64
+ Added new execcommand_callback option, this enables you to add custom execcommand logic on page level.
65
+ Added new custom_shortcuts option, this enables you to disable plugin/theme specific keyboard shortcuts.
66
+ Added new addShortcut to TinyMCE_Control, this enables plugin to register custom keyboard shortcuts.
67
+ Added new getButtonHTML function to TinyMCE core, this function makes it easier for plugins/themes to make buttons.
68
+ Added more documentation on how to write plugins and updated the _template plugin.
69
+ Added more documentation on how to write custom themes.
70
+ Fixed so the default window size of the source editor is larger in the advanced theme.
71
+ Fixed so all internal plugins use the new auto registration and separation logic.
72
+ Fixed so all internal themes use the new auto registration and separation logic.
73
+ Fixed so the Safari warning is switched off by default.
74
+ Fixed so cursor position isn't moved when performing a cleanup.
75
+ Fixed so cursor position is correct when performing undo/redo actions.
76
+ Fixed so all themes/plugins now use a:hover to produce the mouse over button effect.
77
+ Fixed so it uses the DOMContentLoaded and onreadystatechange instead of onload.
78
+ Fixed so the simple theme also supports the button_tile_map option.
79
+ Fixed so the selection/cursor is moved to the beginning of area on search/replace.
80
+ Fixed callback handling to reduce logic, improve performance and flexibility.
81
+ Fixed documentarion error for the paste plugin, contributed by Jochen Metzger.
82
+ Fixed bug that made the cleanup process to hang MSIE on specific content.
83
+ Fixed bug with absolute to relative URL convertion logic if the absolute URL didn't have a path.
84
+ Fixed bug where about.htm in advanced theme refered to a non existing css file.
85
+ Fixed bug with defParam and the event_elements option.
86
+ Fixed bug where fullscreen plugin wasn't correctly setup with editor contents.
87
+ Fixed bug where paste/drop converted relative URLs incorrectly in MSIE.
88
+ Fixed bug with inlinepopups not restoring selection on close window in MSIE.
89
+ Fixed bug where selection was lost when a new column/row was inserted in a table running in Gecko.
90
+ Fixed bug where save plugin wasn't working in fullscreen mode.
91
+ Fixed bug where fullscreen plugin wasn't working in Opera.
92
+ Fixed bug where editor resizing in advanced theme wasn't working in Opera.
93
+ Fixed bug where cursor position was placed at the end of instance on word paste.
94
+ Fixed bug where a tinyMCE is undefined error was reported in Firefox.
95
+ Fixed compatiblity issues with new cleanup plugin and the prototype.js library.
96
+ Renamed the mceItemEditable/mceItemNonEditable to mceEditable/mceNonEditable.
97
+ Renamed the TinyMCEControl class to TinyMCE_Control, TinyMCE_ is the valid class prefix.
98
+ Removed the getInsertLinkTemplate and getInsertImageTemplate functions from themes and from API.
99
+ Removed insertImage and insertLink from TinyMCE core, they are moved to the advanced theme.
100
+ Removed opacity workaround made for Opera Preview 1, download Opera Preview 2 instead.
101
+ Removed search backward function from replace dialog since it could result in a infinite loop.
102
+ Marked insertlink_callback, insertimage_callback options as deprecated these can be replaced with execcommand_callback.
103
+ Moved selection specific methods to a new class. For example inst.selectNode is now inst.selection.selectNode.
104
+ Updated German language pack, contributed by Ace Man.
105
+ Version 2.0.2 (2006-01-24)
106
+ Added updated Danish language pack contributed by Jan Moelgaard, John Dalsgaard and Bo Frederiksen.
107
+ Added updated Czech language pack contributed by michi aka mishal.
108
+ Added new Slovenian language pack contributed by Domen Kosir.
109
+ Added new Turkish language pack contributed by Engin Dumlu.
110
+ Added new save_onsavecallback option to the save plugin, this function is called on save.
111
+ Added new save_enablewhendirty option to the save plugin, this will disable the button until changes are made.
112
+ Added new onpageload callback event, this event is called when the page is loaded but before instances are made.
113
+ Added new accessibility_focus option, this enables you to control if buttons should be tab focusable or not.
114
+ Added new greek alpha character to charmap dialog.
115
+ Added new Scaron,scaron,Alpha entities to the default value of the entities option thanks to Kevin Rodgers.
116
+ Added new contextmenu items link.unlink,advhr contributed by Speednet.
117
+ Added new paste_insert_word_content_callback option for the paste plugin.
118
+ Added new cleanup plugin, this will replace the one inside the core ones it's considered stable.
119
+ Added cancel button to color picker contributed by Speednet.
120
+ Fixed various documentation errors and typos, modified the FAQ.
121
+ Fixed issue where the first handleNodeChange call was done to early in initialization.
122
+ Fixed issue with Dutch language pack for advlink plugin.
123
+ Fixed issue where dialogs was to short when dialog_type option was set to modal in MSIE.
124
+ Fixed bug where insert image under Gecko resulted in a broken image if it was inserted a the beginning of a element.
125
+ Fixed bug where mceVisualAid class wasn't removed from TH elements on save.
126
+ Fixed bug where the href attribute area elements gets converted to xhref.
127
+ Fixed bug with document relative anchors being forced absolute even when the convert_urls was set to false.
128
+ Fixed bug where some plugins produced &gr; intead of &gt; entities on string encoding.
129
+ Fixed bug where some characters in charmap dialog was double encoded in Firefox/Gecko.
130
+ Fixed bug with XML core entities wasn't encoded when using raw or numeric value in entity_encoding option.
131
+ Fixed bug where classes was removed from table,td,th elements when the verify_css_classes option was enabled.
132
+ Fixed bug where elements was getting a visual aid class if a default or force class attribute value rule was used.
133
+ Fixed bug where strong/em rules didn't handle the -/+ prefixes correctly under Firefox/Mozilla.
134
+ Fixed bug where non textarea elements didn't work when submiting content.
135
+ Fixed bug where a access denied error was produced when using contextmenu together with modal dialogs under MSIE.
136
+ Fixed bug where fullscreen plugin didn't call custom cleanup functions when passing content back and forth.
137
+ Fixed issue where default rule for font tags didn't have a + prefix in valid_elements.
138
+ Fixed issue with CSS where "arrow" was used instead of "default" for cursor replacement.
139
+ Fixed issue where the replace button replaced the current selection first time it was used.
140
+ Fixed issue with missing title for the advhr dialog.
141
+ Fixed issue with div not beeing usable in the theme_advanced_blockformats option.
142
+ Fixed issue in with translation in the German language pack.
143
+ Fixed so the word wrap toggle for source view functions in Firefox/Mozilla.
144
+ Fixed so title attribute of emotion images gets inserted aswell as alt.
145
+ Fixed so the insert return on popups is checked by default in advlink.
146
+ Fixed so url gets filled when empty if a user selects a popup url.
147
+ Fixed so some init settings gets trimmed from whitespace.
148
+ Fixed so charmap closes when a char is selected since most of the time users only need one char.
149
+ Fixed so the link and image dialogs of advanced theme are styled with the new 2.x layout.
150
+ Fixed accessibility issuew with the link, image and advhr dialogs.
151
+ Fixed so the advhr dialog uses the new 2.x layout.
152
+ Fixed XHTML compliance for Preview plugin contributed by Bo Frederiksen.
153
+ Fixed entity decoding problem with insert button of the advhr plugin contributed by Bo Frederiksen.
154
+ Version 2.0.1 (2005-12-02)
155
+ Fixed critical bug in some MSIE versions when submiting content.
156
+ Version 2.0 (2005-12-01)
157
+ Added new paste_replace_list option to the paste plugin, this replaces some MS specific characters into normal characters.
158
+ Added new convert_urls option, this was required to address some issues with Firefox 1.5.
159
+ Added new paste_create_linebreaks option to paste plugin contributed by Kevin Rodgers.
160
+ Added new advimage_update_dimensions_onchange option to advimage plugin, this is enabled by default.
161
+ Added new table_inline_editing option, this enables you to toggle the inline table editing controls in FF 1.5.
162
+ Added new object_resizing option, this enables you to toggle the resizing controls of table and images in FF 1.5.
163
+ Added updated simplified Chinese language pack contributed by Wang Yang (tom_cat).
164
+ Added updated Dutch language pack contributed by Mark van der Sanden.
165
+ Added updated French language pack contributed by Normand Lamoureux.
166
+ Added updated Polish language pack contributed by Wooya.
167
+ Added updated Brazilian Portuguese language pack contributed by Marcio Barbosa.
168
+ Added new Traditional Chinese language pack contributed by Twapweb.
169
+ Added new Slovak language pack contributed by Vladimir VASIL.
170
+ Added new Norwegian Nynorsk pack contributed by Knut B. Jacobsen.
171
+ Fixed bug where getting init settings in handleNodeChange callback wasn't working correctly when multiple configs where used.
172
+ Fixed bug with urls being converted into incorrect values in Firefox 1.5.
173
+ Fixed bug where editor and cursor was flickering when TinyMCE was placed in a hidden div in Firefox 1.5.
174
+ Fixed bug with missing parenthesis in a MSIE setInnerHTML call.
175
+ Fixed bug where MSIE was producing a "Invalid source HTML for this operation" javascript error when placed in P tags.
176
+ Fixed bug where some styles with RGB values was parsed/serialized incorrectly in Firefox/Mozilla.
177
+ Fixed bug where reset form action didn't reset all editor instances to their original values.
178
+ Fixed bug where a javascript exception whas thrown when the editor was resized to a negative value in MSIE.
179
+ Fixed bug where inserting custom characters or date/time within a font element removed formatting in Firefox/Mozilla.
180
+ Fixed bug where image urls was inserted incorrectly if relative_urls was set to false due to issues with inserthtml command.
181
+ Fixed bug where encoding option wasn't working correctly becurse the entities list wasn't initialized.
182
+ Fixed bug where MSIE removed the first comment from the HTML of a mceInsertContent call.
183
+ Fixed bug where update all cells in table/row wasn't working on some tables with lots of whitespace.
184
+ Fixed bug with td background attribute when inline_styles option was set to true in MSIE.
185
+ Fixed bug where forms submitted with accesskey or return produced a JS error in Firefox 1.5.
186
+ Fixed bug with URL convertion logic not converting paths correctly to relative/absolute URLs.
187
+ Fixed bug where inline_styles option and flash moviews produced strange results.
188
+ Fixed bug where tabs and links where opened in a new window in MSIE when dialog_type option was set to modal.
189
+ Fixed bug where dialogs didn't open in Opera if the dialog_type option was set to modal.
190
+ Fixed bug where the table plugin wasn't working with the inlinepopups plugin while running in MSIE.
191
+ Fixed bug where embed elements whasn't parsed correctly by the flash plugin if no object tag was surrounding it.
192
+ Fixed bug where contents wasn't stored/restored when using the browser back button in Firefox 1.5.
193
+ Fixed issue where the ghost resize handles in Firefox/Mozilla was appearing when resizing images/tables.
194
+ Fixed issue with constrain proportions feature in advimage plugin, when trying to reset the values to blank.
195
+ Fixed issue where inlinepopups option couldn't be enabled/disabled on individual instances.
196
+ Fixed issue where TDs was created instead of TH elements when inserting a column on a row with TH elements.
197
+ Fixed issue with editor_selector/editor_deselector options couldn't be used when mode was specific_textareas.
198
+ Fixed issue where font selection produced null face attributes in MSIE.
199
+ Fixed issue where document local anchors where prefixed with the document name.
200
+ Fixed issue where link/image dialogs of the advanced theme didn't open using inlinepopups when enabled.
201
+ Fixed so the CSS select list gets hidden in the link dialog in advanced theme if there isn't any CSS classes.
202
+ Fixed so that the onsubmit handler of a form was processed correctly when posting using the save plugin.
203
+ Fixed so TinyMCE makes some very simple cleanups even if cleanup option is set to false.
204
+ Fixed so alignment button gifs have the justify prefix, such as justifyleft, for compatiblity with Drupal.
205
+ Fixed compatiblity issues with the .NET version of TinyMCE Compressor.
206
+ Fixed performance issue with fullscreen plugin, it switches back to normal view a lot faster now.
207
+ Fixed issues with mceSelectList class in advanced theme and compressed it some.
208
+ Renamed the Norwegian language pack from no to nb since it's "Norwegian Bokm�l".
209
+ Version 2.0RC4 (2005-10-30)
210
+ Fixed bug with font face/size/color wasn't working correctly in Firefox 1.5b1.
211
+ Fixed bug where all actions where dispatching the onbeforeunload event.
212
+ Fixed bug where buttons in fullscreen mode wasn't working in MSIE.
213
+ Fixed bug where style removal with drop list wasn't working correctly.
214
+ Fixed bug where element path list or return key some times didn't scroll to the right location.
215
+ Fixed bug where return key in Firefox/Mozilla some times produced a error.
216
+ Fixed bug where MSIE was presenting a alert box about insecure items when running TinyMCE over HTTPS.
217
+ Fixed bug where TR/TD elements width/height attributes produced a JS error on cleanup.
218
+ Fixed bug where Polish Ctrl+Alt+Z executed the undo function instead of inserting national character.
219
+ Fixed bug where editor couldn't be initialized if no rows or height where specified on a textarea.
220
+ Fixed bug where comments sometimes got removed from HTML code.
221
+ Fixed bug with advimage not inserting onmouseover attribute correctly.
222
+ Fixed bug where anchors with child nodes messed up list elements.
223
+ Fixed bug where apply_source_formatting option wasn't working when used together with remove_linebreaks.
224
+ Fixed bug where empty paragraphs where invisible in Firefox. These are now padded with a &nbsp;.
225
+ Fixed bug where tables without a border attribute didn't get visual aid borders until cleanup.
226
+ Fixed bug with URL convertion, absolute URLs to the same domain without trailing slash produced incorrect results.
227
+ Fixed bug with URL convertion of urls like this somedir/?id=3 produced somedir?id=3.
228
+ Fixed bug with weird cursor movement when pressing return/enter in a list when running on Firefox/Mozilla.
229
+ Fixed bug where contents where deleted sometimes when user pressed return/enter running on Firefox/Mozilla.
230
+ Fixed bug where style elements what generated empty in MSIE, but using style tags is not recommended.
231
+ Fixed bug with not beeing able to have absolute urls in the external_link_list_url and simmilar.
232
+ Fixed bug with bold, italic, underline, strikethrough buttons not beeing selected correctly.
233
+ Fixed bug with font size and font face select list not beeing selected correctly.
234
+ Fixed bug where document anchors was incorrectly converted if document_base_url was defined.
235
+ Fixed bug where changing border width/color of a table didn't update CSS styles correcty.
236
+ Fixed bug where emotions plugin didn't insert a new smiley the second time you insert one.
237
+ Fixed bug with blockquote command produced javascript error when used on lists in MSIE.
238
+ Fixed bug with cleanup converting flash elements to images.
239
+ Fixed bug where class wasn't selected in drop list of advlink/advimage dialogs when editing links/images.
240
+ Fixed bug where cellpadding/cellspacing/scope wasn't correctly handled in MSIE 5.5SP2.
241
+ Fixed bug where hreflang,charset and type attributes wasn't returned correctly in MSIE 5.5SP2.
242
+ Fixed bug with broken image URLs when user clicked the cleanup button in Firefox 1.5b2.
243
+ Fixed some compatiblity issues with call to createStyleSheet and event.target setup.
244
+ Fixed more compatiblity issues with scripts extending core JS logic such as the Array class.
245
+ Fixed issue where paragraphs wasn't generated if user pressed returned inside a H1-H6 running on Firefox/Mozilla.
246
+ Fixed issue with context menu plugin messing up some onclick events.
247
+ Fixed issue with missing </tbody> HTML in advanced theme.
248
+ Fixed issue with Finnish language pack, it wasn't working at all.
249
+ Fixed issue where button control styles needed to be overriden in default editor_ui.css.
250
+ Fixed issue with a broken link in the documentation to the theme_advanced_resize_horizontal option.
251
+ Fixed issue with missing var declaration of a buttons variable in the advanced theme.
252
+ Fixed issue with missing block elements in block element regexp.
253
+ Fixed issue where advhr plugin didn't produce valid attribute for noshade.
254
+ Fixed issue with misslabeled option, plaintext_create_paragraphs is renamed to paste_create_paragraphs.
255
+ Fixed issue where remove_script_host and relative_urls where treated as true if they where specified as strings.
256
+ Fixed issue with charmap, made it easier to select/click characters.
257
+ Fixed issue with search/replace dialogs not being refocused in MSIE.
258
+ Fixed issues with dialogs being to small if large class names where added. Made sure they can grow.
259
+ Fixed issues with some dialogs being to small in NS 7.2 and not working correctly in NS 7.1.
260
+ Fixed missing HEAD element in fullscreen.htm file, contributed by monkeybrain.
261
+ Fixed some HTML issues with the advhr plugin, contributed by monkeybrain.
262
+ Fixed some small issues with the span element rule of the XHTML rule set in valid_elements documentation.
263
+ Added new Opera 9 support, most of the functions is working in the prerelease of Opera 9.
264
+ Added new paste_strip_class_attributes option to paste plugin, contributed by monkeybrain.
265
+ Added new merge_styles_invalid_parents option, allows users to control what elements gets styles.
266
+ Added new theme_advanced_resizing_use_cookie option, this enables you to disable the cookie used by resize.
267
+ Added new function that converts all font elements to span elements when the editor loads.
268
+ Added new force_hex_style_colors option, enables you to control the color format of CSS styles.
269
+ Added new convert_fonts_to_spans option, this option converts fonts to span elements.
270
+ Added new font_size_classes option, this option is used together with convert_fonts_to_spans.
271
+ Added new doctype option, enables you to control the internal doctype declaration.
272
+ Added new event_elements option contributed by happy_noodle_boy.
273
+ Added new path tooltips for font, span and flash elements such as color, font-family, src and so forth.
274
+ Added trim_span_elements back again, this option removes unneeded span elements.
275
+ Added documentation of the apply_source_formatting option.
276
+ Added updated Danish language pack, contributed by Jan Moelgaard.
277
+ Added updated Hebrew language pack, contributed by Liron Newman.
278
+ Added updated Russian language pack, contributed by Vladimir Vitkovsky.
279
+ Added updated Finnish language pack, contributed by Tuomo Aura.
280
+ Added updated Spanish language pack, contributed by Adolfo Sanz De Diego.
281
+ Added updated Italian language pack, contributed by grueff.
282
+ Added updated Icelandic language pack, contributed by Johannes Birgir Jensson.
283
+ Removed option convert_fonts_to_styles due to various compatiblity issues. Use convert_fonts_to_spans instead.
284
+ Version 2.0RC3 (2005-09-26)
285
+ Fixed bug where colorpicker in table plugin wasn't working in Mozilla/Firefox.
286
+ Fixed bug where closed anchors produced strange results. Anchors are now forced open.
287
+ Fixed bug where the font style/color functions wasn't producing correct results.
288
+ Fixed bug where buttons not working if a target was defined in head element.
289
+ Fixed bug where paragraphs wasn't generated when pressing return/enter in a floating div.
290
+ Fixed bug where anchor contents was getting lost, contents of anchors are now placed behind them.
291
+ Fixed bug where style info such font size/face/color was removing parent elements such as LI.
292
+ Fixed bug where %I wasn't inserting correct hour in the insertdatetime plugin.
293
+ Fixed bug where MSIE sometimes doesn't output attributes correctly, contributed by Luke Bennett.
294
+ Fixed bug where images was lost if the user pressed return after a image in a TD on FF.
295
+ Fixed bug where empty non block elements where produced when hitting return in Gecko browsers.
296
+ Fixed bug where it was impossible to update tables.
297
+ Fixed various bugs and issues with removeformatting function it will now remove classes and styles.
298
+ Fixed compatiblity issues with prototype.js and other scripts that modifies the Object.prototype.
299
+ Fixed issue where a unnecessary dir and style attribute was generated on the blockquote command in MSIE.
300
+ Fixed issue with access denied error if page contained iframes with external URLs.
301
+ Fixed issue where the plugin links in about dialog was linking to blank.
302
+ Fixed issue with useCSS command not working in Deer park beta.
303
+ Fixed XHTML table compatiblity issues. Placed bordercolor and height in styles instead of attributes.
304
+ Fixed issue with tables getting empty summary attribute in MSIE.
305
+ Fixes so the insert custom character dialog is accessible through keyboard.
306
+ Removed _self as the default target for links inorder to produce more XHTML compliant code.
307
+ Removed bordercolor field from table row properties dialog since this is not a valid attribute.
308
+ Added accessibility warnings to image and table plugin. These can be disabled by the accessibility_warnings option.
309
+ Added updated Danish language pack, contributed by Jan Moelgaard.
310
+ Added updated Hebrew language pack, contributed by Liron Newman.
311
+ Added updated Norwegian language pack, contributed by Knut B. Jacobsen.
312
+ Added updated German language pack, contributed by salzbermat.
313
+ Version 2.0RC2 (2005-09-12)
314
+ Fixed bug with plugin tab in about dialog not working in MSIE 5.01.
315
+ Fixed bug issues with paste and noneditable plugin in MSIE 5.01.
316
+ Fixed bug where dialogs in the search/replace plugin was to small.
317
+ Fixed bug where about dialog sometimes produced unknown runtime error in MSIE.
318
+ Fixed bug where � and � characters was converted the wrong entities.
319
+ Fixed bug where it was possible to click on the disabled link icon when nothing was selected.
320
+ Fixed bug where autosave plugin wasn't working with JS submit calls or the save plugin.
321
+ Fixed bug where file/image browser wasn't working with the default link/image dialogs.
322
+ Fixed bug where style attributes where parsed/serialized incorrectly when using - and #.
323
+ Fixed bug where inline popups plugin wasn't working when loading the compressed JS files.
324
+ Fixed bug with contextmenu showing theme image dialog instead of advimage dialog.
325
+ Fixed bug with flash plugin trying to include a empty external list JS file.
326
+ Fixed bug with some fields beeing to short if the file browser was disabled.
327
+ Fixed bug where contextmenu wasn't recognizing flash elements.
328
+ Fixed bug where border styles on images and tables was removed.
329
+ Fixed accessibility issue with colorpicker, added titles and keyboard access.
330
+ Fixed accessibility issue with toolbar buttons, all toolbar buttons are now wrapped in links.
331
+ Fixed accessibility issue width browse buttons, these are now wrapped in links.
332
+ Fixed accessibility issue with select lists, all select lists has now keyboard access.
333
+ Fixed accessibility issues with missing labels in various dialogs.
334
+ Fixed accessibility issue with the emotions plugin, this one now inserts a alt text for smileys.
335
+ Fixed accessibility issue with the locationbar, menubar and so fort in advlink plugin.
336
+ Fixed accessibility issue with TOC in english help pages. This is not wrapped in a acronym element.
337
+ Fixed issue with the directionality plugin. It will now get disabled on invalid elements.
338
+ Fixed issue where popups was the wrong size a new resizeToInnerSize function resizes popups to the correct size.
339
+ Fixed so empty <a> elements gets removed since they serve no purpose.
340
+ Added support for TinyMCE grabbing text from input elements if specified in exact mode.
341
+ Added language specific relative popup width/heights to all build in dialogs.
342
+ Added missing browser for popup url in advlink plugin.
343
+ Added missing delete table icon to context menu.
344
+ Added so it's possible to see the target value in the target select dropdown in the advlink plugin.
345
+ Updated the documentation to include information about the new language packs.
346
+ Updated the swedish language pack.
347
+ Version 2.0RC1 (2005-09-06)
348
+ Renamed CSS classes mcePathTop,mcePathBottom,mcePath to mceStatusbarTop,mceStatusbarBottom,mceStatusbar. [BREAKS COMPATIBLITY].
349
+ Moved all theme CSS files to a css directory within the theme. [BREAKS COMPATIBLITY].
350
+ Removed the default theme since the advanced theme can be configured to be as the default theme. [BREAKS COMPATIBLITY].
351
+ Removed closeDialog method from TinyMCE use tinyMCEPopup.close(); instead of tinyMCE.closeDialog();. [BREAKS COMPATIBLITY].
352
+ Removed the auto_cleanup_word option, since the paste plugin now handles this better than the build in function.
353
+ Added improved undo/redo and onchange handling. All modifications are now undo/redo:able.
354
+ Added new mceBeginUndoLevel/mceEndUndoLevel commands. Used to begin/end a undo/redo:able action.
355
+ Added new link dialog with tab interface and lots of new fields and options.
356
+ Added new image dialog with tab interface and lots of new fields and options.
357
+ Added new about dialog with tab interface, this one replaces the old help dialog.
358
+ Added new table dialogs with tab interface and lots of new fileds and options.
359
+ Added new utils directory in tiny_mce script dir. This directory contains various utility classes.
360
+ Added new TinyMCEPopup class to tiny_mce_popup.js, used for common popup logic.
361
+ Added new inlinepopups plugin, this makes the popup windows to open as DHTML windows (divs).
362
+ Added new version info constants to TinyMCE (majorVersion, minorVersion, releaseDate).
363
+ Added new resizing functionality to the advanced theme, the editor instance can now be resized.
364
+ Added new theme_advanced_resizing option, enables/disables the new resizing functionality.
365
+ Added new theme_advanced_resize_horizontal option, enables/disables the horizontal resizing.
366
+ Added new theme_advanced_path option, enables/disables the element path functionality in statusbar.
367
+ Added new compressed icons about 1/3 of the original size, contributed by Jozef.
368
+ Added new center support of images, images are now wrapped in a div with alignment.
369
+ Added new - character to the valid_elements/extended_valid_elements options this feature removes empty elements.
370
+ Added new setup_content_dom and submit_content types to custom cleanup callbacks.
371
+ Added new inst parameter to custom cleanup callbacks, this is a reference to the editor instance.
372
+ Added new mceColorPicker command to the advanced theme, enables the possibility invoke the color picker.
373
+ Added new safari_warning option, this enables you to disable the alert that gets presented when running on Safari.
374
+ Added new editor_selector/editor_deselector options that enables you to specify a include/exclude from convertion class.
375
+ Added new tinyMCE.addToLang function to reduce the overall size of the language files.
376
+ Added new auto save plugin. This plugin will confirm that the user want's the leave any modifications unsaved.
377
+ Added new noneditable plugin. This plugin enables you to disable/enable the possibility to edit various elements.
378
+ Added new word example, to better illustrate how TinyMCE is to be used when pasting content from Office/Word.
379
+ Added missing entities eactute,iacute,oacute,uacute,Aacute,Eacute,Iacute,Oacute,Uacute,Yacute,Aacute.
380
+ Added updated Hebrew language pack contributed by Liron Newman.
381
+ Added visual aid icon for invisible anchors elements.
382
+ Added new insert table and delete table commands to context menu.
383
+ Added new convert_fonts_to_styles option, this option controls if font or span will be used when using font size, color etc.
384
+ Renamed the theme_advanced_path_location to theme_advanced_statusbar_location.
385
+ Moved all popup javascript logic into external .js files, inorder to separate presentation and logic.
386
+ Removed the automatic resizing of popups. Better to use relative window sizes for each language when opening a dialog.
387
+ Fixed issue where the character map dialog lost focus when inserting a char.
388
+ Fixed issue where the attribute values where not XML encoded correctly. For example: & will be &amp;.
389
+ Fixed performance issue with the table plugin, it was executing logic even when it was inactive.
390
+ Fixed so the directionality gets inherited by all popups/dialogs.
391
+ Fixed so the CSS file content_css loads after the theme content CSS, user specific CSS extends theme CSS.
392
+ Fixed so more than 3 toolbar rows may be added in when using the default simple layout.
393
+ Fixed so the insertdatetime plugin polls it's default date formats from the language pack.
394
+ Fixes so auto_reset_designmode is enabled by default, to avoid the question about the editor not working in tabs.
395
+ Fixed better inline styles support for images and tables.
396
+ Fixed duplicate IDs on advanced theme with external toolbar, contributed by Miguel Fortea.
397
+ Fixed issue with remove formatting under MSIE, if all contents of a element is selected the element is also selected.
398
+ Fixed issue with visual aids not being removed from content when cleanup is disabled. But it's NOT recommended to disable the cleanup.
399
+ Fixed bug where return/enter key sometimes produced empty elements in MSIE.
400
+ Fixed bug where link list was generated twice in the advanced themes link dialog.
401
+ Fixed bug issue where embed was converted in to ibed due to some invalid regexps.
402
+ Fixed bug where summary attribute on tables got lost in MSIE.
403
+ Fixed bug where the editor scrolled to the top of content when the pasting text with the paste plugin.
404
+ Fixed bug where external toolbar wasn't translated, contributed by Miguel Fortea.
405
+ Fixed bug where the editor had a incorrect height, contributed by Miguel Fortea.
406
+ Fixed bug where visual aid class where presented in element path.
407
+ Fixed bug where HR elements with a id set to "null" produced runtime error in MSIE.
408
+ Fixed bug where isDirty wasn't working due to the same function name and variable name.
409
+ Fixed bug where events like onclick wasn't removed/stored correctly in old MSIE.
410
+ Version 1.45 (2005-06-23)
411
+ Fixed so the newdocument button shows again, was removed by accident in RC2.
412
+ Fixed so styles drop down in link dialog gets hidden if no classes are defined.
413
+ Fixed bug where Paste command in context menu wasn't working.
414
+ Fixed bug issue with not having a base href element in preview plugin.
415
+ Fixed bug where input elements produced double type/value attributes in MSIE.
416
+ Fixed so the check for empty contents in cleanup handled uppercase elements.
417
+ Added a alert box is a popup is blocked by a popup blocker.
418
+ Added updated dutch language pack, contributed by Fred Stuurman.
419
+ Added a confirm dialog for the newdocument action.
420
+ Added mceContentBody class to the iframe document body.
421
+ Added allowtransparency attribute to iframe.
422
+ Added fix where some HTML content produced runtime error in MSIE.
423
+ Added a lot better Safari support, but many things are still very buggy.
424
+ Added flash_wmode, flash_quality and flash_menu options for the flash plugin.
425
+ Added new dialog_type option, this enables you to switch back to modal dialogs in MSIE.
426
+ Updated Canadian French table language pack contributed by Virtuelcom.
427
+ Fixed some minor issues with Simplified Chinese language pack.
428
+ Re-added Tahoma font to font drop list, was removed in previous version.
429
+ Version 1.45 RC2 (2005-06-15)
430
+ Fixed bug where paste_use_dialog option for the paste plugin wasn't working correctly.
431
+ Fixed bug issue with setContent not calling custom cleanups correctly. Inflicts the Flash plugin.
432
+ Fixed bug where external_link_list_url/external_image_list_url in fullscreen mode.
433
+ Fixed so TinyMCE doesn't use modal dialogs on MSIE, these where giving some problems with for example lost sessions.
434
+ Fixed the auto resize function for popups to use new logic.
435
+ Fixed so callback functions gets called correctly from fullscreen mode.
436
+ Fixed misspelled language pack for canadian french in the advimage plugin.
437
+ Fixed so openWindow can open use absolute URL:s.
438
+ Fixed bug issue where auto_cleanup_word sometimes didn't work in MSIE.
439
+ Fixed bug issue where the close button in dialogs wasn't available on Firefox on MacOSX.
440
+ Added new pastetext icon contributed by speednet.
441
+ Added new browsers option that enables you to specify what browsers is to be WYSIWYG enabled or not.
442
+ Added partial Catalan translation contributed by Marc Bria Ram�rez.
443
+ Added portuguese Brazil translation contributed by Jo�o Borges.
444
+ Added updated Simplified Chinese language pack contributed by cube316.
445
+ Added beforeunload handler for fullscreen plugin so contents gets updated when the window is closed.
446
+ Added a new fullscreen_settings option for the fullscreen plugin contributed by David Glick.
447
+ Added new insert table command to context menu when user clicks within a table.
448
+ Added new advimage_constrain_proportions option to advimage plugin, contributed by Knut B. Jacobsen.
449
+ Added updated advanced theme with a new external toolbar location option, contributed by Man-Chicken (http://www.zoomshare.com/).
450
+ Added new tiny_mce_gzip.php file, this PHP script merges and compressed the requested .js files to improve loading times.
451
+ Added updated czech language pack, contributed by Stanislav Lacko.
452
+ Added new mceRemoveNode command, this command removes a node and inserts the node contents instead.
453
+ Added new behavior to format select box, you can now remove a paragraph by selecting -- Format --.
454
+ Removed ?rnd from external_link_list_url/external_image_list_url since it doesn't work well with serverside scripts.
455
+ Version 1.45 RC1 (2005-05-27)
456
+ Fixed bug where character map inserted &amp; and &lt;/&gt; when using & < >.
457
+ Fixed so paragraphs containing &nbsp; is converted to numeric or raw if entity_encoding is set.
458
+ Fixed bug in searchreplace plugin when user tried to search on a empty string or the editor contents was empty.
459
+ Fixed repaint/trail graphics issues with images and tables in FF/Mozilla.
460
+ Fixed some memory leaks in TinyMCE core and context menu plugin, only MSIE was inflicted by this.
461
+ Fixed stange issue where elements sometimes disappeared in MSIE.
462
+ Fixed URL convertion problems with onmouseover, onmouseout image urls in advimage plugin.
463
+ Fixed URL convertion problems with Flash plugin.
464
+ Fixed the experimental Safari support, some features work some doesn't.
465
+ Fixed bug where multiple a elements where created when updating links on images in FF/Mozilla.
466
+ Fixed bug in importCSS function, was having a meaning less if statement.
467
+ Fixed so the contextmenu plugin uses images from the configurated theme instead of the advanced theme.
468
+ Fixed so the external_link_list_url/external_image_list_url options can use relative or absolute path.
469
+ Fixed so the external_link_list_url/external_image_list_url has a random query parameter to prevent it from cache.
470
+ Added new mceInsertRawHTML command, this inserts raw as it is HTML code in the the selected position.
471
+ Added paste plain text plugin contributed by Ryan Demmer, converted it into a paste plugin.
472
+ Added updated paste plugin contributed by speednet, includes paste directly feature for MSIE.
473
+ Added split/merge table cells support, to table plugin and context menus.
474
+ Added cut/copy/paste table rows functionality to context menu and table plugin.
475
+ Added new mceSetContent command, this does the same as the setContent function.
476
+ Added new clear all/new document icon to advanced theme.
477
+ Added new remove formatting and select text color icons.
478
+ Added new directionality plugin to better support languages that write from right to left.
479
+ Added new fullscreen plugin, enables users to toggle fullscreen editing mode.
480
+ Added a new template/tutorial plugin to aid people in the development of own plugins.
481
+ Removed visual_table_style and replaced it with visual_table_class. [BREAKS COMPATIBLITY].
482
+ Renamed urlconvertor_callback option to urlconverter_callback.
483
+ Version 1.44 (2005-05-03)
484
+ Fixed bug with contextmenu not showing at the correct location in MSIE.
485
+ Fixed bug where a error was produced by the Flash plugin if the user reloaded the page in MSIE.
486
+ Fixed issue where mceAddControl and mceRemoveControl commands produced a error in MSIE.
487
+ Fixed bug when images and flash movies where mixed in the editor produced strange results.
488
+ Fixed so trailing / characters isn't removed from URLs.
489
+ Fixed so the contextmenu uses a diffrent method of loading it's custom CSS file.
490
+ Fixed getAttributes problem, it should read getAttribute.
491
+ Fixed so "Edit HTML source" window may be maximized.
492
+ Added French eacute entitiy to default entities option.
493
+ Added a height CSS value for the element path in advanced themes editor_ui.css since it keept bobbing up and down.
494
+ Added updated Polish language pack contributed by Marcin Szymon Sznyra.
495
+ Added better window auto resize method for most dialogs.
496
+ Added new feature to set what tags are to be left open in valid_elements. Add a + before the element names to enable.
497
+ Added nowrap for the editor table cells, sometimes the editors controls wrapped.
498
+ Updated German language pack contributed by Krokogras.
499
+ Version 1.44 RC2 (2005-04-25)
500
+ Fixed bug with host prefixes and port numbers when having relative_urls set to false and remove_script_host set to true.
501
+ Fixed bug when site absolute URLs for example /something was converted incorrectly in Firefox/Mozilla.
502
+ Fixed bug where the link wasn't auto selected in the drop list in the advanced themes default link dialog.
503
+ Fixed bug issue with the flash plugin and croping out characters before and after the movie.
504
+ Fixed bug where the editor jumped to top of editor area on enter/return when doctype was set to XML Transitional.
505
+ Fixed bug where context menu was appearing in the wrong location if the window was resized.
506
+ Fixed bug in the context menu where table properties wasn't working.
507
+ Fixed bug where a selectorText exception was trown if the CSS file contained @import or @charset.
508
+ Fixed bug where bold/italic/strikethough/underline wasn't selected/unselected in toolbar some times.
509
+ Fixed issue with hspace and vspace when having the inline_styles option enabled. Contributed by speednet.
510
+ Fixed bug where access denied error was thrown sometimes in MSIE.
511
+ Fixed so images without src won't be inserted.
512
+ Fixed some issues with width/height fields in the advimage plugin.
513
+ Fixed so the contextmenu plugin doesn't appear in MSIE 5.0, now functions with 5.5+.
514
+ Added filebrowser icon to mouse over and mouse out fields in the advimage plugin.
515
+ Added filebrowser icon to popup field in the advlink plugin.
516
+ Added so the triggerSave function gets auto executed when a user calls submit on a form, this can be disabled with the submit_patch option.
517
+ Added missing readme.txt file for the context menu plugin.
518
+ Added new border and background color fields to table dialog, based on contribution by Neirda. Enable them by the table_color_fields option.
519
+ Removed some old outdated items from FAQ.
520
+ Version 1.44 RC1 (2005-04-20)
521
+ Fixed bug where width/height attributes of a image wasn't stored some times in Firefox/Mozilla.
522
+ Fixed bug where P elements where created if a user pressed return/enter within a h1-h6 in Firefox/Mozilla.
523
+ Fixed bug where the remove format fuction didn't work some times in MSIE.
524
+ Fixed so backspace/delete gets added in one undo level in MSIE (improves performance).
525
+ Fixed so the "Could not find element by id or name" alert only shows when the debug option is set to true.
526
+ Fixed bug where bold/italic didn't work in Mozilla 1.3.
527
+ Fixed bug where width/height of a hidden TinyMCE instance where incorrect.
528
+ Fixed so the function layout of classes in tiny_mce_src.js uses prototype keyword instead of TinyMCE_ prefix (reduces size).
529
+ Fixed bug where triggerNodeChange produced javascript error some times in MSIE.
530
+ Fixed some issues in the Swedish and Spanish language packs.
531
+ Fixed bug where first undo level wasn't working correctly.
532
+ Fixed so flash plugin loads it's needed CSS data from within the plugin.
533
+ Fixed button images and CSS in the simple theme.
534
+ Fixed so the simple example shows how to use the simple theme instead of the default theme.
535
+ Fixed so cleanup default values can be set to empty. For example alt= generated alt="" on img elements.
536
+ Fixed memory leaks in MSIE (circular closure problem) events are now removed in a better way.
537
+ Fixed bug where URLs where converted incorrectly if the editor page URL contained / characters.
538
+ Fixed bug where table guidlines didn't work correctly when using the build in Mozilla table buttons.
539
+ Fixed bug where the Flash plugin was breaking other elements.
540
+ Added new contextmenu plugin, this plugin adds a menu if the user right clicks/uses the contextmenu on elements.
541
+ Added new multiple configuration support, the init method may now be called multiple times.
542
+ Added new remove_linebreaks option, this option is enabled by default and removes all HTML code linebreaks.
543
+ Added new behavior to the textarea_trigger option, if mode is textareas and trigger is false those elements will not be converted into editors.
544
+ Added new entity_encoding option, enabled user to better control the behavior of how character are converted into entities.
545
+ Added new isDirty command to TinyMCEControl, this method returns true if the user has done any modifications to the content.
546
+ Added new onchange_callback option, this callback is executed when contents within the editor instance is changed.
547
+ Added new init function for themes/plugins this gets called when a editor instance has finished it's setup.
548
+ Added new init_instance_callback option this callback is executed when instances are added to the editor.
549
+ Added new cleanup option this option enables users to totaly disable the whole cleanup process.
550
+ Added new importCSS method to TinyMCE. This method allows plugins and themes to load custom CSS files on initialization.
551
+ Added new getSelectedHTML method to TinyMCEControl class, this method returns the currently selected HTML contents.
552
+ Added new getSelectedText method to TinyMCEControl class, this method returns the currently selected contents as text.
553
+ Added new removeclass behavior to the removeformat button. The current class will be removed if no contents is selected.
554
+ Added new queryInstanceCommandValue and queryInstanceCommandState methods.
555
+ Added new option button_tile_map, this option contols the usage of button tile maps and is disabled by default.
556
+ Version 1.43 (2005-03-06)
557
+ Fixed bug with ask option not working at all.
558
+ Fixed bug where a "instance is not defined bug" error was produced.
559
+ Fixed bug with empty image src produced a error.
560
+ Fixed so the simple and default theme used the same CSS style as the advanced theme.
561
+ Fixed bug with the relative to absolute URL convertion logic if a empty string was passed used.
562
+ Fixed parse error bug with the source editor some servers can't handle XML PI declarations.
563
+ Fixed bug issue with HR elements in MSIE, if a specific work pattern where used a runtime error was produced by MSIE.
564
+ Fixed bug in the URL convertor logic, port numbers was not correctly handled.
565
+ Fixed issue where the cursor was placed before a insert of custom charater or date/time.
566
+ Fixed bug where the editor height option didn't work on MSIE.
567
+ Fixed bug where a linefeed within a table cell broke the table in Firefox/Mozilla.
568
+ Fixed bug where return/enter key after a image removed all content.
569
+ Fixed bug where return/enter key sometimes produced nestled P elements.
570
+ Fixed bug where the editor was stealing focus on load in MSIE.
571
+ Fixed bug where the visual aid logic forces width/height attributes on tables.
572
+ Fixed bug where getCSSClasses some times returned null value.
573
+ Fixed issue where the lang_insert/lang_update language variables wasn't entity decoded.
574
+ Fixed so the image/link/flash drop list gets auto selected thanks goes to Randy Simons and salzbermat.
575
+ Fixed so remove formatting button in MSIE removes all classes aswell.
576
+ Fixed issue where output contained single br element when the editor area was empty.
577
+ Added new %A/%a/%B/%b format chunks to insertdatetime, these insert localized date names such as January.
578
+ Added new oninit callback option for TinyMCE this callback is executed when all editor instances been initialized.
579
+ Added new preview panel to dialog in the advimage plugin, contributed by Virtuelcom.
580
+ Added element class name to element path in the advanced theme.
581
+ Updated Canadian French table language pack contributed by Virtuelcom.
582
+ Updated the swedish language pack, contributed by Mats L�fstr�m, York Consulting AB.
583
+ Version 1.42 (2005-02-14)
584
+ Fixed bug with the element path beeing resized if width/height of editor was 100%.
585
+ Fixed bug with reloading/flicker of all button images in MSIE if browser cache is disabled.
586
+ Fixed backspace/delete bug in Firefox, some times the cursor got stuck.
587
+ Fixed bug issues with enter/return key in Firefox/Mozilla.
588
+ Fixed bug where copy/paste and drag drop of images/links failed in Firefox/Mozilla if a document_base_url is provided.
589
+ Fixed so when relative_urls is set to false it forces absolute URLs for images/links.
590
+ Fixed so the _src.js suffix versions of the themes and plugins gets loaded with the tiny_mce_src.js script is used.
591
+ Fixed so verify_css_classes option is disabled by default.
592
+ Fixed bug where tables where resized when toggling visual aid in Firefox/Mozilla.
593
+ Fixed bugs with advhr plugin running in a hidden div element.
594
+ Added new auto_focus option that enabled a specific editor area to be focused on startup.
595
+ Added a extra argument to the filebrowser callback inorder to get the calling window reference.
596
+ Added a new persian (farsi) language pack contributed by Morteza Zafari.
597
+ Added new more nice looking icons contributed by Morteza Zafari and Michael Keck. The old icons are available in a separate icon pack.
598
+ Added updated Canadian French language pack contributed by Virtuelcom.
599
+ Added updated French languahe pack contributed by Laurent Dran.
600
+ Added updated German language pack contributed by Tobias Heer.
601
+ Added some documentation regarding the layout manager options made by SlyD.
602
+ Version 1.41 (2005-01-31)
603
+ Added new table plugin, all table code is moved into this plugin [BREAKS COMPATIBLITY].
604
+ Added new external_link_list_url/external_image_list_url options for better backend integration.
605
+ Added new file_browser_callback option for better backend integration.
606
+ Added new layout manager code into the advanced theme, contributed by SlyD.
607
+ Added new nowrap option, enables so users may change the word wraping behavior.
608
+ Added new Thai language pack contributed by Innozent.
609
+ Added obfuscated version of all plugins and themes to reduce over all startup/download time.
610
+ Added Simplified Chinese language pack contributed by cube316.
611
+ Added a updated Czech language pack thanks to Josef Klimosz.
612
+ Fixed issue where anchor elements where closed. This results in browser problems with the outputed HTML.
613
+ Fixed bug where the first return key press didn't produce a paragraph in Firefox/Mozilla.
614
+ Fixed bug in the searchreplace plugin where replace content sometimes fails in Firefox/Mozilla.
615
+ Fixed so all language packs now uses the ISO-639-2 code instead of ISO 3166-1 [BREAKS COMPATIBLITY].
616
+ Fixed some issues with the force_br_newlines option in MSIE.
617
+ Fixed bug where the backspace or delete key produced BR elements in Firefox/Mozilla.
618
+ Fixed bug issue with link and image dialogs of the default theme/simple example.
619
+ Fixed some bugs when having the editor hidden in a tab/div, contributed by Ernst de Moor.
620
+ Fixed some character issues with the Danish language packs, contributed by someone unknown.
621
+ Version 1.40 (2005-01-09)
622
+ Added a new default value for the font size drop down, if no font size where found this gets selected.
623
+ Added a auto resize window feature, this is enabled by default but can be disabled with a window argument.
624
+ Added a new print plugin, prints the current editor contents to a printer.
625
+ Added a new searchreplace plugin, adds a search, searchnext and replace button.
626
+ Fixed bug issue where buttons didn't display correctly on some Firefox installations.
627
+ Fixed issue with value and type attributes of input elements getting lost in cleanup on MSIE.
628
+ Fixed so that the getEditorInstance command is public, returns a TinyMCEControl by id.
629
+ Fixed issue where "true" and "false" string wasn't treated as booleans in TinyMCE init options.
630
+ Fixed so cursor/mousepointer allways remains a arrow in all themes when rolling over buttons.
631
+ Fixed the popup windows so they are mode "modal" in Mozilla/Firefox.
632
+ Fixed so the ask question is displayed when elements are focused with the tab key.
633
+ Fixed so the ask option works when mode option is set to exact.
634
+ Fixed issue with visualaids on tables not working correctly when the user uses the tab key in Firefox/Mozilla.
635
+ Fixed some bugs with the mceSetCSSClass class command and the element path.
636
+ Fixed a new version of the mceInsertContent command.
637
+ Fixed so the auto_cleanup_word option is disabled by default.
638
+ Removed the langs of the zoom plugin, it now uses + instead of the "zoom" word.
639
+ Version 1.391 (2005-01-04)
640
+ Fixed major spacebar bug in MSIE, spacebar was disabled.
641
+ Version 1.39 (2005-01-04)
642
+ Updated the Flash plugin with a new version, contributed by jamesw.
643
+ Added new setWindowArg function, useful if plugins are to call other plugins.
644
+ Added new save plugin, this plugin adds a save/submit form button to tinyMCE, contributed by SlyD.
645
+ Added new hilite color support, sets a background-color style on the selected text.
646
+ Added new variable replacement popup URLs, check the openWindow function documentation for details.
647
+ Added new force_p_newlines option, forces P elements on return/enter key in Mozilla/Firefox.
648
+ Added new theme_advanced_path_location, adds a element path list.
649
+ Added new theme_advanced_toolbar_align option, defaults to center.
650
+ Added new Portuguese translation contributed by Jos� Pedro Pereira.
651
+ Added new mceSelectNode and mceSelectNodeDepth commands.
652
+ Added new add_unload_trigger option, this adds a unload triggerSave call. Enabled by default.
653
+ Added am/pm time format to the insertdatetime plugin.
654
+ Fixed font color and size attribute bug, contributed by Vincent FIACK.
655
+ Fixed className undefined bug, Firefox/Mozilla produced a console error sometimes.
656
+ Fixed so mceSetCSSClass command may be applied to all sorts of elements.
657
+ Fixed so anchor elements can be removed by setting the anchor name to nothing.
658
+ Fixed typing performance some in Firefox/Mozilla, removed some nodechange triggers.
659
+ Fixed so the zoom plugin is invisible in MSIE 5.0, since zoom isn't available in that browser.
660
+ Fixed bug with the emotions plugin in MSIE 5.0, it was opening a new window.
661
+ Fixed so contents stay within the editor if the user hits the back/forward buttons.
662
+ Fixed bug where the window.name property was set to the image name.
663
+ Fixed so anchors links within the same page are made relative when relative_urls are set to false.
664
+ Updated the advanced theme so most of the images are loaded from a tiled image, improves loading time.
665
+ Updated the Swedish language pack, contributed by Martin.
666
+ Updated the readme.txt in the advlink plugin, was some problems with the valid_elements.
667
+ Updated the default CSS for the advanced theme some, added button backgrounds to look like office2k.
668
+ Version 1.38 (2004-11-28)
669
+ Added new textarea field for form elements when debug mode is enabled, contributed by Michael Keck.
670
+ Added new spacer item support for the theme_advanced_buttons<n> options, contributed by Michael Keck.
671
+ Added new selection borders for images and hr elements, contributed by Michael Keck.
672
+ Added new advhr plugin, this plugin handles advanced settings on HR elements, contributed by Michael Keck.
673
+ Added new german language pack for the preview plugin, contributed by Michael Keck.
674
+ Added new word wrap and source formatting to the source editor, contributed by Michael Keck.
675
+ Added new updated charmap, contributed by Michael Keck.
676
+ Added new flash plugin that enabled flash movied to be handled, contributed by Michael Keck.
677
+ Added the old cut/copy/paste commands to the advanced theme, these are not visible by default.
678
+ Added new theme_advanced_buttons<N>_add_before option to advanced theme.
679
+ Added new "update" button title for a popup windows.
680
+ Added new zoom prefix language variable to the zoom plugin.
681
+ Added new entities option, that enables you to config entity code to name convertion.
682
+ Added new custom cleanup possibility to plugins.
683
+ Added new cleanup_callback option, adds the possibilty to add custom cleanup logic.
684
+ Added new Norwegian language pack, contributed by Sten Aksel Heien.
685
+ Added new Korean language pack, contributed by Setzer Gabbiani.
686
+ Fixed the layout of the color picker, contributed by Michael Keck.
687
+ Fixed so the preview plugin doesn't include the any toolsbars in preview popup window, contributed by Michael Keck.
688
+ Fixed bug where anchors elements was treated as links.
689
+ Fixed so all popup windows are modal dialogs in MSIE.
690
+ Fixed bug where the word "null" sometimes appares in HTML after cleanup in Firefox/Mozilla.
691
+ Fixed bug where form elements with missing name attributes produced errors.
692
+ Fixed some default value bugs and issues with the new advlink plugin.
693
+ Fixed the link/image dialog sizes in the SE language pack.
694
+ Fixed the content duplication bug, it seems to be fixed anyway, if not please let me know.
695
+ Fixed bug where plugin handleNodeChange extentions broke the theme function.
696
+ Version 1.37 (2004-11-12)
697
+ Added new mceResetDesignMode command that can be used when the editor is placed in tabs.
698
+ Added new updated Italian language pack thanks goes to "Fabrix Xm" for the contribtion.
699
+ Added new greek language pack thanks goes to "Jacaranda Bill" for the contribution.
700
+ Added new french language pack thanks goes to "Pat Boens" for the contribution.
701
+ Added new russian language pack thanks goes to "Roman Filippov" for the contribution.
702
+ Added new updated Dutch language pack thanks goes to Arnoud van Delden and Ernst de Moor for the contribution.
703
+ Added new convert_newlines_to_brs option, that enables newlines to be converted to br elements.
704
+ Added new custom_undo_redo_keyboard_shortcuts option, enables keyboard shortcuts to be enabled/disabled.
705
+ Added new auto_reset_designmode option, thats resets the design mode when a editor instance is focused.
706
+ Added new form reset handler, resets the contents of TinyMCE areas when the onreset event is trigged.
707
+ Added new skip_cleanup parameter to triggerSave, this parameter is optional and defaults to false.
708
+ Added new lang_underline_img language variable to all themes.
709
+ Added new title attribute to all images, enables tooltips in Mozilla and Firefox.
710
+ Added new insert and cancel CSS id's for all submit and cancel buttons.
711
+ Added new full featured example that includes all available plugins and buttons.
712
+ Added new advlink and advimage plugins to TinyMCE, these are more advanced link and image tools. Contributed by Michael Keck.
713
+ Added new parameters to insertImage and insertLink commands. Contributed by Michael Keck.
714
+ Added updated compatiblity chart, includes a matrix table thanks goes to Ernst de Moor.
715
+ Added new insert image icon contributed by Arnoud van Delden and Ernst de Moor.
716
+ Added window focus on all popup windows, contributed by Arnoud van Delden and Ernst de Moor.
717
+ Fixed some issues with the char map added some characters and removed duplicate ones, contributed by Arnoud van Delden and Ernst de Moor.
718
+ Fixed the insert row icon, rotated it 180 degrees, contributed by Arnoud van Delden and Ernst de Moor.
719
+ Fixed the visual aid icon, made it a bit darker. Contributed by Arnoud van Delden and Ernst de Moor.
720
+ Fixed some issues with entity encoding in source editor aswell as in core cleanup code.
721
+ Fixed bug where the auto import CSS feature imported invalid CSS rules with : or spaces.
722
+ Fixed bug where unnecessary entity encoding of characters was done.
723
+ Fixed the window sizes some to better function on MSIE with SP2.
724
+ Fixed some issued with the auto word cleanup feature, fixes some issued with content duplication.
725
+ Fixed bug that made the editor to throw weird error when HTML code includes <!a or <!/a> content.
726
+ Fixed bug where the style attribute was returned on images in source output even if it was disabled.
727
+ Fixed issue where the UI form elements of TinyMCE was submitted with the form submit.
728
+ Version 1.36 (2004-10-19)
729
+ Added a newly modified version of the German language pack from "krokogras".
730
+ Added auto resizing to popup windows with the same name.
731
+ Added example page for the plugin_preview_pageurl option in the preview plugin.
732
+ Fixed issue with link button auto enable/disable feature when content selection was made with the keyboard.
733
+ Fixed bug where events wasn't handled correctly in MSIE 5.5 and some 6.0 versions.
734
+ Fixed so align on images gets set as float style when the inline_styles option is enabled.
735
+ Fixed so solid border style isn't applied on elements with a border when the inline_styles option is enabled.
736
+ Fixed some issues with tables and the inline_styles option.
737
+ Fixed back button issue with MSIE, iframes was placed in browser history.
738
+ Version 1.35 (2004-10-13)
739
+ Added so that whitespace gets stripped in plugin and theme_advanced_buttons options.
740
+ Added custom plugin_preview_pageurl option to preview plugin.
741
+ Added Canadian French language packs for the new plugins, contributed by Virtuelcom.
742
+ Added new theme_advanced_blockformats option.
743
+ Added new title support to advanced theme link dialog.
744
+ Added new Ctrl+B/I/U keyboard shortcuts for Firefox.
745
+ Added Polish language pack contributed by "revyag".
746
+ Added Taiwanese language pack contributed by "Jim Kou".
747
+ Added updated German language pack contributed by "Krokogras".
748
+ Fixed some issues with ieSpell including better language support.
749
+ Fixed bug with default value in valid_elements not working in Firefox some times.
750
+ Fixed bug when focusing links without selecting any characters.
751
+ Fixed some typos in Swedish language pack.
752
+ Fixed bug with content selection and link button auto enable/disable feature.
753
+ Fixed bug issue when "theme_advanced_buttons<N>" options where left empty.
754
+ Fixed various bugs with absolute URLs.
755
+ Version 1.34 (2004-10-03)
756
+ Added new insertdatetime plugin, inserts date/time in various formats.
757
+ Added new preview plugin, previews the HTML page in a new window.
758
+ Added new zoom plugin, adds the possibility zoom the editor in MSIE.
759
+ Added new emotions plugin, adds the possibility to add smileys.
760
+ Fixed so that TinyMCE functions on MSIE 5.0 again.
761
+ Fixed so that TinyMCE functions better on Mozilla 1.3.
762
+ Fixed so that the cursor doesn't jump to the top when setting styles.
763
+ Fixed bug with STRONG and EM elements wasn't handled correctly in Firefox.
764
+ Optimized the key handling some, gives better typing performance.
765
+ Removed key down statusbar debug info.
766
+ Version 1.33 (2004-09-29)
767
+ Removed the need of loading blank.html, iframes are now created dynamicly.
768
+ Fixed bug when selecting tables, MSIE was casting errors.
769
+ Fixed bug with pluginurl variable.
770
+ Fixed bug when tinyMCE.selectedElement error was cast in Mozilla.
771
+ Added new Arabic language pack contributed by Hani Suleiman.
772
+ Added "lang_dir" support to language packs like Arabic.
773
+ Version 1.32 (2004-09-25)
774
+ Added new ieSpell plugin, only works in MSIE.
775
+ Added new "theme_advanced_buttons<N>_add" option.
776
+ Added new importPluginLanguagePack function.
777
+ Added new Danish language pack contributed by Jan Moelgaard.
778
+ Added updated German language pack contributed by Christopher M�ller.
779
+ Added new any_selection to handleNodeChange callback.
780
+ Modified so link/unlink is dimmed if nothing is selected.
781
+ Fixed bug when deleting images in Firefox.
782
+ Changed the plugin location to a new plugin directory.
783
+ Renamed the "theme_plugins" option to "plugins".
784
+ Version 1.31 (2004-09-18)
785
+ Added Canadian French language pack, contributed by Virtuelcom.
786
+ Added so link/unlink buttons gets selected when user enters a link element.
787
+ Fixed URL bug when drag dropping/copy pasting images in Mozilla.
788
+ Fixed so mso style attribs don't get trimmed if auto_cleanup_word option is set to false.
789
+ Fixed bug with text alignment buttons.
790
+ Fixed bug with CSS auto import function in MSIE.
791
+ Fixed initialization bugs and issues.
792
+ Version 1.30 (2004-09-10)
793
+ Fixed bug issue where the editor was stealing focus from location bar.
794
+ Fixed bug issue with absolute aligned images lost focus when using tools.
795
+ Fixed bug #1025483, Url converting broken.
796
+ Added ability to send command values in advanced theme button list, contributed by someone helpfull.
797
+ Added new cleanup_on_startup option, to increase startup speed.
798
+ Added new inline_styles partly based on a contribution by Victor Nilsson.
799
+ Added new named anchor support.
800
+ Added custom_undo_redo_levels option.
801
+ Version 1.29 (2004-09-08)
802
+ Added new getEditorId function, to retrive the editor id of a form element.
803
+ Readded so cleanup is automaticly executed on editor startup in MSIE.
804
+ Added some various cleanup fixes for MS Word HTML.
805
+ Added new auto_cleanup_word option, enabled auto MS Word HTML cleanup on paste events.
806
+ Fixed parameter issue with insertImage function. Bug #1022863.
807
+ Fixed bug #1022874, Where the small theme had underline command on strikethrough button.
808
+ Fixed some bugs with table commands.
809
+ Fixed bug #1023204, mceRemoveControl brings back the old HTML.
810
+ Fixed bug issue with tinyMCE.selectedInstance in Mozilla.
811
+ Fixed bug issue with Mozilla not saving content.
812
+ Version 1.28 (2004-09-04)
813
+ Added new Finnish language pack thanks to Urho Konttori.
814
+ Added new rowseparator as a possible value of the theme_advanced_buttons<n> options.
815
+ Added new theme_advanced_toolbar_location option.
816
+ Added new uid variable option to valid_elements. (Generates unique IDs)
817
+ Added new "directionality" option to support languages like Arabic.
818
+ Added new character map button/window.
819
+ Added new guidelines/visual aid toggle button.
820
+ Reduced the source of the advanced theme some, and added some better comments.
821
+ Separated the default theme in to files aswell.
822
+ Removed source area size options and made source editor resizable instead.
823
+ Increased the default width and height of the source editor.
824
+ Fixed bug where image width/height default to 0x0 if these attributes wasn't defined.
825
+ Fixed some bug issues with MSIE 5.5.
826
+ Version 1.27 (2004-08-29)
827
+ Added new cleanup logic, with new options and smarter behavior.
828
+ Added new "trim_span_elements" option (removed unneeded span elements).
829
+ Added new "verify_css_classes" option (verifies so class attributes contain a valid class).
830
+ Added new "verify_html" option (enables/disabled verification of elements and attributes).
831
+ Added new value verification type to "valid_elements" option.
832
+ Added new simple wildcard support in "valid_elements" option.
833
+ Added class as a valid attribute to table elements by default.
834
+ Added so non existent classes gets removed HTML output.
835
+ Added fix for &nbsp; entities, so they get converted correctly.
836
+ Added new class select box in table dialog.
837
+ Added hr as a default valid element.
838
+ Fixed some issues with the language packs.
839
+ Fixed some weird bugs and issues with hr elements.
840
+ Fixed bug where Mozilla was casting exceptions on keypress.
841
+ Version 1.26 (2004-08-25)
842
+ Added a better way to create theme popup windows (External files).
843
+ Added new getWindowArg function, returns window arguments in theme popups.
844
+ Modified the advanced theme to adopt the new theme popup idea.
845
+ Fixed critical Mozilla bug, where the editor didn't work at all some times.
846
+ Fixed bug with auto CSS class import feature running on Firefox.
847
+ Version 1.25 (2004-08-22)
848
+ Added new format select box in advanced theme (Can be disabled).
849
+ Added new "theme_advanced_disable" option to advanced theme.
850
+ Added some new elements to default list of valid elements (Format select box elements).
851
+ Added new font face, forecolor and font size support, these are not enabled by default.
852
+ Added new "mceAddControl" command, enables users to dynamicly add editors.
853
+ Added new execInstanceCommand function, check the documentation for details.
854
+ Added new "mceSetAttribute" command.
855
+ Modified the themes so that the focus alert doesn't popup as often as before.
856
+ Modified the "mceRemoveControl" command so it can handle element id aswell as editor ids.
857
+ Fixed some bugs and issues with the new custom undo/redo logic.
858
+ Fixed weird Mozilla bug #997860.
859
+ Version 1.24 (2004-08-17)
860
+ Modified so that span with CSS classes that don't exists get removed.
861
+ Added new "custom_undo_redo" option, this option is enabled by default.
862
+ Added new "fix_content_duplication" option, that fixes some MSIE content duplication issues.
863
+ Added new "mceFocus" command, that changes focus to the specified editor instance.
864
+ Added new "mceReplaceContent" command, that enables users to replace the current selection.
865
+ Fixed so styles including spaces doesn't get listed in style selection box.
866
+ Fixed bug with form element names and exact mode in Mozilla.
867
+ Fixed so tiny_mce_src.js can be used aswell as tiny_mce.js.
868
+ Converted some of the language packs to better support unicode.
869
+ Version 1.23 (2004-07-31)
870
+ Modified the mceSetCSSClass command to address bug #997071.
871
+ Added new Hungarian language pack thanks to 2XP.
872
+ Added new callback "setupcontent_callback" check the manual for details.
873
+ Fixed bug #994506, where empty theme_plugins option generated a 404 error.
874
+ Fixed bug #999332, where image properties wasn't removed if the user deleted the image.
875
+ Version 1.22 (2004-07-19)
876
+ Fixed bug #989846, Image resize bug.
877
+ Changed so that style attribute values get converted to lowercase in MSIE.
878
+ Changed so the alignment called "middle" is "center" in table properties.
879
+ Fixed so visual aids work correctly after using the source editor.
880
+ Fixed some issues with anchor links.
881
+ Fixed so that javascript: links can be used.
882
+ Added width/height options for the advanced source editor.
883
+ Fixed bug issue with URL:s containing quotes or single quotes.
884
+ Fixed so that document_base_url can point to another domain.
885
+ Version 1.21 (2004-07-12)
886
+ Added new "theme_plugins" option, check the manuals for details.
887
+ Added new "execCommand" plugin extention possibility.
888
+ Added new "buttons<n>" config options to the advanced theme.
889
+ Added new "mceRemoveControl" command.
890
+ Added Spanish language pack thanks to "Alvaro Velasco".
891
+ Fixed first click bug.
892
+ Fixed so CSS url:s can be absolute.
893
+ Updated the FAQ regarding the Cut/Copy/Paste issue.
894
+ Version 1.20 (2004-07-05)
895
+ Fixed bug issue #983257, JS runtime error when template contains no controls.
896
+ Removed cut/copy/paste commands and icons due to security reasons in Mozilla.
897
+ Added Czech language pack, thanks goes to "Pavel Nov�k" for the contribution.
898
+ Fixed minor bug regarding empty attributes.
899
+ Fixed so the "extended_valid_elements" overrides previous declarations.
900
+ Version 1.19 (2004-06-28)
901
+ Fixed focus bug that appared on Linux version of Mozilla.
902
+ Fixed major bug issues with some Firefox/Firebird versions on Linux.
903
+ Fixed minor visual aid bugs on tables.
904
+ Fixed minor bugs with table commands.
905
+ Fixed scroll issue in HTML source windows on Mozilla/Linux.
906
+ Added a compatiblity chart to the manuals.
907
+ Version 1.18 (2004-06-20)
908
+ Added new option "remove_script_host".
909
+ Some minor fixes to the mceInsertContent command.
910
+ Fixed some issues with visual aids for tables.
911
+ Fixed strange focus bug in MSIE.
912
+ Updated some of the documentation.
913
+ Version 1.17 (2004-06-16)
914
+ Fixed bug, #972666 - Doesn't save edits when id != name.
915
+ Added more Italian, user manuals. Thanks goes to "Fabrix Xm".
916
+ Added Dutch language pack thanks to "Meint Post".
917
+ Modified the MSIE version of mceInsertContent command.
918
+ Version 1.16 (2004-06-14)
919
+ Added new table dialog and TinyMCE_<theme>_getInsertTableTemplate template function.
920
+ Added auto class import feature and Italian language pack thanks goes to "Lorenzo Pavani".
921
+ Added border, alignment, vspace, hspace, width, height fields to the image properties dialog in advanced theme.
922
+ Updates advanced theme help pages for Swedish and English.
923
+ Fixed some minor issues with the mceSetCSSClass command.
924
+ Fixed minor MSIE bug in built in default URL convertor.
925
+ Fixed some image alignment issues.
926
+ Fixed support for site root script paths like src="/jscripts/tiny_mce.js".
927
+ Removed the use of "TinyMCE_advanced_cssClasses" from "advanced" theme.
928
+ Modified the default value of "valid_elements" to include table align and class as valid attributes.
929
+ Modified the default value of "valid_elements" to set img border attribute to 0 by default instead of by force.
930
+ Modified so that popup windows gets centered on screen.
931
+ Version 1.15 (2004-06-09)
932
+ Added new "advanced" theme, that adds some new functions.
933
+ Added new public js functions "getContent, setContent, applyTemplate, openWindow".
934
+ Added new custom command "mceSetCSSClass", that sets css class of the selection.
935
+ Added new custom command "mceInsertContent", that inserts HTML content.
936
+ Added class attributes to some of the elements in the default value of "valid_elements".
937
+ Added ability to have theme specific language packs by the js function "importThemeLanguagePack".
938
+ Added more documentation to the usage and themes sections.
939
+ Added table support, with custom commands and in advanced theme.
940
+ Modified the advanced example to include the new advanced theme.
941
+ Fixed tooltips for buttons in Mozilla.
942
+ Version 1.14 (2004-06-07)
943
+ Added new conversion possibility to save callback.
944
+ Added some more usage documentation.
945
+ Fixed some issues will updateContent function in Mozilla.
946
+ Fixed some issues with relative paths.
947
+ Fixed small Mozilla issue with visual aids.
948
+ Fixed so that the default theme sets image border to 0.
949
+ Fixed bug #968079, Removing editor buttons in template can cause errors.
950
+ Version 1.13 (2004-06-04)
951
+ Fixed critical bug where the editor didn't work at all in MSIE.
952
+ Fixed bug where table visual aids didn't work in Mozilla.
953
+ Version 1.12 (2004-06-03)
954
+ Added updateContent function thanks to "J�rgen Baute" contribution.
955
+ Added documentation of the diffrent public javascript functions of tinyMCE.
956
+ Fixed bug #965615, Empty editor content returns "<br />" as value after cleanup.
957
+ Fixed bug where Bold and Italic didn't work correctly in Mozilla.
958
+ Version 1.11 (2004-06-01)
959
+ Added new option "document_base_url", it's used when converting absolute URLs to relative ones.
960
+ Added so that align button sets the align attribute of selected images.
961
+ Fixed bug when / was passed within query string to the editors page.
962
+ Fixed bug #961041, Image attributes are not removed.
963
+ Version 1.1 (2004-05-26)
964
+ Fixed bug #960112 JavaScript error when opening image window.
965
+ Fixed bug #926644 Multiple forms with elements having the same name failed.
966
+ Added function so that "specific_textareas" mode handles the "ask" option.
967
+ Added new option "focus_alert", to remove annoying focus alert message.
968
+ Version 1.09 (2004-05-24)
969
+ Added new option "extended_valid_elements", this option adds extra elements to the "valid_elements" list.
970
+ Fixed bug #958637, Resized images are displayed in original size
971
+ Fixed bug #958942, Bug on realitive_urls (Bug with absolute URLs to insertlink_callback, insertimage_callback callbacks)
972
+ Fixed bug #958498, Unable to change Bold and italic text in Mozilla.
973
+ Version 1.08 (2004-05-21)
974
+ Added new attributes "border, hspace, vspace, width, height, align" to the getInsertImageTemplate theme function.
975
+ Added new relative_urls option, this new feature converts all absolute URLs to relative URLs and it's on by default.
976
+ Fixed bug #956007, the CSS theme URL:s was allways pointing to the default theme.
977
+ Fixed bug where enter/return key produced a error in the insert link popup window form. (This was done in the default template)
978
+ Fixed bug #957681, Could not delete text without first adding character bug in Mozilla.
979
+ Version 1.07 (2004-05-10)
980
+ Added experimental support for option "force_br_newlines" to address bug #922416 and feature request #936270.
981
+ Fixed bug with mailto: links.
982
+ Version 1.06 (2004-04-15)
983
+ Added new German language pack. Thanks goes to "Simon Rupf" for the contribution.
984
+ Added new German/Swedish bold/italic language specific icons to both default and simple theme.
985
+ Added new Swedish documentation.
986
+ Version 1.05 (2004-04-02)
987
+ Added new Italian language pack and documentation. Thanks goes to "Fabrix Xm" for the contribution.
988
+ Fixed missing "lang_help_desc" definition in UK and SE langpacks.
989
+ Added better documentation for the "valid_elements" option and it's format.
990
+ Added new "preformatted" option to address feature request #927948.
991
+ Added browser checker so that the script don't break on non compatible browsers.
992
+ Fixed bug #926639, now the editor instance gets resized if a width/height is specified in %.
993
+ Added new simple theme, this theme has only basic functions.
994
+ Version 1.04 (2004-03-30)
995
+ Fixed bug when insertLink and insertImage function didn't use the url_convertor callback.
996
+ Fixed MSIE bug when images was 32x32 on initialization on slow connections.
997
+ Fixed bug that made request on images with wrong path, produced some 404 error in webserver logs.
998
+ Fixed MSIE bug where users could add images outside of the editor scope.
999
+ Version 1.03 (2004-03-26)
1000
+ Added new "add_form_submit_trigger" this option is default and is added on all document forms within the page. To address bug #923362
1001
+ Moved javascript sourcecode file to "jscripts/tiny_mce/tiny_mce_src.js".
1002
+ Added new obfuscated version of tinymce to reduce size of script.
1003
+ Added some performance boosting code to the switchClassSticky function.
1004
+ Removed the "autosave" option, this is no longer needed and is replaced with "add_form_submit_trigger" or triggerSave call.
1005
+ Fixed undo bug in MSIE.
1006
+ Removed some unused eventhandlers results in better performance.
1007
+ Version 1.02 (2004-03-26)
1008
+ Added new handleNodeChange callback to themes.
1009
+ Fixed some bugs regarding events and themes function checks.
1010
+ Fixed bug issue when user focused nodes with keyboard.
1011
+ Version 1.01 (2004-03-12)
1012
+ Added some more documentation.
1013
+ Added new "visual" option to editor.
1014
+ Fixed bug on empty P elements.
1015
+ Fixed bug on table width/height.
1016
+ Version 1.0 (2004-03-11)
1017
+ Added new "debug" option and fixed some path issues.