Re: Gravatar django apps

2009-05-14 Thread Joshua Partogi
Thanks Rama. I will try this out too and I will see which one fits best. I didn't know it was this simple :-) Cheers. On May 14, 11:08 pm, Rama Vadakattu wrote: > Integrating with Gravatar is very easy > > 1) Get MD5 hash of user's email id >  import hashlib > >    def getMD5(self): >        

Re: Gravatar django apps

2009-05-14 Thread Joshua Partogi
Thanks for the redirection Erreon. I will try it out. :-) Best regards, On May 15, 5:00 am, Erreon wrote: > If you don't want to implement your own solution you could > use.http://code.google.com/p/django-gravatar/ > > On May 14, 6:30 am, Joshua Partogi wrote: > > > Dear all > > > Does anybo

Re: Gravatar django apps

2009-05-14 Thread Erreon
If you don't want to implement your own solution you could use. http://code.google.com/p/django-gravatar/ On May 14, 6:30 am, Joshua Partogi wrote: > Dear all > > Does anybody know a good django application for gravatar > (http://gravatar.com) ? > > Thank you very much for the redirection. > >

Re: Gravatar django apps

2009-05-14 Thread Rama Vadakattu
Integrating with Gravatar is very easy 1) Get MD5 hash of user's email id import hashlib def getMD5(self): m = hashlib.md5() m.update(self.user.email) return m.hexdigest() 2) and prepare image url as below http://www.gravatar.com/avatar/{{user-email-MD5- ha

Gravatar django apps

2009-05-14 Thread Joshua Partogi
Dear all Does anybody know a good django application for gravatar ( http://gravatar.com ) ? Thank you very much for the redirection. :-) -- If you can't believe in God the chances are your God is too small. Read my blog: http://joshuajava.wordpress.com/ Follow us on twitter: http://twitter.co