From the daily archives:

Monday, April 30, 2007

Handy Shopper

April 30, 2007

I live on my palm Treo. I realized that the one non Palm application that I use the most is — Handy Shopper. A freeware shopping list manager. It is a little quirky. But it does the job. It is the perfect app for a PDA. Go try it out.

Read the full article →

Custom Validation in Django newforms library

April 30, 2007

This is how you add your own additional validation logic to a form in the newforms library:
Create a clean_XXXX method in your forms class. This will be called by the forms validation logic. Subsitute XXXX with the field name. Inside this method you will have access to all forms data clean’ed so far, including the [...]

Read the full article →