Issues with texts (and other content) created by users with ":" in their username #1832
Labels
No labels
backend
critical
defect
duplicate
enhancement
fixed
frontend
general
invalid
major
minor
normal
oxjs
pandora_client
python-ox
task
trivial
wontfix
worksforme
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: 0x2620/pandora#1832
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Username not properly encoded in the URL, and editing text causes server error.
one option is to not allow : in usernames, right now all backend code expects the first : to be the division between username and list/text/edit
on that note, we have one user with : on 0xdb
This is not just a URL issue, but also an issue with ids. We want the users foo and foo:bar to be able to create the text foo:bar:baz, and we want the users foo:bar and foo%3Abar to coexist. ('%' as such works in usernames, i.e. gets encoded in the URL.)
In the spirit of _ becomes %09 = tab, : (in usernames in item ids) could become %0B = vertical tab.