Django Newforms Usage in Colddirt
Published on June 1, 2007
I hear many complaints and questions about newforms, but I've personally found it rather easy and logical to use. There are numerous ways for you to use do forms in Django, and most likely the best way to see them all is to read the docs. On the Colddirt ...
Read more.
Colddirt Information
Published on May 29, 2007
I wrote up the majority of this on a Friday night, so cut me a tad bit of slack:) Feel free to take a glance at the entire source. NoteColddirt's source code is run from Django SVN, check out on May 10th-ish. If you are using a newer branch, ...
Read more.
Simple Ajax with Django
Published on June 1, 2007
So, the Django developers, in my opinion, are freaking smart. Instead of bundling Django with a particular library, they have added XML and JSON serialization; us humble users can choose whatever AJAX library we want. Prototype 1.5.1 has been pretty fun to work with, so I'll kick off this ...
Read more.
Django Syndication with Colddirt
Published on June 3, 2007
Creating feeds in Django is freaking simple. I'll start with an example of just updating a feed with the newest objects (for instace, newest blog posts). Similar to the forms.py way of handling our different forms, I've created a feeds.py to handle the feeds. feeds.py <pre class="brush: python; light: true ...
Read more.