# HG changeset patch # User Mads Kiilerich # Date 2019-12-07 04:20:58 # Node ID dfd528520236f85d6c88af34b605ba581a3ab18f # Parent b84f495d82ce9ea0807813efaf10b331d5d8c58e repo: don't just report user name and email in one field - separate things properly In the repo RSS feed, report author as name@example.com (User Name) instead of using User Name <name@example.com> And in the ATOM feed with name and email separate: User Name name@example.com Instead of User Name <name@example.com> diff --git a/kallithea/controllers/feed.py b/kallithea/controllers/feed.py --- a/kallithea/controllers/feed.py +++ b/kallithea/controllers/feed.py @@ -120,7 +120,8 @@ class FeedController(BaseRepoController) feed.add_item(title=self._get_title(cs), link=h.canonical_url('changeset_home', repo_name=repo_name, revision=cs.raw_id), - author_name=cs.author, + author_email=cs.author_email, + author_name=cs.author_name, description=''.join(self.__get_desc(cs)), pubdate=cs.date, )