https://sourceforge.net/apps/trac/sourceforge/ticket/18739
User dynup's gravatar image isn't showing on code viewer: https://sourceforge.net/p/wiibafu/code/
According to gravatar's check tool, the email address for the users account, as well as both his mail aliases (ie., users.sourceforge.net and users.sf.net) are set up with Gravatar.
Check to see if the e-mail address in the git commit matches the server.
If you do a "hg commit -m 'My changes' -u 'jwh'", it stores:
"author" : "jwh", "author_email" : "jwh"
If you do "hg commit -m 'My changes' -u 'jwh jwh@geek.net'", we record it as:
"author" : "jwh", "author_email" : "jwh@geek.net"
"author_email" is the field used to display the gravatar. If you wish to have your gravatar icon appear in the code browser, edit your ~/.hgrc file as follows (from http://www.selenic.com/mercurial/hgrc.5.html):
We're then able to match the email in your commit against your user account, and create the appropriate link.