[openssl-commits] [web] master update
Rich Salz
rsalz at openssl.org
Thu Jun 1 19:48:26 UTC 2017
The branch master has been updated
via 6a44d5df718469ac910bf03e1d893cf189654e79 (commit)
from 354478fa36764b68bac3c630610efa686f67fdf0 (commit)
- Log -----------------------------------------------------------------
commit 6a44d5df718469ac910bf03e1d893cf189654e79
Author: Rich Salz <rsalz at openssl.org>
Date: Thu Jun 1 15:45:18 2017 -0400
Link to GH entry for committers
-----------------------------------------------------------------------
Summary of changes:
bin/mk-committers | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/bin/mk-committers b/bin/mk-committers
index 5e6e748..b3690ec 100755
--- a/bin/mk-committers
+++ b/bin/mk-committers
@@ -17,7 +17,12 @@ for member in json:
if name and github:
name = name.encode('ascii', 'xmlcharrefreplace')
github = github.encode('ascii', 'xmlcharrefreplace')
- members.append("<tr><td>%s</td><td>%s</td></tr>" % (name, github))
+ if github == '--':
+ url = 'https://github.com/openssl'
+ else:
+ url = 'https://github.com/' + github
+ members.append("<tr><td>%s</td><td><a href='%s'>%s</a></td></tr>" % \
+ (name, url, github))
members.sort()
for m in members:
More information about the openssl-commits
mailing list