<?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 for veni vidi Scripsi</title>
	<atom:link href="http://www.venividiscripsi.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.venividiscripsi.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 09 Aug 2010 21:59:04 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on TinyMCE in Django by Heleen</title>
		<link>http://www.venividiscripsi.com/2009/10/29/tinymce-in-django/comment-page-1/#comment-126</link>
		<dc:creator>Heleen</dc:creator>
		<pubDate>Mon, 09 Aug 2010 21:59:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.venividiscripsi.com/?p=93#comment-126</guid>
		<description>You&#039;re welcome! :)</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome! <img src='http://www.venividiscripsi.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TinyMCE in Django by Wendy</title>
		<link>http://www.venividiscripsi.com/2009/10/29/tinymce-in-django/comment-page-1/#comment-112</link>
		<dc:creator>Wendy</dc:creator>
		<pubDate>Fri, 06 Aug 2010 23:57:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.venividiscripsi.com/?p=93#comment-112</guid>
		<description>Thanks so much Heleen, now that I know I had the syntax right, I figured out that I was putting it on the admin side, when I should have been modifying the display template. (doh)  Anyway, it was a big help, and everything is behaving as expected now!</description>
		<content:encoded><![CDATA[<p>Thanks so much Heleen, now that I know I had the syntax right, I figured out that I was putting it on the admin side, when I should have been modifying the display template. (doh)  Anyway, it was a big help, and everything is behaving as expected now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TinyMCE in Django by Heleen</title>
		<link>http://www.venividiscripsi.com/2009/10/29/tinymce-in-django/comment-page-1/#comment-96</link>
		<dc:creator>Heleen</dc:creator>
		<pubDate>Tue, 27 Jul 2010 17:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.venividiscripsi.com/?p=93#comment-96</guid>
		<description>Hi Carlos, in the latest version of Django some things have changed which causes this method not to work. I have actually come across this problem this week myself and worked out how you can make it work in Django 1.2.

I’m very busy at the moment, but I will have written an update to this post on Sunday with the new guide.

In the mean time, try this: one of the problems was that some of the plugins that you define in ‘textareas.js’ don’t work with the new Django (or Django-tinymce). Try removing all the plugins (or use the ’simple’ theme instead of ‘advanced’, again without plugins) and see if that works. Then start adding pluggins one by one to see which ones work and which don’t.
Also it seems that in settings.py instead of adding ‘tiny_mce’ you have to add ‘tinymce’ without the underscore to INSTALLED_APPS (this might have been a mistake in my guide actually).
I also noticed that on my MacBook Pro at work my Python folder was in /Library/ instead of /sw/lib/.
Hope this helps!</description>
		<content:encoded><![CDATA[<p>Hi Carlos, in the latest version of Django some things have changed which causes this method not to work. I have actually come across this problem this week myself and worked out how you can make it work in Django 1.2.</p>
<p>I’m very busy at the moment, but I will have written an update to this post on Sunday with the new guide.</p>
<p>In the mean time, try this: one of the problems was that some of the plugins that you define in ‘textareas.js’ don’t work with the new Django (or Django-tinymce). Try removing all the plugins (or use the ’simple’ theme instead of ‘advanced’, again without plugins) and see if that works. Then start adding pluggins one by one to see which ones work and which don’t.<br />
Also it seems that in settings.py instead of adding ‘tiny_mce’ you have to add ‘tinymce’ without the underscore to INSTALLED_APPS (this might have been a mistake in my guide actually).<br />
I also noticed that on my MacBook Pro at work my Python folder was in /Library/ instead of /sw/lib/.<br />
Hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TinyMCE in Django by Heleen</title>
		<link>http://www.venividiscripsi.com/2009/10/29/tinymce-in-django/comment-page-1/#comment-95</link>
		<dc:creator>Heleen</dc:creator>
		<pubDate>Tue, 27 Jul 2010 17:35:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.venividiscripsi.com/?p=93#comment-95</guid>
		<description>Hi Wendy, 
If you mean how to use the safe filter in your templates then it&#039;s pretty easy. Just do &lt;code&gt;{{ yourtextareafieldname&#124;safe }}&lt;/code&gt; in your template. Note that there shouldn&#039;t be any spaces between the field name, the pipe and the safe tag. For more information look here &lt;a href=&quot;http://docs.djangoproject.com/en/1.2/ref/templates/builtins/#safe&quot; rel=&quot;nofollow&quot;&gt;http://docs.djangoproject.com/en/1.2/ref/templates/builtins/#safe&lt;/a&gt; or here &lt;a href=&quot;http://djangobook.com/en/2.0/chapter09/&quot; rel=&quot;nofollow&quot;&gt;http://djangobook.com/en/2.0/chapter09/&lt;/a&gt;: section &#039;Automatic HTML Escaping&#039;.
Good luck!</description>
		<content:encoded><![CDATA[<p>Hi Wendy,<br />
If you mean how to use the safe filter in your templates then it&#8217;s pretty easy. Just do <code>{{ yourtextareafieldname|safe }}</code> in your template. Note that there shouldn&#8217;t be any spaces between the field name, the pipe and the safe tag. For more information look here <a href="http://docs.djangoproject.com/en/1.2/ref/templates/builtins/#safe" rel="nofollow">http://docs.djangoproject.com/en/1.2/ref/templates/builtins/#safe</a> or here <a href="http://djangobook.com/en/2.0/chapter09/" rel="nofollow">http://djangobook.com/en/2.0/chapter09/</a>: section &#8216;Automatic HTML Escaping&#8217;.<br />
Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TinyMCE in Django by Wendy</title>
		<link>http://www.venividiscripsi.com/2009/10/29/tinymce-in-django/comment-page-1/#comment-94</link>
		<dc:creator>Wendy</dc:creator>
		<pubDate>Tue, 27 Jul 2010 00:06:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.venividiscripsi.com/?p=93#comment-94</guid>
		<description>Thanks for this.  Can you give an example of how you used the safe filter in your template?  I can&#039;t figure out how to apply it to the admin textareas.</description>
		<content:encoded><![CDATA[<p>Thanks for this.  Can you give an example of how you used the safe filter in your template?  I can&#8217;t figure out how to apply it to the admin textareas.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TinyMCE in Django by carlos</title>
		<link>http://www.venividiscripsi.com/2009/10/29/tinymce-in-django/comment-page-1/#comment-55</link>
		<dc:creator>carlos</dc:creator>
		<pubDate>Wed, 09 Jun 2010 17:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.venividiscripsi.com/?p=93#comment-55</guid>
		<description>Hi,I did as you said, but the  tinyMCE still can&#039;t work in Django admin page.BTW, my Django&#039;s version is the latest one 1.2.1 . Thanks.</description>
		<content:encoded><![CDATA[<p>Hi,I did as you said, but the  tinyMCE still can&#8217;t work in Django admin page.BTW, my Django&#8217;s version is the latest one 1.2.1 . Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
