Ignore:
Timestamp:
10/17/09 16:24:40 (3 years ago)
Author:
PaulHarvey
Message:

Item2245: Upload TinyMCE 3.2.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/TinyMCEPlugin/pub/System/TinyMCEPlugin/tinymce/changelog.txt

    r3104 r5300  
     1Version 3.2.7 (2009-09-22) 
     2        Fixed bug where uppercase paragraphs could still produce an invalid DOM tree on IE. 
     3        Fixed bug where split command didn't work on WebKit since the node serializer needs a real document to work with. 
     4        Fixed bug where it was impossible in Gecko to place the caret before a table if it was the first one. 
     5        Fixed bug where linking to urls like ../../ would produce an extra traling slash ../..//. 
     6        Fixed bug where the template cdate functionality was using an old 2.x API call. Patch contributed by vectorjohn. 
     7        Fixed bug where urls to the same site but different protocol would be converted when relative_urls where set to false. Patch contributed by Ted Rust. 
     8        Fixed bug where the paste plugin would remove mceItem prefixed classes. 
     9        Fixed bug where the paste plugin would sometimes add items in a reverse order on WebKit. 
     10        Fixed bug where the paste buttons would present an error message on Gecko even if you changed user.js. Patch contributed by Todd (teeaykay). 
     11        Fixed bug where Opera would crash if you had tables incorrectly placed inside paragraphs. 
     12        Fixed bug where styles elements wasn't properly processed if you had bad input HTML. 
     13        Fixed bug where style attributes wasn't properly forced into a specific format. 
     14        Fixed bug and issues with boolean attributes like checked, nowrap etc. 
     15        Fixed bug where input elements could override attributes on form elements. 
     16        Fixed bug where script or style elements could get modified by the DOMUtils processHTML method. 
     17        Fixed bug where the selected attribute could get lost when force root blocks logic got executed on IE. Patch contributed by Attila Mezei-Horvati. 
     18        Fixed bug where getAttribs method didn't handle boolean attributes correctly on IE. 
     19        Fixed so the paste from word dialog is presented if you paste content on an IE with to restrictive security settings. 
     20        Fixed so the paste_strip_class_attributes option is set to none by default in the paste plugin. 
     21        Removed default border=0 on tables for the default value of valid_elements. 
     22Version 3.2.6 (2009-08-19) 
     23        Added new wordcount plugin, this will display the number of typed words as you write. Contributed by Andrew Ozz. 
     24        Added new getNext and getPrev methods to DOM utils. These will return the first matching sibling. 
     25        Fixed bug where it was impossible to place the caret after a table on Gecko. It will now add a paragraph after tables. 
     26        Fixed bug where inline dialogs would fail if used in a window opened using a showModalDialog. Patch contributed by Derek Britt. 
     27        Fixed bug where IE could sometimes render a unknown runtime error on invalid input HTML. 
     28        Fixed bug where some incorrectly placed tables wouldn't be moved outside the paragraphs on IE. 
     29        Fixed bug where uppercase script/style element wouldn't be handled correctly and converted to valid lowercase. 
     30        Fixed bug where some WebKit versions on Mac OS X would produce issues with hidden select fields. 
     31        Fixed bug where the media plugin would fail on WebKit since the node wasn't properly imported to the right document. 
     32        Fixed bug where absolute URLs for the TinyMCE script using a base href element would cause loading problems in IE 6/7. 
     33        Fixed bug where pasting using the paste plugin wasn't possible on IE with to restrictive security settings. 
     34        Fixed bug where pasting of whitespace was impossible using the new custom paste method. 
     35        Fixed bug where pasting on some WebKit browsers would not work if you pasted specific contents due to a WebKit bug. 
     36        Fixed bug where doctypes with multiple lines would not be parsed correctly by the fullpage plugin. Patch contributed by Colin. 
     37        Fixed bug where the autoresize plugin would break the fullscreen functionality. 
     38        Fixed bug where tables would be chopped up running on IE using invalid contents and pasting paragraphs into a cell. 
     39        Fixed bug where the each method of jQuery build didn't iterate styleSheets. We now use the TinyMCE API one instead. 
     40        Fixed bug where auto switching to paragraphs after headers some times failed in Gecko.   
     41        Fixed so all editor options gets passed to the Serializer class. Patch contributed by Jasper Mattsson. 
     42        Fixed so script/style blocks isn't wrapped in paragraphs as other inline elements. 
     43        Fixed so the XHR requests sends the X-Requested-With HTTP header. 
     44        Fixed so the data url scheme is handled in the tinymce.util.URI class. 
     45        Changed inline documentation to use moxiedoc style comments. 
     46        Removed the compat2x plugin people should have upgraded to the 3.x API by now. 3.0 was released more then a year ago. 
     47        Re-added Gecko specific message for users who doesn't understand the security concept regarding paste. 
     48Version 3.2.5 (2009-06-29) 
     49        Added new jQuery plugin for the jQuery specific package. This enables you to more easily load and use TinyMCE. 
     50        Added new autoresize plugin contributed by Peter Dekkers. This plugin will auto resize the editor to the size of the contents. 
     51        Fixed so all packages have the same directory structure. Previous releases had a different structure for the production package. 
     52        Fixed so the paste from word dialog forces the contents to be processed as word contents even if it's not. 
     53        Fixed so the jQuery build adapter build works. It's currently only excluding Sizzle. 
     54        Fixed so noscript element contents is retained during the editing process. 
     55        Fixed bug where the getBookmark method would need a "simple" string input when the documented way is a boolean. 
     56        Fixed bug where invalid contents could break the fix_table_elements logic. 
     57        Fixed bug where Sizzle specific attributes would be serialized if the valid_elements was set to *[*]. 
     58        Fixed bug where IE would produce an error if you specified a relative content_css and opened the paste dialog. 
     59        Fixed bug where pasting images on IE would produce broken images if they came from an external site. 
     60        Fixed bug where memory was leaked if you add/remove controls dynamically. Some event handlers wasn't removed properly. 
     61        Fixed bug where domain relaxing wasn't treated correctly if you added it after the TinyMCE script element. 
     62        Fixed bug where the activeEditor wasn't set to null if the last editor instance was removed. 
     63        Fixed bug where IE was leaking memory on the onbeforeunload event due to some recently introduced logic. Patch contributed by Options. 
     64        Fixed bug where inserting tables in Safari 4 didn't work due to a new WebKit bug where some element names are reserved. 
     65        Fixed bug where URLs having a :// value in the query string would make it absolute regardless of URL settings. 
     66        Fixed the WebKit specific bug where DOM Ranges would fail if the node wasn't attached to something in a different way. 
     67        Removed the auto_resize option and the resizeToContent method from the tinymce.Editor class. Use the new autoresize plugin instead. 
     68Version 3.2.4.1 (2009-05-25) 
     69        Fixed bug where Gecko browsers would produce an extra space after for example strong when loaded from sub domains. 
     70        Fixed bug where script elements would be removed if they where placed inside a paragraph element. 
     71        Fixed bug where IE 8 would produce 1 item remaining when loading CSS files dynamically with an empty cache. 
     72        Fixed bug where bound events would be removed from other editor instances if a specific one was removed. 
     73        Fixed various bugs and issues with script and style elements inside the editor. 
     74        Fixed so all script contents gets wrapped in CDATA sections so that they can be parsed using a XML parser. 
     75        Fixed so it's impossible for elements marked as closed to have child nodes rendered in output. 
     76Version 3.2.4 (2009-05-21) 
     77        Added new paste_remove_styles/paste_remove_styles_if_webkit option to paste plugin concept contributed by Hadrien Gardeur. 
     78        Added new functionality to paste plugin contributed by Scott Eade aka monkeybrain. 
     79        Added new paste_block_drop option to the paste plugin this is disabled by default and will block any drag/drop event. 
     80        Added new bind/unbind methods to DOMUtils these works like Event.add/Event.remove but is easier to access. 
     81        Added new paste_dialog_width/paste_dialog_height options to paste pluign. Enables you to change the dialog sizes. 
     82        Fixed bug on IE 8 where it would sometimes produce a "1 item remaining" status message that would never finish. 
     83        Fixed bug on Safari 4 beta that would produce DOM Range exceptions on the DOMUtils split method since the browser has a bug. 
     84        Fixed bug where the paste plugin could accidentally think that some word sentences was supposed to be list elements. 
     85        Fixed bug where paste plugin would produce one extra empty undo level on some browsers. 
     86        Fixed bug where spans wasn't produced correctly on new line when the keep_styles option was enabled. 
     87        Fixed bug where the caret would be placed at the beginning of contents in IE 8 if you selected colors from the color pickers. 
     88        Fixed so the Event class is a normal class instead of a static one. The tinymce.dom.Event is now a global instance of that class. 
     89        Fixed so internal events for instances gets removed when the DOMUtils instance is removed. 
     90        Fixed so preventDefault and stopPropagation methods can be used on the event object in all browsers. 
     91Version 3.2.3.1 (2009-05-05) 
     92        Fixed bug where paragraphs containing form elements such as input or textarea would be removed. 
     93        Fixed bug where some IE versions would produce a wrapper function for events attributes. 
     94        Fixed bug where table cell contents could be removed if you pressed return/enter at the end of the cell contents. 
     95        Fixed bug where the paste plugin would remove a extra character if the selection range was collapsed. 
     96        Fixed bug where creating tables with % width wouldn't be handled correctly on WebKit browsers. 
     97Version 3.2.3 (2009-04-23) 
     98        Added new paste plugin logic. This new version will autodetect Word contents and clean it up. 
     99        Added a optional root element argument to getPos so you can tell it where to stop the calculation. 
     100        Added new DOM ready logic to remove the usage of document.write. We now use basically the same method as jQuery. 
     101        Fixed bug where WebKit browsers would fail when selecting all contents in the area using Ctrl+A. 
     102        Fixed bug where IE would produce paragraphs with empty inline style elements. 
     103        Fixed bug where WebKit browsers would fail when inserting tables with a non pixel width. 
     104        Fixed bug where block elements could get a redundant br element at the end of the element. 
     105        Fixed bug where the tabfocus plugin only worked with a single editor instance on page. 
     106        Fixed bug where IE 8 was loosing caret position if the selection was collapsed and a menu was clicked. 
     107        Fixed bug with application/xhtml+xml mode where menus wasn't working properly. 
     108        Fixed bug where the onstop workaround fix for IE would produce errors in an ASP update panel. 
     109        Fixed bug where the submit function override could produce errors if executed in the wrong scope. 
     110        Fixed bug where the area element wasn't closed by a short ending. 
     111        Fixed various number issues in the style plugins properties dialog. Contributed by datpaulchen. 
     112        Fixed issues with size suffix values in the style plugin dialog. 
     113        Fixed issue where hasDuplicate variable would leak out to the global space due to a bug in the Sizzle engine. 
     114        Fixed issue where the paste event would fire a dialog warning on IE since we extracted the text contents. 
     115        Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported. 
     116Version 3.2.2.3 (2009-03-26) 
     117        Fixed regression bug with the getPos method, it would return invalid if the view port was to small. 
     118Version 3.2.2.2 (2009-03-25) 
     119        Fixed so the DOMUtils getPos method can be used cross documents if needed. 
     120        Fixed bug where undo/redo wasn't working correctly in Gecko browsers. 
     121Version 3.2.2.1 (2009-03-19) 
     122        Added support for tel: URL prefixes. Even though this doesn't match any official RFC. 
     123        Fixed so the select method of the Selection class selects the first best suitable contents. 
     124        Fixed bug where the regexps for www. prefixes for link and advlink dialogs would match wwwX. 
     125        Fixed bug where the preview dialog would fail to open if the content_css wasn't defined. Patch contributed by David Bildström (ChronoZ). 
     126        Fixed bug where editors wasn't converted in application/xhtml+xml mode due to an issue with Sizzle. 
     127        Fixed bug where alignment would fail if multiple lines where selected. 
     128        Updated Sizzle engine to the latest version, this version fixes a few bugs that was reported. 
    1129Version 3.2.2 (2009-03-05) 
    2130        Added new CSS selector engine. Sizzle the same one that jQuery and other libraries are using. 
Note: See TracChangeset for help on using the changeset viewer.