#1971 User's gravatar not showing on code viewer [18739]

unreleased
invalid
SCM
nobody
2015-03-31
2011-04-19
Chris Tsai
No

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.

Discussion

  • Mark Ramm - 2011-08-19

    Check to see if the e-mail address in the git commit matches the server.

     
  • Dave Brondsema

    Dave Brondsema - 2011-08-19
    • size: --> 1
     
  • John Hoffman - 2011-08-24
    • status: open --> in-progress
    • assigned_to: John Hoffmann ☠
    • component: General --> SCM
     
  • John Hoffman - 2011-08-24
    • status: in-progress --> invalid
     
  • John Hoffman - 2011-08-24

    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):

    [ui]
    username = Firstname Lastname <firstname.lastname@example.net>
    

    We're then able to match the email in your commit against your user account, and create the appropriate link.

     

Log in to post a comment.