You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Issue Apostrophes are replaced with HTML entity codes in messages, replies. #175 describes the problem where single quote (') and double quote (") are translated from HTML text. Output of translated text is not readable. I have tried resolving this issue at PR Fix for displaying quote based messages in conversation #182 The html.escape function of python translates quotes (single and double) when function argument quote is true. By default, argument quote of html.escape is true. It would be batter to walk through all occurrences of html.escape in the SecureDrop client code base and improve it to not translate quotes from the text.
The text was updated successfully, but these errors were encountered:
The tcp port is available as soon as the container is running, but we
actually want to wait for the HTTP server to be up, which means all the
Rust code has been built and sources generated. dockerize already
supports that, we just need to use the "http" protocol instead of "tcp".
This allows us to get rid of the manual "sleep 30" as well.
Fixes#183.
html.escape
function of python translates quotes (single and double) when function argumentquote
is true. By default, argumentquote
ofhtml.escape
is true. It would be batter to walk through all occurrences ofhtml.escape
in the SecureDrop client code base and improve it to not translate quotes from the text.The text was updated successfully, but these errors were encountered: