Closed instification closed 8 years ago
Using plominoContext.getItem() on a temporary document, plus signs are not correctly interpreted as spaces.
plominoContext.getItem()
e.g. if input is two words the value will be two+words
two words
two+words
This does not happen on saved documents but I can't see how it gets correctly unquoted there.
This PR uses urllib.unquote_plus on submittedValue if the value is not empty.
urllib.unquote_plus
submittedValue
User Problem
Using
plominoContext.getItem()
on a temporary document, plus signs are not correctly interpreted as spaces.e.g. if input is
two words
the value will betwo+words
This does not happen on saved documents but I can't see how it gets correctly unquoted there.
This PR uses
urllib.unquote_plus
onsubmittedValue
if the value is not empty.