Use the new !avatar syntax in our git integration.

(imported from commit e00bc63f6fb1944ed206b3ede5431ac2b1ae1ac2)
This commit is contained in:
Tim Abbott 2013-11-20 13:10:43 -05:00
parent 83e2ba1208
commit 968c393826
3 changed files with 5 additions and 5 deletions

View File

@ -77,7 +77,7 @@ def git_commit_range(oldrev, newrev):
if hasattr(config, "format_commit_message"):
commits += config.format_commit_message(author_email, subject, commit_id)
else:
commits += '!gravatar(%s) %s\n' % (author_email, subject)
commits += '!avatar(%s) %s\n' % (author_email, subject)
return commits
def send_bot_message(oldrev, newrev, refname):

View File

@ -53,9 +53,9 @@ def commit_notice_destination(repo, branch, commit):
# common customization is to include a link to the commit in your
# graphical repository viewer, e.g.
#
# return '!gravatar(%s) [%s](https://example.com/commits/%s)\n' % (author, subject, commit_id)
# return '!avatar(%s) [%s](https://example.com/commits/%s)\n' % (author, subject, commit_id)
def format_commit_message(author, subject, commit_id):
return '!gravatar(%s) %s\n' % (author, subject)
return '!avatar(%s) %s\n' % (author, subject)
## If properly installed, the Zulip API should be in your import
## path, but if not, set a custom path below

View File

@ -34,9 +34,9 @@ def commit_notice_destination(repo, branch, commit):
# common customization is to include a link to the commit in your
# graphical repository viewer, e.g.
#
# return '!gravatar(%s) [%s](https://example.com/commits/%s)\n' % (author, subject, commit_id)
# return '!avatar(%s) [%s](https://example.com/commits/%s)\n' % (author, subject, commit_id)
def format_commit_message(author, subject, commit_id):
return '!gravatar(%s) [%s](https://git.zulip.net/eng/zulip/commit/%s)\n' % (author, subject, commit_id)
return '!avatar(%s) [%s](https://git.zulip.net/eng/zulip/commit/%s)\n' % (author, subject, commit_id)
ZULIP_API_PATH = "/home/zulip/zulip/api"
ZULIP_SITE = "https://staging.zulip.com"