[Webkit-unassigned] [Bug 135502] [GTK] generate-gtkdoc crashes when generating HTML due to encoding issues

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Aug 1 04:15:31 PDT 2014


https://bugs.webkit.org/show_bug.cgi?id=135502





--- Comment #1 from Carlos Garcia Campos <cgarcia at igalia.com>  2014-08-01 04:15:44 PST ---
It seems it's trying to convert ascii text to utf8, but the text is not ascii, but utf8 already. This line is causing the problem:

html/WebKitContextMenuItem.html:200: warning: no link for: 'GtkAction-activate' -> (<span class="type">“activate”</span>).

Because of the quotation marks in “activate”. The line crashing is:

sys.stdout.write(stdout.encode("utf-8"))

and it works if we just remove the encode

sys.stdout.write(stdout)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list