# HG changeset patch # User Thomas De Schampheleire # Date 1550952659 -3600 # Node ID 9e026d2426c9f68c58b5fcdb7ebe348e774e5251 # Parent 3922aa544fbbca1b0f88443b6f58f3174a99ce7b pull requests: urlify pull request lists to make issue references clickable Issue references and commit hashes are already clickable in: - pull request descriptions, - commit messages - changelog but not yet in: - pull request titles - pull request listings The previous commit handled the former case, this commit handles the latter. diff -r 3922aa544fbb -r 9e026d2426c9 kallithea/templates/pullrequests/pullrequest_data.html --- a/kallithea/templates/pullrequests/pullrequest_data.html Sat Feb 23 21:04:26 2019 +0100 +++ b/kallithea/templates/pullrequests/pullrequest_data.html Sat Feb 23 21:10:59 2019 +0100 @@ -32,7 +32,7 @@ - ${pr.title or _("(no title)")} + ${h.urlify_text(pr.title or _("(no title)"), pr.org_repo.repo_name, pr.url())} %if pr.is_closed(): ${_('Closed')} %endif