-
-
Notifications
You must be signed in to change notification settings - Fork 182
Developer map: Display Trac account name, improve search #313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Developer map: Display Trac account name, improve search #313
Conversation
…ame, use trac query instead of search
|
I didn't test, but you may need --- a/scripts/geocode.py
+++ b/scripts/geocode.py
@@ -157,6 +157,7 @@ def writeToDevmap():
tracQuery += f"&or&author=~{name}"
tracQuery += f"&or&reviewer=~{name}"
tracQuery += "&max=500&col=id&col=summary&col=author&col=status&col=priority&col=milestone&col=reviewer&order=priority"
+ tracQuery = tracQuery.replace(" ", "%20")
a.setAttribute("href", tracQuery)
a.setAttribute("class", "trac")
if main_trac:as names contain spaces. |
|
Yes, that's better, thanks. |
|
(I've tested with |
kwankyu
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
|
I cannot approve this, perhaps because I don't have write access. |
|
I think this is something that we need to figure out in general for the github transition - how to configure reviews, project membership, and teams |
|
Thanks, Harald! |
Also adds an
altnamesattribute (comma-separated) and allowstracto be a comma-separated list @kwankyu