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. Gravatar Images by jtauber 3 years, 8 months ago
  2. Recaptcha with Django Comments by nikolaj 4 years, 2 months ago
  3. Full Featured Gravatar Tag by ashcrow 3 years, 1 month ago
  4. AntiSpamModelForm by zenx 2 years, 1 month ago
  5. AntiSpamForm by zenx 1 year, 11 months ago

Comments

(Forgotten your password?)