<?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: dojo+django = dojango (just released)</title>
	<atom:link href="http://wolfram.kriesing.de/blog/index.php/2008/dojodjango-dojango-just-released/feed" rel="self" type="application/rss+xml" />
	<link>http://wolfram.kriesing.de/blog/index.php/2008/dojodjango-dojango-just-released</link>
	<description>all the other blogs have such cool names, I don't know one ...</description>
	<pubDate>Fri, 10 Sep 2010 07:45:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Wolfram</title>
		<link>http://wolfram.kriesing.de/blog/index.php/2008/dojodjango-dojango-just-released/comment-page-1#comment-373869</link>
		<dc:creator>Wolfram</dc:creator>
		<pubDate>Mon, 06 Apr 2009 19:10:29 +0000</pubDate>
		<guid isPermaLink="false">http://wolfram.kriesing.de/blog/?p=236#comment-373869</guid>
		<description>Well, after what I saw just today, from Tobi you can replace all the django widgets by using the dojo version of them, and you get even more and cooler stuff, like a DateWidget, Sliders and stuff. That is just the latest SVN, since Tobi is working on it just this moment still. But it will be as simple as "from dojango import forms" and off you go, and everything can stay as it used to be. And as said before you get quite some more stuff ... I am really excited. Either join #dojango and get more details, checkout the svn or just wait till the next release, 0.4 that will be.
Wolfram</description>
		<content:encoded><![CDATA[<p>Well, after what I saw just today, from Tobi you can replace all the django widgets by using the dojo version of them, and you get even more and cooler stuff, like a DateWidget, Sliders and stuff. That is just the latest SVN, since Tobi is working on it just this moment still. But it will be as simple as &#8220;from dojango import forms&#8221; and off you go, and everything can stay as it used to be. And as said before you get quite some more stuff &#8230; I am really excited. Either join #dojango and get more details, checkout the svn or just wait till the next release, 0.4 that will be.<br />
Wolfram</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Gierus</title>
		<link>http://wolfram.kriesing.de/blog/index.php/2008/dojodjango-dojango-just-released/comment-page-1#comment-373806</link>
		<dc:creator>Alex Gierus</dc:creator>
		<pubDate>Mon, 06 Apr 2009 15:04:06 +0000</pubDate>
		<guid isPermaLink="false">http://wolfram.kriesing.de/blog/?p=236#comment-373806</guid>
		<description>Hi, Does dojango replace the defaul widgets?  What is the best way to wholesale use Django widgets throughout so that all the nice asynchronous input checking, pop-up calendars, etc get used?

I am quite far into integrating Dojo into my templates and views, is it worth it to scrap most of it and go for Dojango?</description>
		<content:encoded><![CDATA[<p>Hi, Does dojango replace the defaul widgets?  What is the best way to wholesale use Django widgets throughout so that all the nice asynchronous input checking, pop-up calendars, etc get used?</p>
<p>I am quite far into integrating Dojo into my templates and views, is it worth it to scrap most of it and go for Dojango?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john spounias</title>
		<link>http://wolfram.kriesing.de/blog/index.php/2008/dojodjango-dojango-just-released/comment-page-1#comment-365031</link>
		<dc:creator>john spounias</dc:creator>
		<pubDate>Mon, 09 Mar 2009 03:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://wolfram.kriesing.de/blog/?p=236#comment-365031</guid>
		<description>you really should add a Google ad rotator, what a waste of wonderful hits.... do you happen to know any good references or books on django or dojo? i would like to build a game with django and python but design some of the elements with the ajaxfrom dojo.</description>
		<content:encoded><![CDATA[<p>you really should add a Google ad rotator, what a waste of wonderful hits&#8230;. do you happen to know any good references or books on django or dojo? i would like to build a game with django and python but design some of the elements with the ajaxfrom dojo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wolfram</title>
		<link>http://wolfram.kriesing.de/blog/index.php/2008/dojodjango-dojango-just-released/comment-page-1#comment-364227</link>
		<dc:creator>Wolfram</dc:creator>
		<pubDate>Fri, 06 Mar 2009 10:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://wolfram.kriesing.de/blog/?p=236#comment-364227</guid>
		<description>@Skylar, great that you find it useful. As mentioned above it shall make the use of dojo a piece of cake, we hope it's getting there.
To do AJAX stuff I suggest this blog article http://blog.uxebu.com/2008/07/26/ajax-with-dojango/
Imho one of the most useful things in dojango is the @json_encode decorator, which just simply encodes the data your view returns as JSON and you have "AJAXified" this URL. I had until dojango always done that by copying this method by hand, which is just more work :-).
Have fun</description>
		<content:encoded><![CDATA[<p>@Skylar, great that you find it useful. As mentioned above it shall make the use of dojo a piece of cake, we hope it&#8217;s getting there.<br />
To do AJAX stuff I suggest this blog article <a href="http://blog.uxebu.com/2008/07/26/ajax-with-dojango/" rel="nofollow">http://blog.uxebu.com/2008/07/26/ajax-with-dojango/</a><br />
Imho one of the most useful things in dojango is the @json_encode decorator, which just simply encodes the data your view returns as JSON and you have &#8220;AJAXified&#8221; this URL. I had until dojango always done that by copying this method by hand, which is just more work :-).<br />
Have fun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skylar Saveland</title>
		<link>http://wolfram.kriesing.de/blog/index.php/2008/dojodjango-dojango-just-released/comment-page-1#comment-363715</link>
		<dc:creator>Skylar Saveland</dc:creator>
		<pubDate>Wed, 04 Mar 2009 18:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://wolfram.kriesing.de/blog/?p=236#comment-363715</guid>
		<description>Interesting, I will have to look deeper into it.  I am just starting off with dojo after building a few django sites.  I'm wondering what the advantages of using dojango are over manually putting dojo in.  This is my first window in...</description>
		<content:encoded><![CDATA[<p>Interesting, I will have to look deeper into it.  I am just starting off with dojo after building a few django sites.  I&#8217;m wondering what the advantages of using dojango are over manually putting dojo in.  This is my first window in&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
