Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
12 lines
472 B
Plaintext
12 lines
472 B
Plaintext
A lightweight django-gravatar app. Includes helper methods for interacting with
|
|
gravatars outside of template code.
|
|
|
|
Use in code:
|
|
|
|
from django_gravatar.helpers import get_gravatar_url, has_gravatar, get_gravatar_profile_url, calculate_gravatar_hash
|
|
|
|
url = get_gravatar_url('alice@example.com', size=150)
|
|
gravatar_exists = has_gravatar('bob@example.com')
|
|
profile_url = get_gravatar_profile_url('alice@example.com')
|
|
email_hash = calculate_gravatar_hash('alice@example.com')
|