<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[TinyMCE Forum - TinyMCE 3.2.3 Released]]></title>
		<link>http://www.tinymce.com/forum/viewtopic.php?id=15909</link>
		<description><![CDATA[The most recent posts in TinyMCE 3.2.3 Released.]]></description>
		<lastBuildDate>Tue, 05 May 2009 13:43:58 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=54009#p54009</link>
			<description><![CDATA[<div class="quotebox"><cite>RobF wrote:</cite><blockquote><p>Strange, after installing tinymce 3.2.3, the inline popups didn&#039;t show any content in Firefox 3. I found out that all the popup windows html of the plugins (for example link.htm, table.htm)&nbsp; have a body tag with style=display:none in it. Removing this style solved the problem. Is this a known issue?</p></blockquote></div><p>We&#039;re not seeing this with our users. We&#039;re using inline popups.</p><p>Suggest testing using the examples on this site.</p><p>All the best,</p><p>Pepi Acebo</p><p><a href="http://www.mynewsletterbuilder.com">http://www.mynewsletterbuilder.com</a></p>]]></description>
			<author><![CDATA[dummy@example.com (Pepi)]]></author>
			<pubDate>Tue, 05 May 2009 13:43:58 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=54009#p54009</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53834#p53834</link>
			<description><![CDATA[<p>Strange, after installing tinymce 3.2.3, the inline popups didn&#039;t show any content in Firefox 3. I found out that all the popup windows html of the plugins (for example link.htm, table.htm)&nbsp; have a body tag with style=display:none in it. Removing this style solved the problem. Is this a known issue?</p>]]></description>
			<author><![CDATA[dummy@example.com (RobF)]]></author>
			<pubDate>Sat, 02 May 2009 15:28:16 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53834#p53834</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53778#p53778</link>
			<description><![CDATA[<p>TinyMCE 3.2.3 has an issue with the new Paste selecting a single character either BEFORE or AFTER the insertion point and replacing it with the pasted text. Does not affect Paste if there is an active selection.</p><p>Spocke has already fixed this in the SVN code repository... It&#039;s a one line addition... Line 368 in /plugins/paste/editor_plugin_src.js : if (!ed.selection.isCollapsed())</p><p>We&#039;ve added this line, recompressed, and tested, and now plan to release to our users on 2 May 2009. Thanks!</p><p>BTW, we&#039;ve also added jquery calls to dynamically add code to textareas in our email marketing templates, allowing TinyMCE to load onFocus(), eliminating our need for Ask mode.</p><p>All the best,</p><p>Pepi Acebo</p><p><a href="http://www.mynewsletterbuilder.com">http://www.mynewsletterbuilder.com</a></p>]]></description>
			<author><![CDATA[dummy@example.com (Pepi)]]></author>
			<pubDate>Thu, 30 Apr 2009 19:22:16 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53778#p53778</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53760#p53760</link>
			<description><![CDATA[<div class="quotebox"><cite>spocke wrote:</cite><blockquote><p>This is excellent work. I guess the conflict with the middot/list conversion is due to that logic excepts the paragraphs to be empty from spans but since the spans are keept intact it will fail. But that&#039;s just a guess haven&#039;t fiddled with your code yet.</p></blockquote></div><p>Glad that you like it.&nbsp; I found a comma in my code that caused an error - I will post a revised patch shortly.</p><p>Speaking of the middot/list conversion, with a fairly trivial two level indented unordered list copied from Word 2007 I get a different result when I do a Ctrl-v vs using the pasteword window.&nbsp; This is happening on the full featured example page on the TinyMCE site.</p><p>Here is the correct result (produced using pasteword - the indentation is mine):<br /></p><div class="codebox"><pre><code>&lt;p&gt;A list:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Item 1 
        &lt;ul&gt;
            &lt;li&gt;Item 1.1&lt;/li&gt;
        &lt;/ul&gt;
    &lt;/li&gt;
    &lt;li&gt;Item 2&lt;/li&gt;
&lt;/ul&gt;</code></pre></div><p>and here is the incorrect result (produced using Ctrl-v - indentation is mine):<br /></p><div class="codebox"><pre><code>&lt;p&gt;A list:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Item 1 
        &lt;ul&gt;
            &lt;li&gt;Item 1.1&lt;/li&gt;
            &lt;li&gt;Item 2&lt;/li&gt;
        &lt;/ul&gt;
    &lt;/li&gt;
&lt;/ul&gt;</code></pre></div><p>Creating the Word file is trivial - use the first example above as your guide.&nbsp; To reproduce the problem you also need to copy the paragraph that precedes the list.</p><p>Also, could the body element of the iframe used for the pasteword window have class=&quot;mceContentBody&quot; applied to it?&nbsp; My pasteword window is picking up a body style that has text-align:center rather than a body.mceContentBody rule that has text-align:left - here is the patch (I know this is not the place):</p><div class="codebox"><pre><code>Index: jscripts/tiny_mce/plugins/paste/js/pasteword.js
===================================================================
--- jscripts/tiny_mce/plugins/paste/js/pasteword.js    (revision 1111)
+++ jscripts/tiny_mce/plugins/paste/js/pasteword.js    (working copy)
@@ -18,7 +18,7 @@
 
         // Write content into iframe
         doc.open();
-        doc.write(&#039;&lt;html&gt;&lt;head&gt;&#039; + cssHTML + &#039;&lt;/head&gt;&lt;body spellcheck=&quot;false&quot;&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
+        doc.write(&#039;&lt;html&gt;&lt;head&gt;&#039; + cssHTML + &#039;&lt;/head&gt;&lt;body class=&quot;mceContentBody&quot; spellcheck=&quot;false&quot;&gt;&lt;/body&gt;&lt;/html&gt;&#039;);
         doc.close();
 
         doc.designMode = &#039;on&#039;;</code></pre></div><p>Now back to some other things for me.</p><p>Scott</p>]]></description>
			<author><![CDATA[dummy@example.com (seade)]]></author>
			<pubDate>Thu, 30 Apr 2009 12:56:31 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53760#p53760</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53751#p53751</link>
			<description><![CDATA[<p>This is excellent work. I guess the conflict with the middot/list conversion is due to that logic excepts the paragraphs to be empty from spans but since the spans are keept intact it will fail. But that&#039;s just a guess haven&#039;t fiddled with your code yet.</p>]]></description>
			<author><![CDATA[dummy@example.com (spocke)]]></author>
			<pubDate>Thu, 30 Apr 2009 09:17:16 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53751#p53751</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53747#p53747</link>
			<description><![CDATA[<div class="quotebox"><cite>spocke wrote:</cite><blockquote><p>We didn&#039;t want to support the old paste plugin since it had some issues with Word 2007 that didn&#039;t exist when we created it. So we just removed the old one and replaced it with the new one. It&#039;s still missing some options and features that the old one had, we will look into adding them over time.</p></blockquote></div><p>I have just posted a patch (<a href="https://sourceforge.net/tracker/?func=detail&amp;aid=2784174&amp;group_id=103281&amp;atid=635684">https://sourceforge.net/tracker/?func=d &#133; tid=635684</a>) to restore some of the removed functionality.&nbsp; At present this is conflicting with middot/list conversion - I am hoping you might spot the problem with this quicker than me.</p><p>Cheers,</p><p>Scott</p>]]></description>
			<author><![CDATA[dummy@example.com (seade)]]></author>
			<pubDate>Thu, 30 Apr 2009 07:19:12 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53747#p53747</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53667#p53667</link>
			<description><![CDATA[<p>File a bug report and steps for us to reproduce it if you think it&#039;s a bug.</p>]]></description>
			<author><![CDATA[dummy@example.com (spocke)]]></author>
			<pubDate>Tue, 28 Apr 2009 19:01:15 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53667#p53667</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53665#p53665</link>
			<description><![CDATA[<p>I may have been doing this wrong the whole time, but in Safari 4 Beta and the latest nightly, manually focusing the editor like so:</p><p>tinyMCE.execInstanceCommand(tmce, focus());<br />(where tmce is the editor)</p><p>raises an error: TypeError: Result of expression &#039;j&#039; [undefined] is not an object. in tiny_mce.js</p><br /><p>This had not worked in IE, and now it doesn&#039;t work in the latest Safaris. Using 3.2.2, this works fine in Safari. If this is a regression, should I submit a bug report or am I simply doin&#039; it wrong? <img src="http://www.tinymce.com/forum/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p><p>Thanks much,<br />Nathan</p>]]></description>
			<author><![CDATA[dummy@example.com (Zaragosa)]]></author>
			<pubDate>Tue, 28 Apr 2009 18:31:04 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53665#p53665</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53653#p53653</link>
			<description><![CDATA[<p>Upgrade to the latest version. It won&#039;t preserve that contents. The 3.2.3 has a new rewritten paste/word cleanup plugin.</p>]]></description>
			<author><![CDATA[dummy@example.com (spocke)]]></author>
			<pubDate>Tue, 28 Apr 2009 16:06:57 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53653#p53653</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53651#p53651</link>
			<description><![CDATA[<p>This is using release 3.2.1 of TinyMCE BTW.</p>]]></description>
			<author><![CDATA[dummy@example.com (GatherRick)]]></author>
			<pubDate>Tue, 28 Apr 2009 16:00:40 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53651#p53651</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53650#p53650</link>
			<description><![CDATA[<div class="quotebox"><cite>spocke wrote:</cite><blockquote><p>@GatherRick: The older versions didn&#039;t keep styles like color either so the new release is no different from the old one in that regard.</p></blockquote></div><p>This statement confuses me a bit. As a test in Word 2003 I created a bulletted list with different fonts and colors. Then when I paste this list into TinyMCE the following HTML is inserted (Notice that both the color and font information are preserved):</p><p>&lt;p&gt; &lt;/p&gt;<br />&lt;ul style=&quot;MARGIN-TOP: 0in&quot; type=&quot;disc&quot;&gt;<br />&lt;li style=&quot;COLOR: lime; mso-list: l0 level1 lfo1; tab-stops: list .5in&quot;&gt;&lt;em style=&quot;mso-bidi-font-style: normal&quot;&gt;This is some text from word&lt;/em&gt;. &lt;/li&gt;<br />&lt;li style=&quot;COLOR: lime; mso-list: l0 level1 lfo1; tab-stops: list .5in&quot;&gt;&lt;strong style=&quot;mso-bidi-font-weight: normal&quot;&gt;Here is some more test.&lt;/strong&gt;&lt;/li&gt;<br />&lt;li style=&quot;COLOR: #ff9900; mso-list: l0 level1 lfo1; tab-stops: list .5in&quot;&gt;&lt;strong style=&quot;mso-bidi-font-weight: normal&quot;&gt;&lt;span style=&quot;FONT-SIZE: 18pt; FONT-FAMILY: &#039;Bauhaus 93&#039;; mso-bidi-font-size: 12.0pt&quot;&gt;A different font and color.&lt;/span&gt;&lt;/strong&gt;&lt;/li&gt;<br />&lt;/ul&gt;<br />&lt;p&gt;&lt;span style=&quot;COLOR: lime&quot;&gt; &lt;/span&gt;&lt;/p&gt;<br />&lt;ul style=&quot;MARGIN-TOP: 0in&quot; type=&quot;disc&quot;&gt;<br />&lt;li style=&quot;COLOR: lime; mso-list: l0 level1 lfo1; tab-stops: list .5in&quot;&gt;&lt;span style=&quot;COLOR: #ffcc00&quot;&gt;Bl&lt;/span&gt;&lt;span style=&quot;COLOR: #ff6600&quot;&gt;ah&lt;/span&gt;.&lt;/li&gt;<br />&lt;/ul&gt;</p>]]></description>
			<author><![CDATA[dummy@example.com (GatherRick)]]></author>
			<pubDate>Tue, 28 Apr 2009 15:58:37 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53650#p53650</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53573#p53573</link>
			<description><![CDATA[<p>We didn&#039;t want to support the old paste plugin since it had some issues with Word 2007 that didn&#039;t exist when we created it. So we just removed the old one and replaced it with the new one. It&#039;s still missing some options and features that the old one had, we will look into adding them over time.</p>]]></description>
			<author><![CDATA[dummy@example.com (spocke)]]></author>
			<pubDate>Mon, 27 Apr 2009 14:28:44 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53573#p53573</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53572#p53572</link>
			<description><![CDATA[<p>I haven&#039;t looked at the new paste plugin in action yet (just had a brief scan of the patch), but I am a little concerned that some of the options I rely on are no longer supported.&nbsp; Wouldn&#039;t it have been better to call the new plugin say paste2 with similar name changes to the buttons?&nbsp; This would not preclude deprecating the old paste plugin, and would have given us the opportunity to more gracefully transition from one to the other.</p><p>I have existing uses that rely on paste_remove_spans, paste_remove_styles and paste_strip_class_attributes.&nbsp; While I am unlikely to have time to get to this for a while, will you be receptive to patches to restore such options?</p><p>Scott</p>]]></description>
			<author><![CDATA[dummy@example.com (seade)]]></author>
			<pubDate>Mon, 27 Apr 2009 14:26:02 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53572#p53572</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53508#p53508</link>
			<description><![CDATA[<p>You can grab the SVN version from Sourceforge. Yes, please make a report of the missing -- signs.</p>]]></description>
			<author><![CDATA[dummy@example.com (spocke)]]></author>
			<pubDate>Sun, 26 Apr 2009 17:20:20 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53508#p53508</guid>
		</item>
		<item>
			<title><![CDATA[Re: TinyMCE 3.2.3 Released]]></title>
			<link>http://www.tinymce.com/forum/viewtopic.php?pid=53507#p53507</link>
			<description><![CDATA[<p>Any chance I could get ahold of the fixes now before the next release, or point me in the right direction to fix it now?</p><p>And do you still want me to bug report the &quot;disappearing minuses in javascript code&quot; issue?</p>]]></description>
			<author><![CDATA[dummy@example.com (cguthri)]]></author>
			<pubDate>Sun, 26 Apr 2009 17:14:02 +0000</pubDate>
			<guid>http://www.tinymce.com/forum/viewtopic.php?pid=53507#p53507</guid>
		</item>
	</channel>
</rss>
