You are not logged in.
#1 2008-03-12 14:03:25
TinyMCE 3.0.5 Released
Time for a new release. This one adds some new things like modal dialogs for the inlinepopups plugin a new skin contributed by Stefan Moonen and a bunch of bug fixes.
Thanks for all bug reports, patches and feedback so far for the new 3.x branch. I guess there is always a few quirks when you do a full rewrite like this but most of the bugs are very minor and some of the fixes are new ones that wasn't fixed in the earlier 2.x branch so basically the new version is more stable than the older 2.x versions.
The compressors have also been updated to 2.0.1 with fixes for the new Firefox 3 betas.
Changelog:
Added new black skin variant to the o2k7 skin contributed by Stefan Moonen.
Added new explode method to the tinymce core class. This does a split but removed whitespace it also defaults to a , delimiter.
Added new detection logic for IE 8 standards mode into the DOMUtils class strMode can now be checked to see if that mode is on/off.
Added new noscale option value for the scale select box for Flash in the media plugin.
Fixed bug where the menu for the ColorSplitButton wasn't removed when the editor was removed.
Fixed bug where font colors couldn't be edited correctly since the style of the element didn't get updated correctly.
Fixed bug where class of elements would get lost when TinyMCE was fixing incorrect HTML markup.
Fixed bug where table editing would produce double height values.
Fixed bug where width style value wouldn't be removed if you switched width unit from cm/em to pixels or percent.
Fixed bug where the search/replace input box wasn't auto focused like the other dialogs.
Fixed bug where the old mceAddControl command would use the fullscreen settings next time it created an instance.
Fixed bug where multiple lines where added to the target cell if you merged multiple empty cells.
Fixed bug where drop down menus would be incorrectly positioned inside scrollable divs.
Fixed bug where the separators of the silver skin variant didn't display correctly in IE 6.
Fixed bug where createStyleSheet seems to load scripts at opposite order in some IE versions.
Fixed bug where directionality could produce odd results for the UI and the dialogs.
Fixed bug where the DOM serializer wouldn't serialize custom namespaced attributes in IE 6 using the *[*] valid elements rule.
Fixed bug where table caption would be inserted after the thead element if you swapped a tr to be inside the thead.
Fixed bug where the youtube detection logic for the media plugin was to generic.
Fixed so the deprecated and undocumented theme_advanced_path_location set to none won't hide the whole statusbar.
Fixed so most input lists can have whitespace in them they are now split using the new tinymce.explode method.
Fixed so the popup_css and popup_css_add URLs are relative to where the current document is located.
Fixed various bugs and quirks with the store/restore selection logic.
Fixed so the editor starts in IE 8 standards mode but still that browser is very very buggy.
Fixed so dialog_type set to modal will block the background and other inline windows and only give access to the front most window.
Best regards,
Spocke - Main developer of TinyMCE
Offline
#2 2008-03-12 17:28:25
- carnini
- Member
- Registered: 2007-01-12
- Posts: 9
Re: TinyMCE 3.0.5 Released
wow that was quick!
nice work
Offline
#3 2008-03-12 19:30:10
- happy_noodle_boy
- TWG Member
- Registered: 2005-02-24
- Posts: 171
Re: TinyMCE 3.0.5 Released
Great work, thanks!
One thing thats still bugging me though is the removal of when entity_encoding="raw". I understand this is the correct behaviour, that gets displayed as a blank space, but in Firefox it dissapears completely. Example:
<p> </p>
becomes
<p></p>
but in IE
it becomes
<p> </p>
just because you're not paranoid, doesn't mean everybody isn't out to get you.
Offline
#4 2008-03-12 20:10:18
- RichardDavies
- Member
- Registered: 2007-09-08
- Posts: 27
Re: TinyMCE 3.0.5 Released
happy_noodle_boy wrote:
One thing thats still bugging me though is the removal of when entity_encoding="raw". I understand this is the correct behaviour, that gets displayed as a blank space, but in Firefox it dissapears completely.
Try HTML encoding the contents of the TinyMCE textarea. (So <p>&nsbp;</p> becomes <p>&nbsp;</p>) Or try the "nbspfix" plugin available on SourceForge at http://sourceforge.net/tracker/index.ph … tid=738747
Offline
#5 2008-03-12 20:13:46
- atu
- Member
- Registered: 2005-06-17
- Posts: 23
Re: TinyMCE 3.0.5 Released
Hi,
I have implemented tinymce as an alternative editor in a cms project which handles accessibility very careful. It would be great to have keyboard access for all buttons. furthermore it would be great to have a skin which should be optimized for accessibility. eg bigger buttons and pure black and white.
thanks for tinymce,
Armand
Offline
#6 2008-03-12 20:40:37
Re: TinyMCE 3.0.5 Released
Armand if you want to help out you could help us creating such a skin. I guess fixing the contrast would be pretty easy but bigger icons require some new icon pack or something so it might be a bit more tricky.
We will place more focus on accessibility soon since this is important for some government systems, but our time has been very limited so we need all the help we can get.
Best regards,
Spocke - Main developer of TinyMCE
Offline
#7 2008-03-12 20:43:29
- atlderek
- Member
- Registered: 2007-02-26
- Posts: 1
Re: TinyMCE 3.0.5 Released
When an anchor link is formatted like this:
<a name="_Toc192596888"><span style="font-family: Arial;">Scope of document</span></a>
The text between the a tags does not display and it is lost when saved.
This works fine:
<a name="_Toc192596888"></a><span style="font-family: Arial;">Scope of document</span>
Thanks for your help!
Offline
#8 2008-03-12 23:07:16
- atu
- Member
- Registered: 2005-06-17
- Posts: 23
Re: TinyMCE 3.0.5 Released
spocke wrote:
Armand if you want to help out you could help us creating such a skin. I guess fixing the contrast would be pretty easy but bigger icons require some new icon pack or something so it might be a bit more tricky.
We will place more focus on accessibility soon since this is important for some government systems, but our time has been very limited so we need all the help we can get.
I think it could be a boost for tinymce, if it will be delivered with accessibility feature such as keyboard support and an appropriate skin. But i cant help you since I'm floated by work. You should contact some accessibility experts to implement this in the right way.
Regards,
Armand
Offline
#9 2008-03-12 23:28:49
Re: TinyMCE 3.0.5 Released
It already has pretty good keyboard accessibility you can use Alt+shift+Q/Z to pop in/out from the toolbar and you can tab to all keys and we have a special accessibility example.
http://wiki.moxiecode.com/examples/tiny … ple_22.php
But it can be improved even more. We have worked together with some of the Atutor developers in the past with these issues. They have been very helpful and I have a list of things that I got from them that I should go though and fix when I get the time.
Best regards,
Spocke - Main developer of TinyMCE
Offline
#10 2008-03-13 05:05:09
- seade
- Member
- From: Sydney, Australia
- Registered: 2005-08-05
- Posts: 113
Re: TinyMCE 3.0.5 Released
You might want to update the copyright year on the help page.
Scott
(a.k.a. monkeybrain)
Offline
#11 2008-03-13 07:38:52
- Twobrains
- Member
- Registered: 2008-03-13
- Posts: 14
Re: TinyMCE 3.0.5 Released
Anoying Picture outline blocks / changing picture size when CMFilebrowser is active :
I made a small add with a picture+ tekst using TinyMCE. When opening the Image Insert option and go to the installed CMFileBrowser, I am still able to change the picture selected in the TinyCME editors windows in the background... e.e. I opened the filebrowser and still am able to CHANGE the picture properties while the filebrowser is opened and in front. Anoying picture outline blocks appear in the Filbrowser window and I can change still edit the TinyMCE editors content.
If I select the filemanager and have this open, I should NOT be able to edit the TinyMCE editors data, until I close the CMFileBrowser window....... Inline windows is here not a nice option.... in fact anoying and causing issue's at users of the Content management system
Alfred
Offline
#12 2008-03-13 07:49:14
- Felix Riesterer
- Administrator
- From: Germany
- Registered: 2005-12-30
- Posts: 4601
- Website
Re: TinyMCE 3.0.5 Released
Twobrains wrote:
Anoying Picture outline blocks / changing picture size when CMFilebrowser is active
This information is irrelevant as long as you refuse to tell which browser you are talking about. My guess is IE...
Greetings from Germany,
Felix Riesterer.
Offline
#13 2008-03-13 09:16:22
- happy_noodle_boy
- TWG Member
- Registered: 2005-02-24
- Posts: 171
Re: TinyMCE 3.0.5 Released
RichardDavies wrote:
happy_noodle_boy wrote:
One thing thats still bugging me though is the removal of when entity_encoding="raw". I understand this is the correct behaviour, that gets displayed as a blank space, but in Firefox it dissapears completely.
Try HTML encoding the contents of the TinyMCE textarea. (So <p>&nsbp;</p> becomes <p>&nbsp;</p>) Or try the "nbspfix" plugin available on SourceForge at http://sourceforge.net/tracker/index.ph … tid=738747
If I wanted to encode the contents of the textarea I would set entity_encoding to 'named'.
Can't this be dealt with in the core? I noticed this:
Code:
if (o.set)
h = h.replace(/<p>\s+( | |\u00a0|<br \/>)\s+<\/p>/g, '<p><br /></p>');
else
h = h.replace(/<p>\s+( | |\u00a0|<br \/>)\s+<\/p>/g, '<p>$1</p>');but it doesn't seem to do anything? Maybe I'm looking at this code in the wrong context?
just because you're not paranoid, doesn't mean everybody isn't out to get you.
Offline
#14 2008-03-13 11:10:56
Re: TinyMCE 3.0.5 Released
I just found a bug with the empty paragraph handling that has been there since the 3.0.1 release. It might be this one that is effecting the raw entities. I fixed this problem now try the latest SVN and see if that works better. If it doesn't file a bug report at SF so we all can track it. Thanks.
Best regards,
Spocke - Main developer of TinyMCE
Offline
#15 2008-03-13 12:16:49
- tjo44
- Member
- Registered: 2006-11-13
- Posts: 11
Re: TinyMCE 3.0.5 Released
Fixed SF1901206 bug by using the solution proposed by yamamoto (http://tinymce.moxiecode.com/punbb/view … 887#p33887). Wiki is updated accordingly.
Any news on the lack of indentation in the 3.x branch? (also SF1912168)
Offline
#16 2008-03-13 13:49:35
- seengee
- Member
- Registered: 2007-06-18
- Posts: 12
Re: TinyMCE 3.0.5 Released
I have just filed a bug report regarding pasting in using the "Paste as Plain Text" feature, the inserted text cannot be deleted until you have first typed into the editor. This has been repeated on your demo aswell.
(bug 1913428)
Offline
#17 2008-03-13 15:45:34
- Twobrains
- Member
- Registered: 2008-03-13
- Posts: 14
Re: TinyMCE 3.0.5 Released
Felix Riesterer wrote:
Twobrains wrote:
Anoying Picture outline blocks / changing picture size when CMFilebrowser is active
This information is irrelevant as long as you refuse to tell which browser you are talking about. My guess is IE...
Greetings from Germany,
Felix Riesterer.
Both IE6 and IE6 !
Offline
#18 2008-03-13 18:50:33
- Felix Riesterer
- Administrator
- From: Germany
- Registered: 2005-12-30
- Posts: 4601
- Website
Re: TinyMCE 3.0.5 Released
Twobrains wrote:
Both IE6 and IE6 !
*LOL*
Offline
#19 2008-03-14 13:47:49
- herbet999
- Member
- Registered: 2008-03-14
- Posts: 10
Re: TinyMCE 3.0.5 Released
I upgraded to the new release and lost the ability to have multiple rte fields on one page. I'm using the class attribute to distinguish between rte fields and text area fields.
thanks.
Offline
#20 2008-03-14 15:13:11
Re: TinyMCE 3.0.5 Released
Works fine on our example page: http://wiki.moxiecode.com/examples/tiny … ple_09.php
Try clearing your cache.
Best regards,
Spocke - Main developer of TinyMCE
Offline
#21 2008-03-14 16:18:23
- herbet999
- Member
- Registered: 2008-03-14
- Posts: 10
Re: TinyMCE 3.0.5 Released
the property "editor_deselector".. is that new?
thanks.
Offline
#23 2008-03-16 03:11:50
- it2051229
- Member
- Registered: 2008-03-09
- Posts: 3
Re: TinyMCE 3.0.5 Released
Whenever i change skin from blue, silver, and or black theme, i tried changing the content.css (body, td, pre)... doesn't work....
Offline
#24 2008-03-16 03:31:39
- it2051229
- Member
- Registered: 2008-03-09
- Posts: 3
Re: TinyMCE 3.0.5 Released
sorry.. it's working.. nice job by the way LOL ![]()
Offline
#25 2008-03-17 01:04:59
- seade
- Member
- From: Sydney, Australia
- Registered: 2005-08-05
- Posts: 113
Re: TinyMCE 3.0.5 Released
Spocke: Sorry to be a PITA but would you mind please commenting on whether or not the spellchecker patch I submitted at https://sourceforge.net/tracker/index.p … tid=635684 has any chance of being committed in the future. I am not hassling for this to be committed now, but I would appreciate an indication of likely acceptance of this patch so that I can decide how I will go about providing this feature the users of my application. If it is unlikely to be accepted the I would probably want to provide an alternative patch to add any necessary callbacks to allow this functionality to be implemented via a separate plugin.
Thanks,
Scott
(a.k.a. monkeybrain)
Offline
© 2003-2010