<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Integrating TinyMCE with Django</title>
	<atom:link href="http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 01:37:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Alec Hussey</title>
		<link>http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/comment-page-1/#comment-57</link>
		<dc:creator>Alec Hussey</dc:creator>
		<pubDate>Wed, 01 Sep 2010 01:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.madsoft.org/?p=89#comment-57</guid>
		<description>Hah, well I appreciate it. I&#039;ve been quite busy as of late but I was considering writing a few things in the coming months, so definitely stay tuned if your interested.


To all those having issues with the tutorial still, my hunch is that something changed in one of the newer versions of Django and this tutorial needs to be mended as such. I will look into it sometime soon hopefully.</description>
		<content:encoded><![CDATA[<p>Hah, well I appreciate it. I&#8217;ve been quite busy as of late but I was considering writing a few things in the coming months, so definitely stay tuned if your interested.</p>
<p>To all those having issues with the tutorial still, my hunch is that something changed in one of the newer versions of Django and this tutorial needs to be mended as such. I will look into it sometime soon hopefully.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carter Touton</title>
		<link>http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/comment-page-1/#comment-56</link>
		<dc:creator>Carter Touton</dc:creator>
		<pubDate>Thu, 12 Aug 2010 13:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.madsoft.org/?p=89#comment-56</guid>
		<description>I&#039;m usually not the guy to submit my opinion on people&#039;s write ups, but for this write up I just had to do it. I&#039;ve been browsing through your blog a lot recently and I&#039;m super impressed, I think you might potentially become a main voices for your niche. Not sure what your schedule is like in life, but if you started commiting more effort to posting on this site, I&#039;d guess you would start receiving a bunch of traffic eventually. With affiliate stuff, it might become a great reserve revenue stream. Just a concept to think about. Good luck!</description>
		<content:encoded><![CDATA[<p>I&#8217;m usually not the guy to submit my opinion on people&#8217;s write ups, but for this write up I just had to do it. I&#8217;ve been browsing through your blog a lot recently and I&#8217;m super impressed, I think you might potentially become a main voices for your niche. Not sure what your schedule is like in life, but if you started commiting more effort to posting on this site, I&#8217;d guess you would start receiving a bunch of traffic eventually. With affiliate stuff, it might become a great reserve revenue stream. Just a concept to think about. Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/comment-page-1/#comment-53</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 12 Mar 2010 15:22:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.madsoft.org/?p=89#comment-53</guid>
		<description>Its still not working. I tried to work as you told but i am not getting the output. If you can solve the problem for me then i can mail you the code.
Please Help Me Out!!</description>
		<content:encoded><![CDATA[<p>Its still not working. I tried to work as you told but i am not getting the output. If you can solve the problem for me then i can mail you the code.<br />
Please Help Me Out!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/comment-page-1/#comment-51</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 03 Mar 2010 13:29:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.madsoft.org/?p=89#comment-51</guid>
		<description>I modified your code in this way:

in forms.py i have one model with two fields:
    start_text = forms.CharField(widget=AdvancedEditor(attrs={&#039;id&#039;:&#039;start_text&#039;}), required=False)
    finish_text = forms.CharField(widget=AdvancedEditor(attrs={&#039;id&#039;:&#039;finish_text&#039;}), required=False)

in widgets.py where i store advancededitor:
return rendered + mark_safe(u&#039;&#039;&#039;
            ;
            tinyMCE.settings = {
                mode: &quot;textareas&quot;,
                theme: &quot;advanced&quot;,
                ..some content skipped......
                content_css: &quot;/media/css/main.css&quot;,
                height: &quot;350px&quot;,
                width: &quot;653px&quot;
            };
            tinyMCE.execCommand(&#039;mceAddControl&#039;, true, &#039;%s&#039;);
            &#039;&#039;&#039; % self.attrs[&quot;id&quot;])
And now it&#039;s ok</description>
		<content:encoded><![CDATA[<p>I modified your code in this way:</p>
<p>in forms.py i have one model with two fields:<br />
    start_text = forms.CharField(widget=AdvancedEditor(attrs={&#8216;id&#8217;:'start_text&#8217;}), required=False)<br />
    finish_text = forms.CharField(widget=AdvancedEditor(attrs={&#8216;id&#8217;:'finish_text&#8217;}), required=False)</p>
<p>in widgets.py where i store advancededitor:<br />
return rendered + mark_safe(u&#8221;&#8217;<br />
            ;<br />
            tinyMCE.settings = {<br />
                mode: &#8220;textareas&#8221;,<br />
                theme: &#8220;advanced&#8221;,<br />
                ..some content skipped&#8230;&#8230;<br />
                content_css: &#8220;/media/css/main.css&#8221;,<br />
                height: &#8220;350px&#8221;,<br />
                width: &#8220;653px&#8221;<br />
            };<br />
            tinyMCE.execCommand(&#8216;mceAddControl&#8217;, true, &#8216;%s&#8217;);<br />
            &#8221;&#8217; % self.attrs["id"])<br />
And now it&#8217;s ok</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/comment-page-1/#comment-50</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 03 Mar 2010 13:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.madsoft.org/?p=89#comment-50</guid>
		<description>Hello there! Thanks for your widget, it works great while there is no need to have two text areas with widget. Otherwise no data sent to server in POST.</description>
		<content:encoded><![CDATA[<p>Hello there! Thanks for your widget, it works great while there is no need to have two text areas with widget. Otherwise no data sent to server in POST.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alec Hussey</title>
		<link>http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/comment-page-1/#comment-13</link>
		<dc:creator>Alec Hussey</dc:creator>
		<pubDate>Wed, 16 Dec 2009 02:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.madsoft.org/?p=89#comment-13</guid>
		<description>@Webber: No thats literatly exactly how I did it and no I did not use django-tinymce this is entirely my implementation. What exactly doesnt work? If you notice WordPress is annoying and doesnt format my HTML tags correctly and instead escapes them so thats one thing you will have to fix on your own which may be a factor in why its not working perhaps?</description>
		<content:encoded><![CDATA[<p>@Webber: No thats literatly exactly how I did it and no I did not use django-tinymce this is entirely my implementation. What exactly doesnt work? If you notice WordPress is annoying and doesnt format my HTML tags correctly and instead escapes them so thats one thing you will have to fix on your own which may be a factor in why its not working perhaps?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cheapest generic levitra</title>
		<link>http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/comment-page-1/#comment-11</link>
		<dc:creator>cheapest generic levitra</dc:creator>
		<pubDate>Mon, 14 Dec 2009 23:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.madsoft.org/?p=89#comment-11</guid>
		<description>Hmm... I read blogs on a similar topic, but i never visited your blog. I added it to favorites and i&#039;ll be your constant reader.</description>
		<content:encoded><![CDATA[<p>Hmm&#8230; I read blogs on a similar topic, but i never visited your blog. I added it to favorites and i&#8217;ll be your constant reader.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Webber</title>
		<link>http://www.madsoft.org/2009/12/09/integrating-tinymce-with-django/comment-page-1/#comment-10</link>
		<dc:creator>Webber</dc:creator>
		<pubDate>Mon, 14 Dec 2009 12:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.madsoft.org/?p=89#comment-10</guid>
		<description>I followed your setup but it doesn&#039;t work on my admin text area.

Could you give more hints on how you set up? 

Do you use django-tinymce?

thanks!</description>
		<content:encoded><![CDATA[<p>I followed your setup but it doesn&#8217;t work on my admin text area.</p>
<p>Could you give more hints on how you set up? </p>
<p>Do you use django-tinymce?</p>
<p>thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
