prpr-patch-rename-utf8 #20
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch ":prpr-patch-rename-utf8"
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?
Allows renames to work properly with non-ASCII characters
https://hummy.tv/forum/threads/webif-web-interface-1-4-x.7712/post-135917
There are some problems here, because the title and synopsis fields have a maximum length. The maximum is enforced in the UI by the
maxlength
attribute of the<input>
elements. It's also supposed to be enforced in thets settitle
andts setsynopsis
methods, but there are missing $s that break that. Finally thehmt
program prints a diagnostic (as usual no error code) and refuses to overflow the available length.Example:
"America's Untold Story E3 The British Are Coming"
"123456789012345678901234567890123456789012345678"
This is accepted by the UI but can't be set as a title because "\025America's Untold Story E3 The British Are Coming" is 49 characters.
So we need to reduce the UI length by 1 for title and synopsis. See #30.
Does "guidance" need the same treatment?