26 December 2009, 9:37 am
A few Django 1.1 functions someone may find useful.
Project management
django.utils.version.get_svn_revision
def get_svn_revision(path=None):
“”"
Returns the SVN revision in the form SVN-XXXX,
where XXXX is the revision number.
[...]
10 September 2009, 4:35 pm
So why would you need a task queue? Let’s say you are building a Web application that is going to convert a fair amount of files (converting videos to Adobe Flash for instance). The other requirement is that a user must be notified when the video was converted and management tasks need to happen automatically: [...]