The link used to be like USER/NS / REPO or USER/ REPO with the first slash being part of clickable link to user page. With this page no slash is clickable and there are no spaces.
USER/NS / REPO
USER/ REPO
Alternatively there should be spaces everywhere.
Looks fine to me, I'm going to check the unit-tests before merging though
I tried running the tests, but they just seem to hang. I gave up when they did not finish after more than an hour.
There seems to be one test that is affected: tests/test_pagure_flask_ui_repo.py", line 760, in test_remove_user_self output.data)
tests/test_pagure_flask_ui_repo.py", line 760, in test_remove_user_self output.data)
It looks like u'<h2 class="repo-name m-b-0">\n <a href="/test">test</a>' should become: u'<h2 class="repo-name m-b-0">\n<a href="/test">test</a>'.
u'<h2 class="repo-name m-b-0">\n <a href="/test">test</a>'
u'<h2 class="repo-name m-b-0">\n<a href="/test">test</a>'
rebased onto 60f91b8c6f68380e6fb0d4e05927c73228d583aa
That particular test should be fixed now.
Tests passed :)
Pull-Request has been merged by pingou
The link used to be like
USER/NS / REPOorUSER/ REPOwith the first slash being part of clickable link to user page. With this page no slash is clickable and there are no spaces.Alternatively there should be spaces everywhere.