Gravatar support for Django comments

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import urllib, hashlib
from django import template

register = template.Library()

@register.simple_tag
def gravatar(email, size=48):
    """
    Simply gets the Gravatar for the commenter. There is no rating or
    custom "not found" icon yet. Used with the Django comments.
    
    If no size is given, the default is 48 pixels by 48 pixels.
    
    Template Syntax::
    
        {% gravatar comment.user_email [size] %}
        
    Example usage::
        
        {% gravatar comment.user_email 48 %}
    
    """
    
    url = "http://www.gravatar.com/avatar.php?"
    url += urllib.urlencode({
        'gravatar_id': hashlib.md5(email).hexdigest(), 
        'size': str(size)
    })
    
    return """<img src="%s" width="%s" height="%s" alt="gravatar" class="gravatar" border="0" />""" % (url, size, size)

More like this

  1. Recaptcha with Django Comments by nikolaj 4 years, 6 months ago
  2. AntiSpamModelForm by zenx 2 years, 4 months ago
  3. AntiSpamForm by zenx 2 years, 3 months ago
  4. Prevent Django newcomments spam with Akismet (reloaded) by sciyoshi 2 years, 10 months ago
  5. Django 1.2 template tag {% IF %} with {% ELIF %} support by danilchenko 1 year, 3 months ago

Comments

(Forgotten your password?)